Skip to content

Commit

Permalink
upgrade pg_graphql to 1.5.7 (#1087)
Browse files Browse the repository at this point in the history
  • Loading branch information
olirice authored Aug 5, 2024
1 parent e5f90f9 commit cd97e64
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ansible/vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
8 changes: 4 additions & 4 deletions nix/ext/pg_graphql.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 ];
Expand All @@ -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
Expand All @@ -34,4 +34,4 @@ buildPgrxExtension_0_11_3 rec {
platforms = postgresql.meta.platforms;
license = licenses.postgresql;
};
}
}

0 comments on commit cd97e64

Please sign in to comment.