mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-13 19:33:55 +03:00
tag release v2.0.4
https://github.com/hasura/graphql-engine-mono/pull/1936 GitOrigin-RevId: 0e1c97f8b8f0223a17712f870cf304004621948f
This commit is contained in:
parent
3607f472b5
commit
3089a385f1
@ -3,6 +3,8 @@
|
||||
## Next release
|
||||
(Add entries below in the order of server, console, cli, docs, others)
|
||||
|
||||
## v2.0.4
|
||||
|
||||
- server: Support computed fields in permission check/filter (close #7102)
|
||||
- server: support computed fields in query 'order_by' (close #7103)
|
||||
- server: log warning if there are errors while executing clean up actions after "drop source" (previously it would throw an error)
|
||||
|
@ -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.3"
|
||||
"containerImage": "hasura/graphql-engine:v2.0.4"
|
||||
},
|
||||
"resources": [
|
||||
{
|
||||
|
@ -55,7 +55,7 @@
|
||||
"dbName": "[parameters('postgresDatabaseName')]",
|
||||
"containerGroupName": "[concat(parameters('name'), '-container-group')]",
|
||||
"containerName": "hasura-graphql-engine",
|
||||
"containerImage": "hasura/graphql-engine:v2.0.3"
|
||||
"containerImage": "hasura/graphql-engine:v2.0.4"
|
||||
},
|
||||
"resources": [
|
||||
{
|
||||
|
@ -8,7 +8,7 @@ services:
|
||||
environment:
|
||||
POSTGRES_PASSWORD: postgrespassword
|
||||
graphql-engine:
|
||||
image: hasura/graphql-engine:v2.0.3
|
||||
image: hasura/graphql-engine:v2.0.4
|
||||
depends_on:
|
||||
- "postgres"
|
||||
restart: always
|
||||
|
@ -8,7 +8,7 @@ services:
|
||||
environment:
|
||||
POSTGRES_PASSWORD: postgrespassword
|
||||
graphql-engine:
|
||||
image: hasura/graphql-engine:v2.0.3
|
||||
image: hasura/graphql-engine:v2.0.4
|
||||
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.3
|
||||
image: hasura/graphql-engine:v2.0.4
|
||||
ports:
|
||||
- "8080:8080"
|
||||
depends_on:
|
||||
|
@ -8,7 +8,7 @@ services:
|
||||
environment:
|
||||
POSTGRES_PASSWORD: postgrespassword
|
||||
graphql-engine:
|
||||
image: hasura/graphql-engine:v2.0.3
|
||||
image: hasura/graphql-engine:v2.0.4
|
||||
ports:
|
||||
- "8080:8080"
|
||||
depends_on:
|
||||
|
@ -8,7 +8,7 @@ services:
|
||||
environment:
|
||||
POSTGRES_PASSWORD: postgrespassword
|
||||
graphql-engine:
|
||||
image: hasura/graphql-engine:v2.0.3
|
||||
image: hasura/graphql-engine:v2.0.4
|
||||
ports:
|
||||
- "8080:8080"
|
||||
depends_on:
|
||||
|
@ -8,7 +8,7 @@ services:
|
||||
environment:
|
||||
POSTGRES_PASSWORD: postgrespassword
|
||||
graphql-engine:
|
||||
image: hasura/graphql-engine:v2.0.3
|
||||
image: hasura/graphql-engine:v2.0.4
|
||||
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.3
|
||||
hasura/graphql-engine:v2.0.4
|
||||
|
@ -16,7 +16,7 @@ spec:
|
||||
spec:
|
||||
containers:
|
||||
- name: graphql-engine
|
||||
image: hasura/graphql-engine:v2.0.3
|
||||
image: hasura/graphql-engine:v2.0.4
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
readinessProbe:
|
||||
|
@ -18,7 +18,7 @@ spec:
|
||||
app: hasura
|
||||
spec:
|
||||
containers:
|
||||
- image: hasura/graphql-engine:v2.0.3
|
||||
- image: hasura/graphql-engine:v2.0.4
|
||||
imagePullPolicy: IfNotPresent
|
||||
name: hasura
|
||||
env:
|
||||
|
@ -51,3 +51,4 @@ v2.0.0 46
|
||||
v2.0.1 46
|
||||
v2.0.2 46
|
||||
v2.0.3 46
|
||||
v2.0.4 46
|
||||
|
Loading…
Reference in New Issue
Block a user