convex 1.17.0-alpha.0 → 1.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +28 -1
- package/dist/browser.bundle.js +1 -1
- package/dist/browser.bundle.js.map +1 -1
- package/dist/cjs/bundler/index.js +2 -2
- package/dist/cjs/bundler/index.js.map +2 -2
- package/dist/cjs/cli/lib/codegen.js +24 -27
- package/dist/cjs/cli/lib/codegen.js.map +2 -2
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs-types/bundler/index.d.ts.map +1 -1
- package/dist/cjs-types/cli/lib/codegen.d.ts.map +1 -1
- package/dist/cjs-types/index.d.ts +1 -1
- package/dist/cjs-types/index.d.ts.map +1 -1
- package/dist/cli.bundle.cjs +27 -30
- package/dist/cli.bundle.cjs.map +2 -2
- package/dist/esm/bundler/index.js +2 -2
- package/dist/esm/bundler/index.js.map +2 -2
- package/dist/esm/cli/lib/codegen.js +24 -27
- package/dist/esm/cli/lib/codegen.js.map +2 -2
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm-types/bundler/index.d.ts.map +1 -1
- package/dist/esm-types/cli/lib/codegen.d.ts.map +1 -1
- package/dist/esm-types/index.d.ts +1 -1
- package/dist/esm-types/index.d.ts.map +1 -1
- package/dist/react.bundle.js +1 -1
- package/dist/react.bundle.js.map +1 -1
- package/package.json +1 -1
- package/src/bundler/index.ts +5 -2
- package/src/cli/lib/codegen.ts +24 -29
- package/src/index.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.17.0
|
|
4
|
+
|
|
5
|
+
- Disallow extra arguments to CLI commands.
|
|
6
|
+
- `--component` flags for `convex import` and `convex data`.
|
|
7
|
+
- `--run-component` flag for `convex dev --run`
|
|
8
|
+
- Remove prettier-ignore-start directives from generated code.
|
|
9
|
+
- Fix file watcher bug where a syntax error could cause a file to stop being
|
|
10
|
+
watched.
|
|
11
|
+
- Downgrade jwt-decode dependency back to ^3.1.2.
|
|
12
|
+
- Change refresh token renewal timing
|
|
13
|
+
|
|
14
|
+
## 1.16.6
|
|
15
|
+
|
|
16
|
+
- Detect TanStack Start projects and use environment variable name
|
|
17
|
+
`VITE_CONVEX_URL`.
|
|
18
|
+
|
|
19
|
+
## 1.16.5
|
|
20
|
+
|
|
21
|
+
packageing changes logging changes
|
|
22
|
+
|
|
23
|
+
- restore --run flag of `convex import`, `convex data`,
|
|
24
|
+
|
|
25
|
+
## 1.16.4
|
|
26
|
+
|
|
27
|
+
- Don't typecheck dependent components by default, add --typecheckComponents
|
|
28
|
+
flag to typecheck.
|
|
29
|
+
|
|
3
30
|
## 1.16.3
|
|
4
31
|
|
|
5
32
|
- Fix some library typecheck errors introduced in 1.16.1. Workaround for
|
|
@@ -8,7 +35,7 @@
|
|
|
8
35
|
|
|
9
36
|
## 1.16.2
|
|
10
37
|
|
|
11
|
-
- Change some language around
|
|
38
|
+
- Change some language around components beta.
|
|
12
39
|
|
|
13
40
|
## 1.16.1
|
|
14
41
|
|