mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-14 08:02:15 +03:00
tag release v2.0.9
GitOrigin-RevId: dfba245a4dbe1a71b1e3cc7c92914fc0a919c2b0
This commit is contained in:
parent
2329c16ce9
commit
4cabb0bdf9
@ -4,6 +4,8 @@
|
||||
|
||||
(Add entries below in the order of server, console, cli, docs, others)
|
||||
|
||||
## v2.0.9
|
||||
|
||||
- server: disable mutation for materialised views (#6688)
|
||||
- server: set `tracecontext` and `userInfo` for DML actions on Postgres sources
|
||||
- server: add support for `connection_parameters` on `pg_add_source` API
|
||||
|
@ -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.8 bash
|
||||
curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | VERSION=v2.0.9 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.8 bash
|
||||
curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | VERSION=v2.0.9 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.8 bash
|
||||
curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | VERSION=v2.0.9 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.8"
|
||||
"containerImage": "hasura/graphql-engine:v2.0.9"
|
||||
},
|
||||
"resources": [
|
||||
{
|
||||
|
@ -55,7 +55,7 @@
|
||||
"dbName": "[parameters('postgresDatabaseName')]",
|
||||
"containerGroupName": "[concat(parameters('name'), '-container-group')]",
|
||||
"containerName": "hasura-graphql-engine",
|
||||
"containerImage": "hasura/graphql-engine:v2.0.8"
|
||||
"containerImage": "hasura/graphql-engine:v2.0.9"
|
||||
},
|
||||
"resources": [
|
||||
{
|
||||
|
@ -8,7 +8,7 @@ services:
|
||||
environment:
|
||||
POSTGRES_PASSWORD: postgrespassword
|
||||
graphql-engine:
|
||||
image: hasura/graphql-engine:v2.0.8
|
||||
image: hasura/graphql-engine:v2.0.9
|
||||
depends_on:
|
||||
- "postgres"
|
||||
restart: always
|
||||
|
@ -8,7 +8,7 @@ services:
|
||||
environment:
|
||||
POSTGRES_PASSWORD: postgrespassword
|
||||
graphql-engine:
|
||||
image: hasura/graphql-engine:v2.0.8
|
||||
image: hasura/graphql-engine:v2.0.9
|
||||
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.8
|
||||
image: hasura/graphql-engine:v2.0.9
|
||||
ports:
|
||||
- "8080:8080"
|
||||
depends_on:
|
||||
|
@ -8,7 +8,7 @@ services:
|
||||
environment:
|
||||
POSTGRES_PASSWORD: postgrespassword
|
||||
graphql-engine:
|
||||
image: hasura/graphql-engine:v2.0.8
|
||||
image: hasura/graphql-engine:v2.0.9
|
||||
ports:
|
||||
- "8080:8080"
|
||||
depends_on:
|
||||
|
@ -8,7 +8,7 @@ services:
|
||||
environment:
|
||||
POSTGRES_PASSWORD: postgrespassword
|
||||
graphql-engine:
|
||||
image: hasura/graphql-engine:v2.0.8
|
||||
image: hasura/graphql-engine:v2.0.9
|
||||
ports:
|
||||
- "8080:8080"
|
||||
depends_on:
|
||||
|
@ -8,7 +8,7 @@ services:
|
||||
environment:
|
||||
POSTGRES_PASSWORD: postgrespassword
|
||||
graphql-engine:
|
||||
image: hasura/graphql-engine:v2.0.8
|
||||
image: hasura/graphql-engine:v2.0.9
|
||||
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.8
|
||||
hasura/graphql-engine:v2.0.9
|
||||
|
@ -16,7 +16,7 @@ spec:
|
||||
spec:
|
||||
containers:
|
||||
- name: graphql-engine
|
||||
image: hasura/graphql-engine:v2.0.8
|
||||
image: hasura/graphql-engine:v2.0.9
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
readinessProbe:
|
||||
|
@ -18,7 +18,7 @@ spec:
|
||||
app: hasura
|
||||
spec:
|
||||
containers:
|
||||
- image: hasura/graphql-engine:v2.0.8
|
||||
- image: hasura/graphql-engine:v2.0.9
|
||||
imagePullPolicy: IfNotPresent
|
||||
name: hasura
|
||||
env:
|
||||
|
@ -56,3 +56,4 @@ v2.0.5 46
|
||||
v2.0.6 46
|
||||
v2.0.7 47
|
||||
v2.0.8 47
|
||||
v2.0.9 47
|
||||
|
Loading…
Reference in New Issue
Block a user