Skip to content

Commit

Permalink
chore: updates hasura graphql-engine to 1.3.3
Browse files Browse the repository at this point in the history
* hasura: 1.3.2 -> 1.3.3

* Docker: hasura 1.3.2 -> 1.3.3
  • Loading branch information
mmahut authored Nov 20, 2020
1 parent 6f20487 commit 6dbd988
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ RUN yarn --production --offline --frozen-lockfile --non-interactive
FROM frolvlad/alpine-glibc:alpine-3.11_glibc-2.30 as downloader
RUN apk add curl
RUN curl --proto '=https' --tlsv1.2 -sSf -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | sh
RUN hasura --skip-update-check update-cli --version v1.3.2
RUN hasura --skip-update-check update-cli --version v1.3.3

FROM frolvlad/alpine-glibc:alpine-3.11_glibc-2.30 as server
ARG NETWORK=mainnet
Expand Down
2 changes: 1 addition & 1 deletion nix/graphql-engine/hs-overlay.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ self: super: {
})));
graphql-engine = haskell.lib.dontHaddock (haskell.lib.dontCheck (super.graphql-engine.overrideAttrs (_: {
src = sources.graphql-engine;
name = "graphql-engine-1.3.2";
name = "graphql-engine-1.3.3";
})));
graphql-parser = haskell.lib.dontHaddock (haskell.lib.dontCheck (super.graphql-parser.overrideAttrs (_: {
src = sources.graphql-parser-hs;
Expand Down
4 changes: 2 additions & 2 deletions nix/hasura-cli-ext/impure.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

stdenv.mkDerivation rec {
pname = "hasura-cli-ext";
version = "1.3.2";
version = "1.3.3";
src = fetchurl {
url = "https://github.com/hasura/graphql-engine/releases/download/v${version}/cli-ext-hasura-linux.tar.gz";
sha256 = "1hibvwiknbbwc6ir1wx044rk67myxcd16plgl6azyhyifasbx9zq";
sha256 = "0a49w1lb3j33i8yz232inr7lm8j6vxg6y52izljnn71w2l25mqlw";
};
sourceRoot = ".";
buildPhase = ":";
Expand Down
2 changes: 1 addition & 1 deletion nix/packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ let
hasura-cli = pkgs.hasura-cli.overrideAttrs (_: rec {
src = pkgs.sources.graphql-engine;
name = "hasura-${version}";
version = "1.3.2";
version = "1.3.3";
buildFlagsArray = [''-ldflags=
-X github.com/hasura/graphql-engine/cli/version.BuildVersion=${version}
-s
Expand Down
2 changes: 1 addition & 1 deletion packages/api-cardano-db-hasura/hasura/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM hasura/graphql-engine:v1.3.2.cli-migrations-v2
FROM hasura/graphql-engine:v1.3.3.cli-migrations-v2
COPY docker-entrypoint.sh /bin/
ENV \
POSTGRES_HOST=postgres \
Expand Down

0 comments on commit 6dbd988

Please sign in to comment.