mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 01:12:56 +03:00
tag release v2.0.3
https://github.com/hasura/graphql-engine-mono/pull/1823 GitOrigin-RevId: 0b8fb6f885c799661c50b56fdf51e2fb171a43b6
This commit is contained in:
parent
295f7f3736
commit
83911544c8
@ -3,11 +3,13 @@
|
||||
## Next release
|
||||
(Add entries below in the order of server, console, cli, docs, others)
|
||||
|
||||
## v2.0.3
|
||||
(Add entries below in the order of server, console, cli, docs, others)
|
||||
|
||||
- server: inherited role improvements for select queries
|
||||
- an inherited role can now inherit from other inherited roles as well
|
||||
- explicit permissions for inherited roles can now be set which will override the inherited permission (if any)
|
||||
- server: fix optional global_select_limit config for BigQuery
|
||||
- server: fix MySQL dependencies in Pro Dockerfile
|
||||
- console: support `global_select_limit` for bigquery sources
|
||||
- cli: add `-o`/`--output` flag for `hasura metadata inconsistency list` command
|
||||
|
||||
|
@ -98,7 +98,7 @@
|
||||
"firewallRuleName": "allow-all-azure-firewall-rule",
|
||||
"containerGroupName": "[concat(parameters('name'), '-container-group')]",
|
||||
"containerName": "hasura-graphql-engine",
|
||||
"containerImage": "hasura/graphql-engine:v2.0.2"
|
||||
"containerImage": "hasura/graphql-engine:v2.0.3"
|
||||
},
|
||||
"resources": [
|
||||
{
|
||||
|
@ -55,7 +55,7 @@
|
||||
"dbName": "[parameters('postgresDatabaseName')]",
|
||||
"containerGroupName": "[concat(parameters('name'), '-container-group')]",
|
||||
"containerName": "hasura-graphql-engine",
|
||||
"containerImage": "hasura/graphql-engine:v2.0.2"
|
||||
"containerImage": "hasura/graphql-engine:v2.0.3"
|
||||
},
|
||||
"resources": [
|
||||
{
|
||||
|
@ -8,7 +8,7 @@ services:
|
||||
environment:
|
||||
POSTGRES_PASSWORD: postgrespassword
|
||||
graphql-engine:
|
||||
image: hasura/graphql-engine:v2.0.2
|
||||
image: hasura/graphql-engine:v2.0.3
|
||||
depends_on:
|
||||
- "postgres"
|
||||
restart: always
|
||||
|
@ -8,7 +8,7 @@ services:
|
||||
environment:
|
||||
POSTGRES_PASSWORD: postgrespassword
|
||||
graphql-engine:
|
||||
image: hasura/graphql-engine:v2.0.2
|
||||
image: hasura/graphql-engine:v2.0.3
|
||||
ports:
|
||||
- "8080:8080"
|
||||
depends_on:
|
||||
|
@ -19,7 +19,7 @@ services:
|
||||
PGADMIN_DEFAULT_EMAIL: pgadmin@example.com
|
||||
PGADMIN_DEFAULT_PASSWORD: admin
|
||||
graphql-engine:
|
||||
image: hasura/graphql-engine:v2.0.2
|
||||
image: hasura/graphql-engine:v2.0.3
|
||||
ports:
|
||||
- "8080:8080"
|
||||
depends_on:
|
||||
|
@ -8,7 +8,7 @@ services:
|
||||
environment:
|
||||
POSTGRES_PASSWORD: postgrespassword
|
||||
graphql-engine:
|
||||
image: hasura/graphql-engine:v2.0.2
|
||||
image: hasura/graphql-engine:v2.0.3
|
||||
ports:
|
||||
- "8080:8080"
|
||||
depends_on:
|
||||
|
@ -8,7 +8,7 @@ services:
|
||||
environment:
|
||||
POSTGRES_PASSWORD: postgrespassword
|
||||
graphql-engine:
|
||||
image: hasura/graphql-engine:v2.0.2
|
||||
image: hasura/graphql-engine:v2.0.3
|
||||
ports:
|
||||
- "8080:8080"
|
||||
depends_on:
|
||||
|
@ -8,7 +8,7 @@ services:
|
||||
environment:
|
||||
POSTGRES_PASSWORD: postgrespassword
|
||||
graphql-engine:
|
||||
image: hasura/graphql-engine:v2.0.2
|
||||
image: hasura/graphql-engine:v2.0.3
|
||||
ports:
|
||||
- "8080:8080"
|
||||
depends_on:
|
||||
|
@ -3,4 +3,4 @@ docker run -d -p 8080:8080 \
|
||||
-e HASURA_GRAPHQL_DATABASE_URL=postgres://username:password@hostname:port/dbname \
|
||||
-e HASURA_GRAPHQL_ENABLE_CONSOLE=true \
|
||||
-e HASURA_GRAPHQL_DEV_MODE=true \
|
||||
hasura/graphql-engine:v2.0.2
|
||||
hasura/graphql-engine:v2.0.3
|
||||
|
@ -16,7 +16,7 @@ spec:
|
||||
spec:
|
||||
containers:
|
||||
- name: graphql-engine
|
||||
image: hasura/graphql-engine:v2.0.2
|
||||
image: hasura/graphql-engine:v2.0.3
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
readinessProbe:
|
||||
|
@ -18,7 +18,7 @@ spec:
|
||||
app: hasura
|
||||
spec:
|
||||
containers:
|
||||
- image: hasura/graphql-engine:v2.0.2
|
||||
- image: hasura/graphql-engine:v2.0.3
|
||||
imagePullPolicy: IfNotPresent
|
||||
name: hasura
|
||||
env:
|
||||
|
@ -50,3 +50,4 @@ v2.0.0-beta.2 46
|
||||
v2.0.0 46
|
||||
v2.0.1 46
|
||||
v2.0.2 46
|
||||
v2.0.3 46
|
||||
|
Loading…
Reference in New Issue
Block a user