tag release v2.1.0-beta.1

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/2472
GitOrigin-RevId: b18f755b8db82ee6376d9af02495fe55cfd93aa8
This commit is contained in:
Tirumarai Selvan 2021-09-30 15:17:25 +05:30 committed by hasura-bot
parent 61e069ad8a
commit b0f723b201
15 changed files with 17 additions and 14 deletions

View File

@ -3,6 +3,8 @@
## Next release
(Add entries below in the order of server, console, cli, docs, others)
## v2.1.0-beta.1
- server: Ignore unexpected fields in action responses (#5731)
- server: add webhook transformations for Actions and EventTriggers
- server: optimize SQL query generation with LIMITs

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.9 bash
curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | VERSION=v2.1.0-beta.1 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.9 bash
curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | VERSION=v2.1.0-beta.1 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.9 bash
curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | VERSION=v2.1.0-beta.1 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.9"
"containerImage": "hasura/graphql-engine:v2.1.0-beta.1"
},
"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.9"
"containerImage": "hasura/graphql-engine:v2.1.0-beta.1"
},
"resources": [
{

View File

@ -8,7 +8,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
graphql-engine:
image: hasura/graphql-engine:v2.0.9
image: hasura/graphql-engine:v2.1.0-beta.1
depends_on:
- "postgres"
restart: always

View File

@ -8,7 +8,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
graphql-engine:
image: hasura/graphql-engine:v2.0.9
image: hasura/graphql-engine:v2.1.0-beta.1
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.9
image: hasura/graphql-engine:v2.1.0-beta.1
ports:
- "8080:8080"
depends_on:

View File

@ -8,7 +8,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
graphql-engine:
image: hasura/graphql-engine:v2.0.9
image: hasura/graphql-engine:v2.1.0-beta.1
ports:
- "8080:8080"
depends_on:

View File

@ -8,7 +8,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
graphql-engine:
image: hasura/graphql-engine:v2.0.9
image: hasura/graphql-engine:v2.1.0-beta.1
ports:
- "8080:8080"
depends_on:

View File

@ -8,7 +8,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
graphql-engine:
image: hasura/graphql-engine:v2.0.9
image: hasura/graphql-engine:v2.1.0-beta.1
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.9
hasura/graphql-engine:v2.1.0-beta.1

View File

@ -16,7 +16,7 @@ spec:
spec:
containers:
- name: graphql-engine
image: hasura/graphql-engine:v2.0.9
image: hasura/graphql-engine:v2.1.0-beta.1
ports:
- containerPort: 8080
readinessProbe:

View File

@ -18,7 +18,7 @@ spec:
app: hasura
spec:
containers:
- image: hasura/graphql-engine:v2.0.9
- image: hasura/graphql-engine:v2.1.0-beta.1
imagePullPolicy: IfNotPresent
name: hasura
env:

View File

@ -57,3 +57,4 @@ v2.0.6 46
v2.0.7 47
v2.0.8 47
v2.0.9 47
v2.1.0-beta.1 47