mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-14 08:02:15 +03:00
tag release v2.0.0-beta.2
GitOrigin-RevId: cb066ee5e6738973f05a442230c074cb262e8c8d
This commit is contained in:
parent
3136ffad1b
commit
283b77c5e0
@ -1,13 +1,15 @@
|
||||
# Hasura GraphQL Engine Changelog
|
||||
|
||||
## Next release
|
||||
(Add entries below in the order of server, console, cli, docs, others)
|
||||
|
||||
## v2.0.0-beta.2
|
||||
|
||||
### Bug fixes and improvements
|
||||
|
||||
- server: remote relationships (database to remote schema joins) are now supported on SQL Server and BigQuery
|
||||
- server: BigQuery: switches to a single query generation from a dataloader approach. This should result in
|
||||
faster query responses.
|
||||
|
||||
### Bug fixes and improvements
|
||||
(Add entries below in the order of server, console, cli, docs, others)
|
||||
- server: BigQuery: various bug fixes related to aggregations
|
||||
- server: fix add source API wiping out source's metadata when replace_configuration is true
|
||||
- console: add foreign key CRUD functionality to ms sql server tables
|
||||
|
@ -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-beta.1"
|
||||
"containerImage": "hasura/graphql-engine:v2.0.0-beta.2"
|
||||
},
|
||||
"resources": [
|
||||
{
|
||||
|
@ -55,7 +55,7 @@
|
||||
"dbName": "[parameters('postgresDatabaseName')]",
|
||||
"containerGroupName": "[concat(parameters('name'), '-container-group')]",
|
||||
"containerName": "hasura-graphql-engine",
|
||||
"containerImage": "hasura/graphql-engine:v2.0.0-beta.1"
|
||||
"containerImage": "hasura/graphql-engine:v2.0.0-beta.2"
|
||||
},
|
||||
"resources": [
|
||||
{
|
||||
|
@ -8,7 +8,7 @@ services:
|
||||
environment:
|
||||
POSTGRES_PASSWORD: postgrespassword
|
||||
graphql-engine:
|
||||
image: hasura/graphql-engine:v2.0.0-beta.1
|
||||
image: hasura/graphql-engine:v2.0.0-beta.2
|
||||
depends_on:
|
||||
- "postgres"
|
||||
restart: always
|
||||
|
@ -8,7 +8,7 @@ services:
|
||||
environment:
|
||||
POSTGRES_PASSWORD: postgrespassword
|
||||
graphql-engine:
|
||||
image: hasura/graphql-engine:v2.0.0-beta.1
|
||||
image: hasura/graphql-engine:v2.0.0-beta.2
|
||||
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.0-beta.1
|
||||
image: hasura/graphql-engine:v2.0.0-beta.2
|
||||
ports:
|
||||
- "8080:8080"
|
||||
depends_on:
|
||||
|
@ -8,7 +8,7 @@ services:
|
||||
environment:
|
||||
POSTGRES_PASSWORD: postgrespassword
|
||||
graphql-engine:
|
||||
image: hasura/graphql-engine:v2.0.0-beta.1
|
||||
image: hasura/graphql-engine:v2.0.0-beta.2
|
||||
ports:
|
||||
- "8080:8080"
|
||||
depends_on:
|
||||
|
@ -8,7 +8,7 @@ services:
|
||||
environment:
|
||||
POSTGRES_PASSWORD: postgrespassword
|
||||
graphql-engine:
|
||||
image: hasura/graphql-engine:v2.0.0-beta.1
|
||||
image: hasura/graphql-engine:v2.0.0-beta.2
|
||||
ports:
|
||||
- "8080:8080"
|
||||
depends_on:
|
||||
|
@ -8,7 +8,7 @@ services:
|
||||
environment:
|
||||
POSTGRES_PASSWORD: postgrespassword
|
||||
graphql-engine:
|
||||
image: hasura/graphql-engine:v2.0.0-beta.1
|
||||
image: hasura/graphql-engine:v2.0.0-beta.2
|
||||
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.0-beta.1
|
||||
hasura/graphql-engine:v2.0.0-beta.2
|
||||
|
@ -16,7 +16,7 @@ spec:
|
||||
spec:
|
||||
containers:
|
||||
- name: graphql-engine
|
||||
image: hasura/graphql-engine:v2.0.0-beta.1
|
||||
image: hasura/graphql-engine:v2.0.0-beta.2
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
readinessProbe:
|
||||
|
@ -18,7 +18,7 @@ spec:
|
||||
app: hasura
|
||||
spec:
|
||||
containers:
|
||||
- image: hasura/graphql-engine:v2.0.0-beta.1
|
||||
- image: hasura/graphql-engine:v2.0.0-beta.2
|
||||
imagePullPolicy: IfNotPresent
|
||||
name: hasura
|
||||
env:
|
||||
|
@ -46,3 +46,4 @@ v2.0.0-alpha.9 46
|
||||
v2.0.0-alpha.10 46
|
||||
v2.0.0-alpha.11 46
|
||||
v2.0.0-beta.1 46
|
||||
v2.0.0-beta.2 46
|
||||
|
Loading…
Reference in New Issue
Block a user