Skip to content

Commit 64260de

Browse files
authored
chore: bump PostgREST to devel release (#977)
* chore: bump PostgREST to devel release * chore: sanitize PostgREST download URL * chore: bump version * chore: use supabase-public-artifacts-bucket
1 parent 429d89a commit 64260de

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

ansible/manifest-playbook.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@
4040
4141
- name: PostgREST - download ubuntu binary archive (arm)
4242
get_url:
43-
url: "https://github.com/PostgREST/postgrest/releases/download/v{{ postgrest_release }}/postgrest-v{{ postgrest_release }}-ubuntu-aarch64.tar.xz"
43+
url: "https://supabase-public-artifacts-bucket.s3.amazonaws.com/postgrest/postgrest-v{{ postgrest_release }}-ubuntu-aarch64.tar.xz"
44+
# url: "https://github.com/PostgREST/postgrest/releases/download/{{ postgrest_release }}/postgrest-{{ postgrest_release }}-ubuntu-aarch64.tar.xz"
4445
dest: /tmp/postgrest-{{ postgrest_release }}-arm64.tar.xz
4546
checksum: "{{ postgrest_arm_release_checksum }}"
4647
timeout: 60

ansible/tasks/setup-postgrest.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,17 @@
1717
1818
- name: PostgREST - download ubuntu binary archive (arm)
1919
get_url:
20-
url: "https://github.com/PostgREST/postgrest/releases/download/v{{ postgrest_release }}/postgrest-v{{ postgrest_release }}-ubuntu-aarch64.tar.xz"
20+
url: "https://supabase-public-artifacts-bucket.s3.amazonaws.com/postgrest/postgrest-v{{ postgrest_release }}-ubuntu-aarch64.tar.xz"
21+
# url: "https://github.com/PostgREST/postgrest/releases/download/v{{ postgrest_release }}/postgrest-v{{ postgrest_release }}-ubuntu-aarch64.tar.xz"
2122
dest: /tmp/postgrest.tar.xz
2223
checksum: "{{ postgrest_arm_release_checksum }}"
2324
timeout: 60
2425
when: platform == "arm64"
2526

2627
- name: PostgREST - download ubuntu binary archive (x86)
2728
get_url:
28-
url: "https://github.com/PostgREST/postgrest/releases/download/v{{ postgrest_release }}/postgrest-v{{ postgrest_release }}-linux-static-x64.tar.xz"
29+
url: "https://supabase-public-artifacts-bucket.s3.amazonaws.com/postgrest/postgrest-v{{ postgrest_release }}-linux-static-x64.tar.xz"
30+
# url: "https://github.com/PostgREST/postgrest/releases/download/v{{ postgrest_release }}/postgrest-v{{ postgrest_release }}-linux-static-x64.tar.xz"
2931
dest: /tmp/postgrest.tar.xz
3032
checksum: "{{ postgrest_x86_release_checksum }}"
3133
timeout: 60

ansible/vars.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ pgbouncer_release: "1.19.0"
1111
pgbouncer_release_checksum: sha256:af0b05e97d0e1fd9ad45fe00ea6d2a934c63075f67f7e2ccef2ca59e3d8ce682
1212

1313
# to get these use `wget https://github.com/PostgREST/postgrest/releases/download/v12.0.2/postgrest-v12.0.2-ubuntu-aarch64.tar.xz -q -O- | sha1sum`
14-
postgrest_release: "12.0.2"
15-
postgrest_arm_release_checksum: sha1:a08eaa2af548d44b4c8ea61b0223fb7019f5c768
16-
postgrest_x86_release_checksum: sha1:40f65ded06b9de6567fbe2cd7a317196e22dd595
14+
postgrest_release: "12.0.2-listeners-alpha"
15+
postgrest_arm_release_checksum: sha1:a61633a4118eaefd5351ad236744fd84fbb7886e
16+
postgrest_x86_release_checksum: sha1:d57eecdf732b7fd2a38889b35f1ed484a719d003
1717

1818
gotrue_release: 2.151.0
1919
gotrue_release_checksum: sha1:5a43a9879499d85714ba34356f62f5e8063b549d

common.vars.pkr.hcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
postgres-version = "15.1.1.53"
1+
postgres-version = "15.1.1.54"

0 commit comments

Comments
 (0)