8000 Add pgsodium getkey script using /dev/urandom and update to 2.0.1 by michelp · Pull Request #126 · supabase/postgres · GitHub
[go: up one dir, main page]

Skip to content

Add pgsodium getkey script using /dev/urandom and update to 2.0.1 #126

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 5 commits into from
Jan 17, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
Next Next commit
update to pgsodium 2.0.0
  • Loading branch information
michelp committed Jan 13, 2022
commit 6af502e74d1a9b3c659d703c50abd2180a216e50
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Unmodified Postgres with some useful plugins. Our goal with this repo is not to
| [pg_net](https://github.com/supabase/pg_net) | [v0.3](https://github.com/supabase/pg_net/releases/tag/v0.3) | Expose the SQL interface for async networking. |
| [rum](https://github.com/postgrespro/rum) | [1.3.9](https://github.com/postgrespro/rum/releases/tag/1.3.9) | An alternative to the GIN index. |
| [pg_hashids](https://github.com/iCyberon/pg_hashids) | [commit](https://github.com/iCyberon/pg_hashids/commit/83398bcbb616aac2970f5e77d93a3200f0f28e74) | Generate unique identifiers from numbers. |
| [pg_sodium](https://github.com/michelp/pgsodium) | [v1.3.0](https://github.com/michelp/pgsodium/releases/tag/v1.3.0) | Modern encryption API using libsodium. |
| [pgsodium](https://github.com/michelp/pgsodium) | [2.0.0](https://github.com/michelp/pgsodium/releases/tag/2.0.0) | Modern encryption API using libsodium. |


Can't find your favorite extension? Suggest for it to be added into future releases [here](https://github.com/supabase/supabase/discussions/679)!
Expand Down
2 changes: 1 addition & 1 deletion ansible/tasks/postgres-extensions/18-pgsodium.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

- name: pgsodium - download pgsodium
get_url:
url: "https://github.com/michelp/pgsodium/archive/refs/tags/v1.3.0.tar.gz"
url: "https://github.com/michelp/pgsodium/archive/refs/tags/{{ pgsodium_release }}.tar.gz"
dest: /tmp/pgsodium-{{ pgsodium_release }}.tar.gz
checksum: "{{ pgsodium_release_checksum }}"
timeout: 60
Expand Down
4 changes: 2 additions & 2 deletions ansible/vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,5 +91,5 @@ vector_arm_deb: 'https://packages.timber.io/vector/0.17.0/vector-0.17.0-arm64.de
libsodium_release: "1.0.18"
libsodium_release_checksum: sha1:795b73e3f92a362fabee238a71735579bf46bb97

pgsodium_release: "1.3.0"
pgsodium_release_checksum: sha1:d7b00ce0437b697a8a0076eeb80b17b7fef80fc2
pgsodium_release: "2.0.0"
pgsodium_release_checksum: sha1:69f9fe125d1b2e2b1e2e3394b68ade483d7c408f
0