From 8ac5b18b52e017843201287bed4e19b5f386cfca Mon Sep 17 00:00:00 2001 From: Sam Rose Date: Wed, 19 Nov 2025 15:46:58 -0500 Subject: [PATCH 01/16] feature: testing the creation of auth_trgm to give auth own version of pg_trgm --- ansible/vars.yml | 6 +++--- nix/postgresql/generic.nix | 29 +++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+), 3 deletions(-) diff --git a/ansible/vars.yml b/ansible/vars.yml index a7e55c0a9..411987ea9 100644 --- a/ansible/vars.yml +++ b/ansible/vars.yml @@ -10,9 +10,9 @@ postgres_major: # Full version strings for each major version postgres_release: - postgresorioledb-17: "17.6.0.011-orioledb" - postgres17: "17.6.1.054" - postgres15: "15.14.1.054" + postgresorioledb-17: "17.6.0.010-orioledb-auth-trgm-1" + postgres17: "17.6.1.053-auth-trgm-1" + postgres15: "15.14.1.053-auth-trgm-1" # Non Postgres Extensions pgbouncer_release: 1.19.0 diff --git a/nix/postgresql/generic.nix b/nix/postgresql/generic.nix index 76904ced7..70bd986f2 100644 --- a/nix/postgresql/generic.nix +++ b/nix/postgresql/generic.nix @@ -241,6 +241,35 @@ let fi done fi + + # Create auth_trgm extension as a duplicate of pg_trgm + # auth_trgm uses the same shared library but has separate SQL files + echo "Creating auth_trgm extension files..." + + # Copy and rewrite all pg_trgm SQL files (base + upgrade paths) + for file in $out/share/postgresql/extension/pg_trgm*.sql; do + if [ -f "$file" ]; then + base=$(basename "$file") + newfile="$out/share/postgresql/extension/''${base//pg_trgm/auth_trgm}" + # Replace pg_trgm with auth_trgm in extension references + # but preserve the actual function names and module references + sed 's/-- complain if script is sourced in psql, rather than via CREATE EXTENSION/-- complain if script is sourced in psql, rather than via CREATE EXTENSION/; s/\\echo Use "CREATE EXTENSION pg_trgm"/\\echo Use "CREATE EXTENSION auth_trgm"/' "$file" > "$newfile" + fi + done + + # Create auth_trgm.control pointing to the same shared library as pg_trgm + if [ -f "$out/share/postgresql/extension/pg_trgm.control" ]; then + sed -e 's/# pg_trgm extension/# auth_trgm extension/' \ + -e 's/text similarity measurement and index searching based on trigrams/authentication text similarity measurement and index searching based on trigrams/' \ + -e 's/relocatable = true/relocatable = false/' \ + "$out/share/postgresql/extension/pg_trgm.control" > \ + "$out/share/postgresql/extension/auth_trgm.control" + + # Append schema = auth to the control file + echo "schema = auth" >> "$out/share/postgresql/extension/auth_trgm.control" + + echo "auth_trgm extension files created successfully" + fi '' + lib.optionalString jitSupport '' # Move the bitcode and libllvmjit.so library out of $lib; otherwise, every client that From 9fb87a9e8ae3c63cc1d9d4d348f839a9302782a3 Mon Sep 17 00:00:00 2001 From: Sam Rose Date: Wed, 19 Nov 2025 21:01:39 -0500 Subject: [PATCH 02/16] fix: tmp disable all but newest wrappers to test build and ami --- nix/ext/versions.json | 98 ------------------------------------------- 1 file changed, 98 deletions(-) diff --git a/nix/ext/versions.json b/nix/ext/versions.json index d1a78336a..14417ca3a 100644 --- a/nix/ext/versions.json +++ b/nix/ext/versions.json @@ -572,104 +572,6 @@ } }, "wrappers": { - "0.3.0": { - "postgresql": [ - "15" - ], - "hash": "sha256-ogpF8NJ7kW3Ut8jaKMDiKYIXnI38nfRq2mMK4rqFAIA=", - "pgrx": "0.11.3", - "rust": "1.76.0" - }, - "0.4.1": { - "postgresql": [ - "15" - ], - "hash": "sha256-AU9Y43qEMcIBVBThu+Aor1HCtfFIg+CdkzK9IxVdkzM=", - "pgrx": "0.11.3", - "rust": "1.76.0" - }, - "0.4.2": { - "postgresql": [ - "15" - ], - "hash": "sha256-ut3IQED6ANXgabiHoEUdfSrwkuuYYSpRoeWdtBvSe64=", - "pgrx": "0.11.3", - "rust": "1.76.0" - }, - "0.4.3": { - "postgresql": [ - "15" - ], - "hash": "sha256-CkoNMoh40zbQL4V49ZNYgv3JjoNWjODtTpHn+L8DdZA=", - "pgrx": "0.12.6", - "rust": "1.80.0" - }, - "0.4.4": { - "postgresql": [ - "15", - "17" - ], - "hash": "sha256-QoGFJpq8PuvMM8SS+VZd7MlNl56uFivRjs1tCtwX+oE=", - "pgrx": "0.12.6", - "rust": "1.80.0" - }, - "0.4.5": { - "postgresql": [ - "15", - "17" - ], - "hash": "sha256-IgDfVFROMCHYLZ/Iqj12MsQjPPCdRoH+3oi3Ki/iaRI=", - "pgrx": "0.12.9", - "rust": "1.81.0" - }, - "0.4.6": { - "postgresql": [ - "15", - "17" - ], - "hash": "sha256-hthb3qEXT1Kf4yPoq0udEbQzlyLtI5tug6sK4YAPFjU=", - "pgrx": "0.12.9", - "rust": "1.84.0" - }, - "0.5.0": { - "postgresql": [ - "15", - "17" - ], - "hash": "sha256-FbRTUcpEHBa5DI6dutvBeahYM0RZVAXIzIAZWIaxvn0=", - "pgrx": "0.12.9", - "rust": "1.84.0" - }, - "0.5.3": { - "postgresql": [ - "15", - "17", - "orioledb-17" - ], - "hash": "sha256-iaJriPEa0iVLpmnuUk9R3HS545Jhz7aH1clYvHEuEvs=", - "pgrx": "0.14.3", - "rust": "1.87.0" - }, - "0.5.4": { - "postgresql": [ - "15", - "17", - "orioledb-17" - ], - "hash": "sha256-W1RokXH4Vfj2FIuEzGEP5SzzWsv2Pbzfa816nXKnSoc=", - "pgrx": "0.14.3", - "rust": "1.87.0" - }, - "0.5.5": { - "postgresql": [ - "15", - "17", - "orioledb-17" - ], - "hash": "sha256-tWa1XewJbbqarwWkJPfvCIev7Fn0hLJRzYiz0vuebyA=", - "pgrx": "0.16.0", - "rust": "1.87.0" - }, "0.5.6": { "postgresql": [ "15", From f597fe4aba76a6db5138fa0859663ef3455f59ed Mon Sep 17 00:00:00 2001 From: Sam Rose Date: Thu, 20 Nov 2025 04:35:14 -0500 Subject: [PATCH 03/16] fix: drop some versions tmp to build --- nix/ext/versions.json | 121 ------------------------------------------ 1 file changed, 121 deletions(-) diff --git a/nix/ext/versions.json b/nix/ext/versions.json index 14417ca3a..24444113f 100644 --- a/nix/ext/versions.json +++ b/nix/ext/versions.json @@ -118,127 +118,6 @@ } }, "pg_graphql": { - "1.0.2": { - "postgresql": [ - "15" - ], - "hash": "sha256-HnEyijEIkKbJFQjWF1sa5h2qqGzq/aW14454zPbo6wc=", - "pgrx": "0.6.1", - "rust": "1.82.0" - }, - "1.1.0": { - "postgresql": [ - "15" - ], - "hash": "sha256-Vdi9qBjg14/SpZ1TuOvKS0gJjkLmviCzoBLnPOds0pw=", - "pgrx": "0.6.1", - "rust": "1.82.0" - }, - "1.2.0": { - "postgresql": [ - "15" - ], - "hash": "sha256-QnNwKasSvC7o5pHDC/NlqJPvWirKwMpwUmfsLJXDTsg=", - "pgrx": "0.7.1", - "rust": "1.82.0" - }, - "1.2.2": { - "postgresql": [ - "15" - ], - "hash": "sha256-SKbUDasdhz/L5UDyMH4gXmFfHHhGx81H90gfIclGwjU=", - "pgrx": "0.9.5", - "rust": "1.70.0" - }, - "1.2.3": { - "postgresql": [ - "15" - ], - "hash": "sha256-876bRLAUstBcCnhDvO+MllAC1VM//LLW1W6h028zr/8=", - "pgrx": "0.9.7", - "rust": "1.70.0" - }, - "1.4.1": { - "postgresql": [ - "15" - ], - "hash": "sha256-onyVIM5/l/cpYeAa7ya6h7bmRfqG1dPjc67oGGkgsOs=", - "pgrx": "0.10.2", - "rust": "1.70.0" - }, - "1.4.2": { - "postgresql": [ - "15" - ], - "hash": "sha256-/JweVmfcWqDtFeP3tBl/g6hlqAqbwPHpcHdX9HeqZuU=", - "pgrx": "0.10.2", - "rust": "1.70.0" - }, - "1.4.4": { - "postgresql": [ - "15" - ], - "hash": "sha256-Kxo4o8+hfSTOjvhYyGF2BpksWfW/AMCCH4qom4AGw18=", - "pgrx": "0.11.2", - "rust": "1.70.0" - }, - "1.5.0": { - "postgresql": [ - "15" - ], - "hash": "sha256-28ANRZyF22qF2YAxNAAkPfGOM3+xiO6IHdXsTp0CTQE=", - "pgrx": "0.11.2", - "rust": "1.85.1" - }, - "1.5.1": { - "postgresql": [ - "15" - ], - "hash": "sha256-cAiD2iSFmZwC+Zy0x+MABseWCxXRtRY74Dj0oBKet+o=", - "pgrx": "0.11.2", - "rust": "1.85.1" - }, - "1.5.1-mergeless": { - "postgresql": [ - "15" - ], - "hash": "sha256-X4YR2ishxWCQDMwxHKuGGjlpbpRrUBoHeeLfM/UIHWc=", - "pgrx": "0.11.2", - "rust": "1.85.1" - }, - "1.5.4": { - "postgresql": [ - "15" - ], - "hash": "sha256-419RVol44akUFZ/0B97VjAXCUrWcKFDAFuVjvJnbkP4=", - "pgrx": "0.11.3", - "rust": "1.85.1" - }, - "1.5.6": { - "postgresql": [ - "15" - ], - "hash": "sha256-v/40TR/1bplbQuD3Hv3gE7oh6cfn9fA6U5s+FTAwxtA=", - "pgrx": "0.11.3", - "rust": "1.85.1" - }, - "1.5.7": { - "postgresql": [ - "15" - ], - "hash": "sha256-Q6XfcTKVOjo5pGy8QACc4QCHolKxEGU8e0TTC6Zg8go=", - "pgrx": "0.11.3", - "rust": "1.85.1" - }, - "1.5.9": { - "postgresql": [ - "15", - "17" - ], - "hash": "sha256-YpLN43FtLhp2cb7cyM+4gEx8GTwsRiKTfxaMq0b8hk0=", - "pgrx": "0.12.6", - "rust": "1.81.0" - }, "1.5.11": { "postgresql": [ "15", From 36a9843050dc401df887062fed19a139bdf73c41 Mon Sep 17 00:00:00 2001 From: Sam Rose Date: Thu, 20 Nov 2025 04:57:14 -0500 Subject: [PATCH 04/16] fix: tmp update test to build (will revert before merge) --- nix/tests/expected/z_orioledb-17_ext_interface.out | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nix/tests/expected/z_orioledb-17_ext_interface.out b/nix/tests/expected/z_orioledb-17_ext_interface.out index 57f68aa1c..43ab18c3f 100644 --- a/nix/tests/expected/z_orioledb-17_ext_interface.out +++ b/nix/tests/expected/z_orioledb-17_ext_interface.out @@ -22,12 +22,13 @@ order by name asc; name ------------------------ + auth_trgm pg_cron pgjwt postgis_tiger_geocoder tsm_system_time wal2json -(5 rows) +(6 rows) /* From 612fd3bcd0889387ccd2e5fbbeb7fa81dc07965c Mon Sep 17 00:00:00 2001 From: Sam Rose Date: Thu, 20 Nov 2025 05:17:07 -0500 Subject: [PATCH 05/16] fix: pg17 tests tmp fix --- nix/tests/expected/z_17_ext_interface.out | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nix/tests/expected/z_17_ext_interface.out b/nix/tests/expected/z_17_ext_interface.out index 57f68aa1c..43ab18c3f 100644 --- a/nix/tests/expected/z_17_ext_interface.out +++ b/nix/tests/expected/z_17_ext_interface.out @@ -22,12 +22,13 @@ order by name asc; name ------------------------ + auth_trgm pg_cron pgjwt postgis_tiger_geocoder tsm_system_time wal2json -(5 rows) +(6 rows) /* From 10986d27200ffaf5e6068f1c2eb994a2dd0c1bf6 Mon Sep 17 00:00:00 2001 From: Sam Rose Date: Thu, 20 Nov 2025 05:20:49 -0500 Subject: [PATCH 06/16] fix: tmp update tests --- nix/tests/expected/z_15_ext_interface.out | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nix/tests/expected/z_15_ext_interface.out b/nix/tests/expected/z_15_ext_interface.out index f2b5672aa..f6998999f 100644 --- a/nix/tests/expected/z_15_ext_interface.out +++ b/nix/tests/expected/z_15_ext_interface.out @@ -29,11 +29,12 @@ order by name asc; name ----------------- + auth_trgm pg_cron pgjwt tsm_system_time wal2json -(4 rows) +(5 rows) /* From ef3e9317b1bb9b47e1560d660c2b45eb9fa76e7f Mon Sep 17 00:00:00 2001 From: Sam Rose Date: Thu, 20 Nov 2025 09:08:51 -0500 Subject: [PATCH 07/16] chore: update suffix and add rc for auth to test --- ansible/vars.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ansible/vars.yml b/ansible/vars.yml index 411987ea9..401fb27d7 100644 --- a/ansible/vars.yml +++ b/ansible/vars.yml @@ -10,9 +10,9 @@ postgres_major: # Full version strings for each major version postgres_release: - postgresorioledb-17: "17.6.0.010-orioledb-auth-trgm-1" - postgres17: "17.6.1.053-auth-trgm-1" - postgres15: "15.14.1.053-auth-trgm-1" + postgresorioledb-17: "17.6.0.010-orioledb-auth-trgm-2" + postgres17: "17.6.1.053-auth-trgm-2" + postgres15: "15.14.1.053-auth-trgm-2" # Non Postgres Extensions pgbouncer_release: 1.19.0 @@ -25,8 +25,8 @@ postgrest_release: 13.0.5 postgrest_arm_release_checksum: sha256:7b4eafdaf76bc43b57f603109d460a838f89f949adccd02f452ca339f9a0a0d4 postgrest_x86_release_checksum: sha256:05be2bd48abee6c1691fc7c5d005023466c6989e41a4fc7d1302b8212adb88b5 -gotrue_release: 2.182.1 -gotrue_release_checksum: sha1:38a12109ad62df32460d88e4c7b2a475b88e7865 +gotrue_release: 2.183.0-rc.10 +gotrue_release_checksum: sha1:0f98282b18d49b05a5101b8bd97353efd51d6244 aws_cli_release: 2.23.11 From 4dfc1c7264fe8f9b25eec6d34028ec03141f224b Mon Sep 17 00:00:00 2001 From: Sam Rose Date: Thu, 20 Nov 2025 09:46:53 -0500 Subject: [PATCH 08/16] fix: need an rc in front of string --- ansible/vars.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/vars.yml b/ansible/vars.yml index 401fb27d7..bf0b2a902 100644 --- a/ansible/vars.yml +++ b/ansible/vars.yml @@ -25,7 +25,7 @@ postgrest_release: 13.0.5 postgrest_arm_release_checksum: sha256:7b4eafdaf76bc43b57f603109d460a838f89f949adccd02f452ca339f9a0a0d4 postgrest_x86_release_checksum: sha256:05be2bd48abee6c1691fc7c5d005023466c6989e41a4fc7d1302b8212adb88b5 -gotrue_release: 2.183.0-rc.10 +gotrue_release: rc2.183.0-rc.10 gotrue_release_checksum: sha1:0f98282b18d49b05a5101b8bd97353efd51d6244 aws_cli_release: 2.23.11 From ac1b000717ba412d232e296baf3013a4659a8df2 Mon Sep 17 00:00:00 2001 From: Sam Rose Date: Thu, 20 Nov 2025 12:09:06 -0500 Subject: [PATCH 09/16] chore: adjust url due to rc release --- ansible/tasks/setup-gotrue.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ansible/tasks/setup-gotrue.yml b/ansible/tasks/setup-gotrue.yml index 70bbbf85f..f2dad7915 100644 --- a/ansible/tasks/setup-gotrue.yml +++ b/ansible/tasks/setup-gotrue.yml @@ -17,12 +17,12 @@ {%- elif platform == 'arm64' -%} arm64 {%- endif -%} - +#TODO restore this temp change on download url - name: gotrue - download commit archive ansible.builtin.get_url: checksum: "{{ gotrue_release_checksum }}" dest: '/tmp/gotrue.tar.gz' - url: "https://github.com/supabase/gotrue/releases/download/v{{ gotrue_release }}/auth-v{{ gotrue_release }}-{{ arch }}.tar.gz" + url: "https://github.com/supabase/gotrue/releases/download/{{ gotrue_release }}/auth-v{{ gotrue_release }}-{{ arch }}.tar.gz" - name: gotrue - create /opt/gotrue and /etc/auth.d ansible.builtin.file: From 39bfeaeef48859f6d9a89ed37b5bb3384060842c Mon Sep 17 00:00:00 2001 From: Sam Rose Date: Thu, 20 Nov 2025 12:10:18 -0500 Subject: [PATCH 10/16] chore: bump suffix --- ansible/vars.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ansible/vars.yml b/ansible/vars.yml index bf0b2a902..305c886f9 100644 --- a/ansible/vars.yml +++ b/ansible/vars.yml @@ -10,9 +10,9 @@ postgres_major: # Full version strings for each major version postgres_release: - postgresorioledb-17: "17.6.0.010-orioledb-auth-trgm-2" - postgres17: "17.6.1.053-auth-trgm-2" - postgres15: "15.14.1.053-auth-trgm-2" + postgresorioledb-17: "17.6.0.010-orioledb-auth-trgm-3" + postgres17: "17.6.1.053-auth-trgm-3" + postgres15: "15.14.1.053-auth-trgm-3" # Non Postgres Extensions pgbouncer_release: 1.19.0 From 991d2d51c771e98fd7ca419b851831e565245a1c Mon Sep 17 00:00:00 2001 From: Sam Rose Date: Thu, 20 Nov 2025 12:41:15 -0500 Subject: [PATCH 11/16] chore: direct download link --- ansible/tasks/setup-gotrue.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/tasks/setup-gotrue.yml b/ansible/tasks/setup-gotrue.yml index f2dad7915..fc599fe78 100644 --- a/ansible/tasks/setup-gotrue.yml +++ b/ansible/tasks/setup-gotrue.yml @@ -22,7 +22,7 @@ ansible.builtin.get_url: checksum: "{{ gotrue_release_checksum }}" dest: '/tmp/gotrue.tar.gz' - url: "https://github.com/supabase/gotrue/releases/download/{{ gotrue_release }}/auth-v{{ gotrue_release }}-{{ arch }}.tar.gz" + url: "https://github.com/supabase/auth/releases/download/rc2.183.0-rc.10/auth-v2.183.0-rc.10-arm64.tar.gz" - name: gotrue - create /opt/gotrue and /etc/auth.d ansible.builtin.file: From 8332a9f55de46b2320e2a1e93a1bae770718437d Mon Sep 17 00:00:00 2001 From: Sam Rose Date: Thu, 20 Nov 2025 15:53:42 -0500 Subject: [PATCH 12/16] chore: bump suffix --- ansible/vars.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ansible/vars.yml b/ansible/vars.yml index 305c886f9..ea323fce9 100644 --- a/ansible/vars.yml +++ b/ansible/vars.yml @@ -10,9 +10,9 @@ postgres_major: # Full version strings for each major version postgres_release: - postgresorioledb-17: "17.6.0.010-orioledb-auth-trgm-3" - postgres17: "17.6.1.053-auth-trgm-3" - postgres15: "15.14.1.053-auth-trgm-3" + postgresorioledb-17: "17.6.0.010-orioledb-auth-trgm-4" + postgres17: "17.6.1.053-auth-trgm-4" + postgres15: "15.14.1.053-auth-trgm-4" # Non Postgres Extensions pgbouncer_release: 1.19.0 From aeee76d075db1f3a5c6ccef9a47c6a0a40bc6e80 Mon Sep 17 00:00:00 2001 From: Sam Rose Date: Thu, 20 Nov 2025 18:04:46 -0500 Subject: [PATCH 13/16] fix: also rewrite manifest playbook tmp --- ansible/manifest-playbook.yml | 2 +- ansible/vars.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ansible/manifest-playbook.yml b/ansible/manifest-playbook.yml index ce02c805c..d54510064 100644 --- a/ansible/manifest-playbook.yml +++ b/ansible/manifest-playbook.yml @@ -17,7 +17,7 @@ # currently, we upload gotrue, adminapi, postgrest - name: gotrue - download commit archive get_url: - url: "https://github.com/supabase/gotrue/releases/download/v{{ gotrue_release }}/auth-v{{ gotrue_release }}-arm64.tar.gz" + url: "https://github.com/supabase/auth/releases/download/rc2.183.0-rc.10/auth-v2.183.0-rc.10-arm64.tar.gz" dest: /tmp/auth-v{{ gotrue_release }}-arm64.tar.gz checksum: "{{ gotrue_release_checksum }}" timeout: 60 diff --git a/ansible/vars.yml b/ansible/vars.yml index ea323fce9..fb36344b2 100644 --- a/ansible/vars.yml +++ b/ansible/vars.yml @@ -10,9 +10,9 @@ postgres_major: # Full version strings for each major version postgres_release: - postgresorioledb-17: "17.6.0.010-orioledb-auth-trgm-4" - postgres17: "17.6.1.053-auth-trgm-4" - postgres15: "15.14.1.053-auth-trgm-4" + postgresorioledb-17: "17.6.0.010-orioledb-auth-trgm-5" + postgres17: "17.6.1.053-auth-trgm-5" + postgres15: "15.14.1.053-auth-trgm-5" # Non Postgres Extensions pgbouncer_release: 1.19.0 From 710d6821f23839a88c1c86f964d67bfc4c8227bb Mon Sep 17 00:00:00 2001 From: Bobbie Soedirgo Date: Fri, 21 Nov 2025 22:30:28 +0800 Subject: [PATCH 14/16] feat: grant create on db postgres to supabase_auth_admin Allows supabase_auth_admin to `create extension auth_trgm` --- .../20251121141100_supabase_auth_admin_db_grants.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 migrations/db/migrations/20251121141100_supabase_auth_admin_db_grants.sql diff --git a/migrations/db/migrations/20251121141100_supabase_auth_admin_db_grants.sql b/migrations/db/migrations/20251121141100_supabase_auth_admin_db_grants.sql new file mode 100644 index 000000000..337de469a --- /dev/null +++ b/migrations/db/migrations/20251121141100_supabase_auth_admin_db_grants.sql @@ -0,0 +1,4 @@ +-- migrate:up +grant create on database postgres to supabase_auth_admin; + +-- migrate:down From 252a172a374463d55b9dcafc8699f57f32507413 Mon Sep 17 00:00:00 2001 From: Bobbie Soedirgo Date: Fri, 21 Nov 2025 22:32:29 +0800 Subject: [PATCH 15/16] tmp: bump suffix --- ansible/vars.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ansible/vars.yml b/ansible/vars.yml index fb36344b2..6dcacde0c 100644 --- a/ansible/vars.yml +++ b/ansible/vars.yml @@ -10,9 +10,9 @@ postgres_major: # Full version strings for each major version postgres_release: - postgresorioledb-17: "17.6.0.010-orioledb-auth-trgm-5" - postgres17: "17.6.1.053-auth-trgm-5" - postgres15: "15.14.1.053-auth-trgm-5" + postgresorioledb-17: "17.6.0.010-orioledb-auth-trgm-6" + postgres17: "17.6.1.053-auth-trgm-6" + postgres15: "15.14.1.053-auth-trgm-6" # Non Postgres Extensions pgbouncer_release: 1.19.0 From 6571d3014a70de7228181f4fca7b1f7b56bae0c3 Mon Sep 17 00:00:00 2001 From: Sam Rose Date: Tue, 25 Nov 2025 16:15:09 -0500 Subject: [PATCH 16/16] chore: re-intro older exts in case we need to use this PR --- nix/ext/versions.json | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/nix/ext/versions.json b/nix/ext/versions.json index 24444113f..5790b1217 100644 --- a/nix/ext/versions.json +++ b/nix/ext/versions.json @@ -451,6 +451,16 @@ } }, "wrappers": { + "0.5.5": { + "postgresql": [ + "15", + "17", + "orioledb-17" + ], + "hash": "sha256-tWa1XewJbbqarwWkJPfvCIev7Fn0hLJRzYiz0vuebyA=", + "pgrx": "0.16.0", + "rust": "1.87.0" + }, "0.5.6": { "postgresql": [ "15",