@pgflow/core 0.8.0 → 0.9.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/dist/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,23 @@
|
|
|
1
1
|
# @pgflow/core
|
|
2
2
|
|
|
3
|
+
## 0.9.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @pgflow/dsl@0.9.0
|
|
8
|
+
|
|
9
|
+
## 0.8.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 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+.
|
|
14
|
+
- @pgflow/dsl@0.8.1
|
|
15
|
+
|
|
3
16
|
## 0.8.0
|
|
4
17
|
|
|
5
18
|
### Minor Changes
|
|
6
19
|
|
|
7
|
-
- 7380237: BREAKING CHANGE: pgflow 0.8.0 requires pgmq 1.5.0+, PostgreSQL 17, and Supabase CLI 2.
|
|
20
|
+
- 7380237: BREAKING CHANGE: pgflow 0.8.0 requires pgmq 1.5.0+, PostgreSQL 17, and Supabase CLI 2.50.3+
|
|
8
21
|
|
|
9
22
|
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
23
|
|
|
@@ -12,9 +25,9 @@
|
|
|
12
25
|
|
|
13
26
|
- pgmq 1.5.0 or higher (previously supported 1.4.x)
|
|
14
27
|
- PostgreSQL 17 (from 15)
|
|
15
|
-
- Supabase CLI 2.
|
|
28
|
+
- Supabase CLI 2.50.3 or higher (includes pgmq 1.5.0+)
|
|
16
29
|
|
|
17
|
-
**For Supabase users:** Upgrade your Supabase CLI to 2.
|
|
30
|
+
**For Supabase users:** Upgrade your Supabase CLI to 2.50.3+ which includes pgmq 1.5.0 by default.
|
|
18
31
|
|
|
19
32
|
**For self-hosted users:** Upgrade pgmq to 1.5.0+ and PostgreSQL to 17 before upgrading pgflow.
|
|
20
33
|
|
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pgflow/core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -19,8 +19,7 @@
|
|
|
19
19
|
}
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@types/node": "^22.14.1"
|
|
23
|
-
"supabase": "^2.34.3"
|
|
22
|
+
"@types/node": "^22.14.1"
|
|
24
23
|
},
|
|
25
24
|
"dependencies": {
|
|
26
25
|
"@pgflow/dsl": "workspace:*",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
-- Migration tested 2025-11-02:
|
|
2
|
-
-- Successfully verified that this migration fails on pgmq 1.4.4 (Supabase CLI < 2.
|
|
2
|
+
-- Successfully verified that this migration fails on pgmq 1.4.4 (Supabase CLI < 2.50.3)
|
|
3
3
|
-- with clear error message guiding users to upgrade pgmq to 1.5.0+
|
|
4
4
|
--
|
|
5
5
|
-- Compatibility check: Ensure pgmq.message_record has headers column (pgmq 1.5.0+)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pgflow/core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -19,12 +19,11 @@
|
|
|
19
19
|
}
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@types/node": "^22.14.1"
|
|
23
|
-
"supabase": "^2.34.3"
|
|
22
|
+
"@types/node": "^22.14.1"
|
|
24
23
|
},
|
|
25
24
|
"dependencies": {
|
|
26
25
|
"postgres": "^3.4.5",
|
|
27
|
-
"@pgflow/dsl": "0.
|
|
26
|
+
"@pgflow/dsl": "0.9.0"
|
|
28
27
|
},
|
|
29
28
|
"publishConfig": {
|
|
30
29
|
"access": "public"
|