mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 01:12:56 +03:00
tag release v2.0.6
GitOrigin-RevId: b2b906cf7b05bc444148a334aba42385046be75c
This commit is contained in:
parent
a226d514af
commit
7b863a1b3b
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
@ -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": [
|
||||
{
|
||||
|
@ -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": [
|
||||
{
|
||||
|
@ -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
|
||||
|
@ -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:
|
||||
|
@ -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:
|
||||
|
@ -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:
|
||||
|
@ -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:
|
||||
|
@ -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:
|
||||
|
@ -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
|
||||
|
@ -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:
|
||||
|
@ -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:
|
||||
|
@ -53,3 +53,4 @@ v2.0.2 46
|
||||
v2.0.3 46
|
||||
v2.0.4 46
|
||||
v2.0.5 46
|
||||
v2.0.6 46
|
||||
|
Loading…
Reference in New Issue
Block a user