tag release v2.1.0-beta.3

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/3099
GitOrigin-RevId: 7aa2926871bd44d80490768f86fab7bac02a7758
This commit is contained in:
Vishnu Bharathi 2021-12-09 16:57:27 +05:30 committed by hasura-bot
parent ef585f70e6
commit a835d95b17
15 changed files with 23 additions and 21 deletions

View File

@ -3,6 +3,11 @@
## Next release
(Add highlights/major features below)
### Bug fixes and improvements
(Add entries below in the order of server, console, cli, docs, others)
## v2.1.0-beta.3
- server: allows the use of mock env vars in the `test_webhook_transform` metadata API action
- server: fix event invocation logs to include transformed request bodies (fix #2983)
- server: fix aggregate queries with nodes field in selection set for sql server (fix #7871)
@ -19,6 +24,9 @@
- server: fix rest-endpoints bug allow list arguments (fix #7135)
- server: fallback to unauthorized role when JWT is not found in cookie (fix #7272)
- server: add support for building linux/arm64 docker image (#6337, #1266)
- server: provide option to explicitly recreate event triggers for sources in the `reload_metadata` API
- server: fix `gen_hasura_uuid` migration to be idempotent, so that it doesn't fail if the database is already initialised with source migrations.
- server: fix mssql `table_by_pk` query returning empty array (fix #7784)
- console: add comments to tracked functions
- console: add select all columns option while selecting the columns in event triggers
- console: add request transforms for events
@ -27,13 +35,6 @@
- cli: sign windows binary of Hasura CLI (#7147)
- cli: core CLI features are not blocked in environments without internet (#7695)
### Bug fixes and improvements
(Add entries below in the order of server, console, cli, docs, others)
- server: provide option to explicitly recreate event triggers for sources in the `reload_metadata` API
- server: fix `gen_hasura_uuid` migration to be idempotent, so that it doesn't fail if the database is already initialised with source migrations.
- server: fix mssql `table_by_pk` query returning empty array (fix #7784)
## v2.1.0-beta.2
### Action transforms

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -60,3 +60,4 @@ v2.0.9 47
v2.1.0-beta.1 47
v2.0.10 47
v2.1.0-beta.2 47
v2.1.0-beta.3 47