tag release v2.0.6

GitOrigin-RevId: b2b906cf7b05bc444148a334aba42385046be75c
This commit is contained in:
Tirumarai Selvan 2021-08-11 06:48:28 +05:30 committed by hasura-bot
parent a226d514af
commit 7b863a1b3b
15 changed files with 17 additions and 14 deletions

View File

@ -4,6 +4,8 @@
(Add entries below in the order of server, console, cli, docs, others)
## v2.0.6
- server: Add support for inherited roles for mutations, remote schema, actions and custom function permissions
- server: fix an issue with remote relationships when join columns are aliased (close #7180)
- server: fix for incorrect `__typename` value in nested remote joins with a customized remote schema

View File

@ -19,7 +19,7 @@
You can also install a specific version of the CLI by providing the `VERSION` variable:
```bash
curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | VERSION=v2.0.5 bash
curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | VERSION=v2.0.6 bash
```
- Windows

View File

@ -40,7 +40,7 @@ Install a binary globally
.. code-block:: bash
curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | VERSION=v2.0.5 bash
curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | VERSION=v2.0.6 bash
.. tab:: Mac
@ -64,7 +64,7 @@ Install a binary globally
.. code-block:: bash
curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | VERSION=v2.0.5 bash
curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | VERSION=v2.0.6 bash
.. tab:: Windows

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.5"
"containerImage": "hasura/graphql-engine:v2.0.6"
},
"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.5"
"containerImage": "hasura/graphql-engine:v2.0.6"
},
"resources": [
{

View File

@ -8,7 +8,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
graphql-engine:
image: hasura/graphql-engine:v2.0.5
image: hasura/graphql-engine:v2.0.6
depends_on:
- "postgres"
restart: always

View File

@ -8,7 +8,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
graphql-engine:
image: hasura/graphql-engine:v2.0.5
image: hasura/graphql-engine:v2.0.6
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.5
image: hasura/graphql-engine:v2.0.6
ports:
- "8080:8080"
depends_on:

View File

@ -8,7 +8,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
graphql-engine:
image: hasura/graphql-engine:v2.0.5
image: hasura/graphql-engine:v2.0.6
ports:
- "8080:8080"
depends_on:

View File

@ -8,7 +8,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
graphql-engine:
image: hasura/graphql-engine:v2.0.5
image: hasura/graphql-engine:v2.0.6
ports:
- "8080:8080"
depends_on:

View File

@ -8,7 +8,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
graphql-engine:
image: hasura/graphql-engine:v2.0.5
image: hasura/graphql-engine:v2.0.6
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.5
hasura/graphql-engine:v2.0.6

View File

@ -16,7 +16,7 @@ spec:
spec:
containers:
- name: graphql-engine
image: hasura/graphql-engine:v2.0.5
image: hasura/graphql-engine:v2.0.6
ports:
- containerPort: 8080
readinessProbe:

View File

@ -18,7 +18,7 @@ spec:
app: hasura
spec:
containers:
- image: hasura/graphql-engine:v2.0.5
- image: hasura/graphql-engine:v2.0.6
imagePullPolicy: IfNotPresent
name: hasura
env:

View File

@ -53,3 +53,4 @@ v2.0.2 46
v2.0.3 46
v2.0.4 46
v2.0.5 46
v2.0.6 46