tag release v2.0.0-alpha.10 (#1256)

GitOrigin-RevId: afe16e57e03cf2b790d47f8e44bbb63ae4405f8e
This commit is contained in:
Tirumarai Selvan 2021-04-29 16:46:56 +05:30 committed by hasura-bot
parent 7550761853
commit eb38eee63a
13 changed files with 18 additions and 15 deletions

View File

@ -2,18 +2,20 @@
## Next release
(Add entries below in the order of: server, console, cli, docs, others)
## v2.0.0-alpha.10
### Bug fixes and improvements
(Add entries below in the order of: server, console, cli, docs, others)
- server: aggregation fields are now supported on mssql
- server: accept a new server config flag `--events-fetch-batch-size` to configure the number of rows being fetched from the events log table in a single batch
- server: restore proper batching behavior in event trigger processing so that at most 200 events are checked out at a time
- server: restore proper batching behavior in event trigger processing so that at most 2x batch events are checked out at a time
- server: fix regression: `on_conflict` was missing in the schema for inserts in tables where the current user has no columns listed in their update permissions (fix #6804)
- server: fix one-to-one relationship bug (introduced in #459) which prevented adding one-to-one relationships which didn't have the same column name for target and source
- server: fix one-to-one relationship bug which prevented adding one-to-one relationships which didn't have the same column name for target and source
- console: fix Postgres table creation when table has a non-lowercase name and a comment (#6760)
- cli: fix regression - `metadata apply —dry-run` was overwriting local metadata files with metadata on server when it should just display the differences.
- cli: add support for `api_limits` metadata object
- server: decrease polling interval for scheduled triggers from 60 to 10 seconds
- server: Change `HASURA_GRAPHQL_SCHEMA_POLL_INTERVAL` env var to `HASURA_GRAPHQL_SCHEMA_SYNC_POLL_INTERVAL` and `schema-poll-interval` option to `--schema-sync-poll-interval`.

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.0-alpha.9"
"containerImage": "hasura/graphql-engine:v2.0.0-alpha.10"
},
"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.0-alpha.9"
"containerImage": "hasura/graphql-engine:v2.0.0-alpha.10"
},
"resources": [
{

View File

@ -8,7 +8,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
graphql-engine:
image: hasura/graphql-engine:v2.0.0-alpha.9
image: hasura/graphql-engine:v2.0.0-alpha.10
depends_on:
- "postgres"
restart: always

View File

@ -8,7 +8,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
graphql-engine:
image: hasura/graphql-engine:v2.0.0-alpha.9
image: hasura/graphql-engine:v2.0.0-alpha.10
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.0-alpha.9
image: hasura/graphql-engine:v2.0.0-alpha.10
ports:
- "8080:8080"
depends_on:

View File

@ -8,7 +8,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
graphql-engine:
image: hasura/graphql-engine:v2.0.0-alpha.9
image: hasura/graphql-engine:v2.0.0-alpha.10
ports:
- "8080:8080"
depends_on:

View File

@ -8,7 +8,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
graphql-engine:
image: hasura/graphql-engine:v2.0.0-alpha.9
image: hasura/graphql-engine:v2.0.0-alpha.10
ports:
- "8080:8080"
depends_on:

View File

@ -8,7 +8,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
graphql-engine:
image: hasura/graphql-engine:v2.0.0-alpha.9
image: hasura/graphql-engine:v2.0.0-alpha.10
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.0-alpha.9
hasura/graphql-engine:v2.0.0-alpha.10

View File

@ -16,7 +16,7 @@ spec:
spec:
containers:
- name: graphql-engine
image: hasura/graphql-engine:v2.0.0-alpha.9
image: hasura/graphql-engine:v2.0.0-alpha.10
ports:
- containerPort: 8080
readinessProbe:

View File

@ -18,7 +18,7 @@ spec:
app: hasura
spec:
containers:
- image: hasura/graphql-engine:v2.0.0-alpha.9
- image: hasura/graphql-engine:v2.0.0-alpha.10
imagePullPolicy: IfNotPresent
name: hasura
env:

View File

@ -43,3 +43,4 @@ v2.0.0-alpha.6 44
v2.0.0-alpha.7 45
v2.0.0-alpha.8 46
v2.0.0-alpha.9 46
v2.0.0-alpha.10 46