From cd97e64ef035b6f71adf34d2c3bafefbc0507f4c Mon Sep 17 00:00:00 2001 From: Oliver Rice Date: Mon, 5 Aug 2024 09:47:50 -0500 Subject: [PATCH] upgrade pg_graphql to 1.5.7 (#1087) --- ansible/vars.yml | 2 +- nix/ext/pg_graphql.nix | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ansible/vars.yml b/ansible/vars.yml index 3040334f7..99299eed1 100644 --- a/ansible/vars.yml +++ b/ansible/vars.yml @@ -117,7 +117,7 @@ libsodium_release_checksum: sha256:6f504490b342a4f8a4c4a02fc9b866cbef8622d5df4e5 pgsodium_release: "3.1.8" pgsodium_release_checksum: sha256:4d027aeee5163f3f33740d269938a120d1593a41c3701c920d2a1de80aa97486 -pg_graphql_release: "1.5.6" +pg_graphql_release: "1.5.7" pg_jsonschema_release: "0.2.0" diff --git a/nix/ext/pg_graphql.nix b/nix/ext/pg_graphql.nix index d7d6ef2c3..63de36ac6 100644 --- a/nix/ext/pg_graphql.nix +++ b/nix/ext/pg_graphql.nix @@ -2,14 +2,14 @@ buildPgrxExtension_0_11_3 rec { pname = "pg_graphql"; - version = "1.5.6"; + version = "1.5.7"; inherit postgresql; src = fetchFromGitHub { owner = "supabase"; repo = pname; rev = "v${version}"; - hash = "sha256-v/40TR/1bplbQuD3Hv3gE7oh6cfn9fA6U5s+FTAwxtA="; + hash = "sha256-Q6XfcTKVOjo5pGy8QACc4QCHolKxEGU8e0TTC6Zg8go="; }; nativeBuildInputs = [ cargo ]; @@ -20,7 +20,7 @@ buildPgrxExtension_0_11_3 rec { POSTGRES_LIB = "${postgresql}/lib"; RUSTFLAGS = "-C link-arg=-undefined -C link-arg=dynamic_lookup"; }; - cargoHash = "sha256-yc0lO4BZdbArBujRynl/ItkLLAiVZ2Wf3S7voQ2x6xM="; + cargoHash = "sha256-WkHufMw8OvinMRYd06ZJACnVvY9OLi069nCgq3LSmMY="; # FIXME (aseipp): disable the tests since they try to install .control # files into the wrong spot, aside from that the one main test seems @@ -34,4 +34,4 @@ buildPgrxExtension_0_11_3 rec { platforms = postgresql.meta.platforms; license = licenses.postgresql; }; -} \ No newline at end of file +}