tag release v2.0.0-alpha.8 (#1159)

GitOrigin-RevId: c883bbbef79532ce97b0b25177843f13bb47c184
This commit is contained in:
Tirumarai Selvan 2021-04-16 19:08:13 +05:30 committed by hasura-bot
parent e8dfeb107b
commit 2425607a18
13 changed files with 16 additions and 14 deletions

View File

@ -1,8 +1,10 @@
# Hasura GraphQL Engine Changelog
## Next release
(Add entries here in the order of: server, console, cli, docs, others)
- server: all query APIs now require admin privileges
## v2.0.0-alpha.8
### Support for 3D PostGIS Operators
@ -41,8 +43,7 @@ In the future, we will probably offer a way to explicitly choose which behaviour
### Bug fixes and improvements
(Add entries here in the order of: server, console, cli, docs, others)
- server: all /query APIs now require admin privileges
- server: add a new `/dev/rts_stats` endpoint, enabled when hasura is started with '+RTS -T'
- server: re-enable a default HASURA_GRAPHQL_PG_CONN_LIFETIME of 10min
- server: support for bigquery datasets

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

View File

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

View File

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

View File

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

View File

@ -41,3 +41,4 @@ v2.0.0-alpha.4 44
v2.0.0-alpha.5 44
v2.0.0-alpha.6 44
v2.0.0-alpha.7 45
v2.0.0-alpha.8 46