Skip to content

Commit 1013796

Browse files
authored
chore: bump releases (#1339)
* chore: bump releases * chore: somehow -- migrate:up was missing * fix: update to use current version in dbmate test * chore: missing env. * chore: cleanup
1 parent 897d9f3 commit 1013796

File tree

4 files changed

+1096
-5
lines changed

4 files changed

+1096
-5
lines changed

.github/workflows/test.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,7 @@ jobs:
6969
echo "EOF" >> $GITHUB_OUTPUT
7070
- name: verify schema.sql is committed
7171
run: |
72-
GIT_SHA=${{github.sha}}
73-
nix run github:supabase/postgres/develop#dbmate-tool -- --version ${{ env.PGMAJOR }}
72+
nix run github:supabase/postgres/${{ github.sha }}#dbmate-tool -- --version ${{ env.PGMAJOR }}
7473
if ! git diff --exit-code --quiet migrations/schema-${{ env.PGMAJOR }}.sql; then
7574
echo "Detected changes in schema.sql:"
7675
git diff migrations/schema-${{ env.PGMAJOR }}.sql

ansible/vars.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ postgres_major:
99

1010
# Full version strings for each major version
1111
postgres_release:
12-
postgresorioledb-17: "orioledb-17.0.1.000"
13-
postgres15: "15.8.1.005"
14-
postgres16: "16.3.1.011"
12+
postgresorioledb-17: "orioledb-17.0.1.001"
13+
postgres15: "15.8.1.013"
14+
postgres16: "16.3.1.019"
1515

1616
# Non Postgres Extensions
1717
pgbouncer_release: "1.19.0"

migrations/db/migrations/20241031003909_create_orioledb.sql

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
-- migrate:up
12
do $$
23
begin
34
if exists (select 1 from pg_available_extensions where name = 'orioledb') then

0 commit comments

Comments
 (0)