@pgflow/core 0.7.0 → 0.7.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/dist/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @pgflow/core
2
2
 
3
+ ## 0.7.1
4
+
5
+ ### Patch Changes
6
+
7
+ - a71b371: Fix installation failures on new Supabase projects by removing pgmq version pin.
8
+
9
+ Supabase upgraded to pgmq 1.5.1 in Postgres 17.6.1.016+ (https://github.com/supabase/postgres/pull/1668), but pgflow was pinned to 1.4.4, causing "extension has no installation script" errors on fresh instances.
10
+
11
+ Only affects new projects - existing installations are unaffected and require no action.
12
+
13
+ Thanks to @kallebysantos for reporting this issue!
14
+
15
+ - @pgflow/dsl@0.7.1
16
+
3
17
  ## 0.7.0
4
18
 
5
19
  ### Minor Changes
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pgflow/core",
3
- "version": "0.7.0",
3
+ "version": "0.7.1",
4
4
  "license": "AGPL-3.0",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -3,7 +3,7 @@ CREATE SCHEMA "pgflow";
3
3
  -- Add new schema named "pgmq"
4
4
  CREATE SCHEMA IF NOT EXISTS "pgmq";
5
5
  -- Create extension "pgmq"
6
- CREATE EXTENSION IF NOT EXISTS "pgmq" WITH SCHEMA "pgmq" VERSION "1.4.4";
6
+ CREATE EXTENSION IF NOT EXISTS "pgmq" WITH SCHEMA "pgmq";
7
7
  -- Create "read_with_poll" function
8
8
  CREATE FUNCTION "pgflow"."read_with_poll" ("queue_name" text, "vt" integer, "qty" integer, "max_poll_seconds" integer DEFAULT 5, "poll_interval_ms" integer DEFAULT 100, "conditional" jsonb DEFAULT '{}') RETURNS SETOF pgmq.message_record LANGUAGE plpgsql AS $$
9
9
  DECLARE
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pgflow/core",
3
- "version": "0.7.0",
3
+ "version": "0.7.1",
4
4
  "license": "AGPL-3.0",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -24,7 +24,7 @@
24
24
  },
25
25
  "dependencies": {
26
26
  "postgres": "^3.4.5",
27
- "@pgflow/dsl": "0.7.0"
27
+ "@pgflow/dsl": "0.7.1"
28
28
  },
29
29
  "publishConfig": {
30
30
  "access": "public"