Skip to content

Commit d6d08c9

Browse files
thomasballingerConvex, Inc.
authored andcommitted
npm release version 1.30.0 (#43711)
GitOrigin-RevId: 8124a62fce84423f98d423ac6fe05680db6aa684
1 parent bf05692 commit d6d08c9

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed

CHANGELOG.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,22 @@
11
# Changelog
22

3-
## Unreleased
3+
## 1.30.0
44

55
- The `--preview-create` parameter for `npx convex deploy` will now error if
66
used with a deploy key that is not a preview deploy key. Previously, the flag
77
would be ignored in this situation, and `npx convex deploy` would deploy to
88
the production deployment. If you were depending on this behavior, make sure
99
to remove the `--preview-create` flag when deploying to production.
1010

11-
## 1.29.2
11+
## 1.29.3
12+
13+
- Revert ApiFromModules type changes introduced in 1.29.0 which sometimes caused
14+
type mismatches due to `FunctionReference` sometimes missing properties.
15+
16+
- Don't warn when `"$schema"` is present in convex.json.
17+
18+
- Replace ProxyAgent with EnvHttpProxyAgent in the CLI so the `NO_PROXY`
19+
environment variable is respected.
1220

1321
## 1.29.2
1422

@@ -17,6 +25,11 @@
1725
avoiding situations where an index is accidentally deleted and backfilling it
1826
takes a long time.
1927

28+
## 1.29.1
29+
30+
- Support for special error and no-op values of `CONVEX_DEPLOY_KEY` environment
31+
variable used by the Convex Vercel integration.
32+
2033
## 1.29.0
2134

2235
- Code generation changes: modules and functions are sorted in more situations,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "convex",
33
"description": "Client for the Convex Cloud",
4-
"version": "1.29.3",
4+
"version": "1.30.0",
55
"author": "Convex, Inc. <[email protected]>",
66
"homepage": "https://convex.dev",
77
"repository": {

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const version = "1.29.3";
1+
export const version = "1.30.0";

0 commit comments

Comments
 (0)