From 8857101ed7c949887461de2bc7d0796de989b28a Mon Sep 17 00:00:00 2001 From: Jarno Perholehto Date: Mon, 11 Sep 2023 11:42:31 +0300 Subject: [PATCH] Update hasura/graphql-engine Docker tag to v2.33.3 Hasura metadata catalog changes required updating routesdb-dump.sql --- Dockerfile | 2 +- migrations/routesdb-dump.sql | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index cb211988..a5906a3a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM hasura/graphql-engine:v2.20.1-ce.cli-migrations-v3.ubuntu AS hasura-generic +FROM hasura/graphql-engine:v2.33.3-ce.cli-migrations-v3.ubuntu AS hasura-generic # needed for enabling namespacing for logical databases. This env variable should be removed when this feature becomes stable ENV HASURA_GRAPHQL_EXPERIMENTAL_FEATURES="naming_convention" diff --git a/migrations/routesdb-dump.sql b/migrations/routesdb-dump.sql index 7c1eb4c3..4eccdcb0 100644 --- a/migrations/routesdb-dump.sql +++ b/migrations/routesdb-dump.sql @@ -4174,7 +4174,9 @@ CREATE TABLE hdb_catalog.hdb_version ( version text NOT NULL, upgraded_on timestamp with time zone NOT NULL, cli_state jsonb DEFAULT '{}'::jsonb NOT NULL, - console_state jsonb DEFAULT '{}'::jsonb NOT NULL + console_state jsonb DEFAULT '{}'::jsonb NOT NULL, + ee_client_id text, + ee_client_secret text );