tag release v2.0.0-alpha.11

GitOrigin-RevId: cbc36c7b0385ad7e1ca7fcda8a364ee9b201b35d
This commit is contained in:
Tirumarai Selvan 2021-05-25 17:47:41 +05:30 committed by hasura-bot
parent 5ad01a4bac
commit 3bcf758e14
13 changed files with 18 additions and 11 deletions

View File

@ -2,6 +2,12 @@
## Next release
### Bug fixes and improvements
(Add entries below in the order of server, console, cli, docs, others)
## v2.0.0-alpha.11
### Breaking Changes
- In this release, the name of the computed field argument has changed from `<function_name>_args` to

View File

@ -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.0-alpha.10"
"containerImage": "hasura/graphql-engine:v2.0.0-alpha.11"
},
"resources": [
{

View File

@ -55,7 +55,7 @@
"dbName": "[parameters('postgresDatabaseName')]",
"containerGroupName": "[concat(parameters('name'), '-container-group')]",
"containerName": "hasura-graphql-engine",
"containerImage": "hasura/graphql-engine:v2.0.0-alpha.10"
"containerImage": "hasura/graphql-engine:v2.0.0-alpha.11"
},
"resources": [
{

View File

@ -8,7 +8,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
graphql-engine:
image: hasura/graphql-engine:v2.0.0-alpha.10
image: hasura/graphql-engine:v2.0.0-alpha.11
depends_on:
- "postgres"
restart: always

View File

@ -8,7 +8,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
graphql-engine:
image: hasura/graphql-engine:v2.0.0-alpha.10
image: hasura/graphql-engine:v2.0.0-alpha.11
ports:
- "8080:8080"
depends_on:

View File

@ -19,7 +19,7 @@ services:
PGADMIN_DEFAULT_EMAIL: pgadmin@example.com
PGADMIN_DEFAULT_PASSWORD: admin
graphql-engine:
image: hasura/graphql-engine:v2.0.0-alpha.10
image: hasura/graphql-engine:v2.0.0-alpha.11
ports:
- "8080:8080"
depends_on:

View File

@ -8,7 +8,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
graphql-engine:
image: hasura/graphql-engine:v2.0.0-alpha.10
image: hasura/graphql-engine:v2.0.0-alpha.11
ports:
- "8080:8080"
depends_on:

View File

@ -8,7 +8,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
graphql-engine:
image: hasura/graphql-engine:v2.0.0-alpha.10
image: hasura/graphql-engine:v2.0.0-alpha.11
ports:
- "8080:8080"
depends_on:

View File

@ -8,7 +8,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
graphql-engine:
image: hasura/graphql-engine:v2.0.0-alpha.10
image: hasura/graphql-engine:v2.0.0-alpha.11
ports:
- "8080:8080"
depends_on:

View File

@ -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.0-alpha.10
hasura/graphql-engine:v2.0.0-alpha.11

View File

@ -16,7 +16,7 @@ spec:
spec:
containers:
- name: graphql-engine
image: hasura/graphql-engine:v2.0.0-alpha.10
image: hasura/graphql-engine:v2.0.0-alpha.11
ports:
- containerPort: 8080
readinessProbe:

View File

@ -18,7 +18,7 @@ spec:
app: hasura
spec:
containers:
- image: hasura/graphql-engine:v2.0.0-alpha.10
- image: hasura/graphql-engine:v2.0.0-alpha.11
imagePullPolicy: IfNotPresent
name: hasura
env:

View File

@ -44,3 +44,4 @@ v2.0.0-alpha.7 45
v2.0.0-alpha.8 46
v2.0.0-alpha.9 46
v2.0.0-alpha.10 46
v2.0.0-alpha.11 46