8000 Supabase Postgres 14.1.0 by dragarcia · Pull Request #98 · supabase/postgres · GitHub
[go: up one dir, main page]

Skip to content

Supabase Postgres 14.1.0 #98

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 33 commits into from
Dec 2, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
168be1b
chore: bump postgres and pgbouncer
dragarcia Aug 17, 2021
e1611f6
chore: #65 sha-scram-256 encryption
dragarcia Aug 17, 2021
1170658
Merge branch 'develop' of github.com:supabase/postgres into feature/1…
dragarcia Nov 10, 2021
9461f36
chore: Bump to Postgres 14.0
dragarcia Nov 10, 2021
d8fae0f
chore: bump up existing extensions
dragarcia Nov 10, 2021
931e55b
Use PG 14 version of postgresql.conf
dragarcia Nov 15, 2021
6e04163
move up running of SQL files
dragarcia Nov 18, 2021
9bc3cd6
new extensions:
dragarcia Nov 18, 2021
25c93de
Cleanup build dependencies immediately after installation
dragarcia Nov 18, 2021
bd8258b
Remove hardcoded values for Postgres major
dragarcia Nov 18, 2021
8794e9f
Update variables
dragarcia Nov 18, 2021
a21dd05
Update wal-g installation process
dragarcia Nov 18, 2021
ec84a58
add build dependencies for supautils
dragarcia Nov 18, 2021
43a1a11
changes to pgbouncer config
dragarcia Nov 18, 2021
adcbfb6
Revert "Cleanup build dependencies immediately after installation"
dragarcia Nov 19, 2021
9b82e06
Minimise packages cleaned up
dragarcia Nov 19, 2021
e2aab01
link pg binaries only at the end
dragarcia Nov 19, 2021
cf0f434
remove postgres as pgbouncer stats_users
dragarcia Nov 19, 2021
60a6fdd
bump to Postgres 14.1
dragarcia Nov 19, 2021
9855e38
Merge branch 'develop' of github.com:supabase/postgres into feature/1…
dragarcia Nov 21, 2021
1cf9351
rename filename for pgsodium
dragarcia Nov 21, 2021
c98446c
update regex for session_preload_libraries
dragarcia Nov 22, 2021
9feea21
Update README
dragarcia Nov 22, 2021
33d7500
update download URLs for postgrest
dragarcia Nov 22, 2021
5bf900b
Bump versions
dragarcia Nov 22, 2021
ceae008
feat: build AMIs using Github Actions (#101)
darora Nov 22, 2021
ccd7a81
Transfer ownership of pgbouncer process to pgbouncer user
dragarcia Nov 22, 2021
1a3d08c
Merge branch 'feature/14.0.0' of github.com:supabase/postgres into fe…
dragarcia Nov 22, 2021
012c9df
Merge branch 'develop' of github.com:supabase/postgres into feature/1…
dragarcia Nov 22, 2021
6f615a1
increased timeout for get_url
dragarcia Nov 25, 2021
3c0201a
further hardening of pgbouncer
dragarcia Nov 25, 2021
8584437
bump common.vars.json
dragarcia Nov 25, 2021
fcb9727
Enhancements to docker images (#108)
dragarcia Nov 29, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
new extensions:
- rum
- pg_hashids
  • Loading branch information
dragarcia committed Nov 18, 2021
commit 9bc3cd6e05f9af55c4d47f92091d185a94aebde8
28 changes: 28 additions & 0 deletions ansible/tasks/postgres-extensions/16-rum.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# rum
- name: rum - download latest release
get_url:
url: "https://github.com/postgrespro/rum/archive/refs/tags/{{rum_release}}.tar.gz"
dest: /tmp/rum-{{ rum_release }}.tar.gz
checksum: "{{ rum_release_checksum }}"

- name: rum - unpack archive
unarchive:
remote_src: yes
src: /tmp/rum-{{ rum_release }}.tar.gz
dest: /tmp
become: yes

- name: rum - build
make:
chdir: /tmp/rum-{{ rum_release }}
params:
USE_PGXS: 1
become: yes

- name: rum - install
make:
chdir: /tmp/rum-{{ rum_release }}
target: install
params:
USE_PGXS: 1
become: yes
17 changes: 17 additions & 0 deletions ansible/tasks/postgres-extensions/17-pg_hashids.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# pg_hashids
- name: pg_hashids - download from master branch
git:
repo: https://github.com/iCyberon/pg_hashids.git
dest: /tmp/pg_hashids
version: master

- name: pg_hashids - build
make:
chdir: /tmp/pg_hashids
become: yes

- name: pg_hashids - install
make:
chdir: /tmp/pg_hashids
target: install
become: yes
8 changes: 7 additions & 1 deletion ansible/tasks/setup-extensions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,10 @@
import_tasks: tasks/postgres-extensions/14-pg_plan_filter.yml

- name: Install pg_net
import_tasks: tasks/postgres-extensions/15-pg_net.yml
import_tasks: tasks/postgres-extensions/15-pg_net.yml

- name: Install rum
import_tasks: tasks/postgres-extensions/16-rum.yml

- name: Install pg_hashids
import_tasks: tasks/postgres-extensions/17-pg_hashids.yml
0