tag release v2.0.0-alpha.3 (#790)

GitOrigin-RevId: 7b61e8190d07ebe45ff96ee5209992dfc3c53b93
This commit is contained in:
Tirumarai Selvan 2021-03-04 19:59:27 +05:30 committed by hasura-bot
parent 0c8dce35e4
commit d1d8cc0a40
13 changed files with 30 additions and 12 deletions

View File

@ -4,6 +4,13 @@
### Bug fixes and improvements
(Add entries here in the order of: server, console, cli, docs, others)
## v2.0.0-alpha.3
### Bug fixes and improvements
- server/mssql: fix malformed JSON answer on empty tables
- server/mssql: fix runtime errors when selecting geography/geometry columns
- server/mssql: supports connection pooling to sql server
@ -12,13 +19,20 @@
- build: fix the packaging of static console assets (fix #6610)
## v1.4.0-alpha.2
## v2.0.0-alpha.2
### MSSQL support
It's now possible to add a MSSQL server as a source. For now, only read-only queries and subscriptions are supported.
See the documentation at `graphql/core/databases/ms-sql-server` for more information.
## v2.0.0-alpha.1
Bunch of bug fixes and refactor for generalized backends: https://github.com/hasura/graphql-engine/compare/v1.4.0-alpha.2...v2.0.0-alpha.1
## v1.4.0-alpha.2
### Inconsistent Metadata
Add `allow_inconsistent_metadata` option to `replace_metadata` API.

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -33,3 +33,7 @@ v1.3.1 37
v1.3.2 37
v1.3.3 40
v1.4.0-alpha.1 43
v1.4.0-alpha.2 44
v2.0.0-alpha.1 44
v2.0.0-alpha.2 44
v2.0.0-alpha.3 44