@pgflow/client 0.8.0 → 0.8.1
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 +12 -3
- package/dist/package.json +2 -2
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,19 @@
|
|
|
1
1
|
# @pgflow/client
|
|
2
2
|
|
|
3
|
+
## 0.8.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- f1d3c32: Fix incorrect Supabase CLI version requirement from 2.34.3 to 2.50.3. CLI 2.50.3 is the first version to include pgmq 1.5.0+, which is required for pgflow 0.8.0+.
|
|
8
|
+
- Updated dependencies [f1d3c32]
|
|
9
|
+
- @pgflow/core@0.8.1
|
|
10
|
+
- @pgflow/dsl@0.8.1
|
|
11
|
+
|
|
3
12
|
## 0.8.0
|
|
4
13
|
|
|
5
14
|
### Minor Changes
|
|
6
15
|
|
|
7
|
-
- 7380237: BREAKING CHANGE: pgflow 0.8.0 requires pgmq 1.5.0+, PostgreSQL 17, and Supabase CLI 2.
|
|
16
|
+
- 7380237: BREAKING CHANGE: pgflow 0.8.0 requires pgmq 1.5.0+, PostgreSQL 17, and Supabase CLI 2.50.3+
|
|
8
17
|
|
|
9
18
|
This version modernizes infrastructure dependencies and will NOT work with pgmq 1.4.x or earlier. The migration includes a compatibility check that aborts with a clear error message if requirements are not met.
|
|
10
19
|
|
|
@@ -12,9 +21,9 @@
|
|
|
12
21
|
|
|
13
22
|
- pgmq 1.5.0 or higher (previously supported 1.4.x)
|
|
14
23
|
- PostgreSQL 17 (from 15)
|
|
15
|
-
- Supabase CLI 2.
|
|
24
|
+
- Supabase CLI 2.50.3 or higher (includes pgmq 1.5.0+)
|
|
16
25
|
|
|
17
|
-
**For Supabase users:** Upgrade your Supabase CLI to 2.
|
|
26
|
+
**For Supabase users:** Upgrade your Supabase CLI to 2.50.3+ which includes pgmq 1.5.0 by default.
|
|
18
27
|
|
|
19
28
|
**For self-hosted users:** Upgrade pgmq to 1.5.0+ and PostgreSQL to 17 before upgrading pgflow.
|
|
20
29
|
|
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pgflow/client",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.1",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"@pgflow/dsl": "workspace:*",
|
|
45
45
|
"@types/uuid": "^10.0.0",
|
|
46
46
|
"postgres": "^3.4.5",
|
|
47
|
-
"supabase": "^2.
|
|
47
|
+
"supabase": "^2.50.3",
|
|
48
48
|
"terser": "^5.43.0",
|
|
49
49
|
"vite-plugin-dts": "~3.8.1",
|
|
50
50
|
"vitest": "1.3.1"
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pgflow/client",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.1",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@supabase/supabase-js": "^2.49.4",
|
|
8
8
|
"nanoevents": "^7.0.1",
|
|
9
9
|
"uuid": "^9.0.0",
|
|
10
|
-
"@pgflow/
|
|
11
|
-
"@pgflow/
|
|
10
|
+
"@pgflow/core": "0.8.1",
|
|
11
|
+
"@pgflow/dsl": "0.8.1"
|
|
12
12
|
},
|
|
13
13
|
"main": "./dist/index.js",
|
|
14
14
|
"module": "./dist/index.js",
|
|
@@ -40,11 +40,11 @@
|
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@types/uuid": "^10.0.0",
|
|
42
42
|
"postgres": "^3.4.5",
|
|
43
|
-
"supabase": "^2.
|
|
43
|
+
"supabase": "^2.50.3",
|
|
44
44
|
"terser": "^5.43.0",
|
|
45
45
|
"vite-plugin-dts": "~3.8.1",
|
|
46
46
|
"vitest": "1.3.1",
|
|
47
|
-
"@pgflow/dsl": "0.8.
|
|
47
|
+
"@pgflow/dsl": "0.8.1"
|
|
48
48
|
},
|
|
49
49
|
"scripts": {
|
|
50
50
|
"verify-exports": "node scripts/verify-exports.js"
|