mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-13 19:33:55 +03:00
tag release v2.0.0-alpha.3 (#790)
GitOrigin-RevId: 7b61e8190d07ebe45ff96ee5209992dfc3c53b93
This commit is contained in:
parent
0c8dce35e4
commit
d1d8cc0a40
16
CHANGELOG.md
16
CHANGELOG.md
@ -4,6 +4,13 @@
|
|||||||
|
|
||||||
### Bug fixes and improvements
|
### 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 malformed JSON answer on empty tables
|
||||||
- server/mssql: fix runtime errors when selecting geography/geometry columns
|
- server/mssql: fix runtime errors when selecting geography/geometry columns
|
||||||
- server/mssql: supports connection pooling to sql server
|
- server/mssql: supports connection pooling to sql server
|
||||||
@ -12,13 +19,20 @@
|
|||||||
- build: fix the packaging of static console assets (fix #6610)
|
- build: fix the packaging of static console assets (fix #6610)
|
||||||
|
|
||||||
|
|
||||||
## v1.4.0-alpha.2
|
## v2.0.0-alpha.2
|
||||||
|
|
||||||
### MSSQL support
|
### MSSQL support
|
||||||
|
|
||||||
It's now possible to add a MSSQL server as a source. For now, only read-only queries and subscriptions are supported.
|
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.
|
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
|
### Inconsistent Metadata
|
||||||
|
|
||||||
Add `allow_inconsistent_metadata` option to `replace_metadata` API.
|
Add `allow_inconsistent_metadata` option to `replace_metadata` API.
|
||||||
|
@ -98,7 +98,7 @@
|
|||||||
"firewallRuleName": "allow-all-azure-firewall-rule",
|
"firewallRuleName": "allow-all-azure-firewall-rule",
|
||||||
"containerGroupName": "[concat(parameters('name'), '-container-group')]",
|
"containerGroupName": "[concat(parameters('name'), '-container-group')]",
|
||||||
"containerName": "hasura-graphql-engine",
|
"containerName": "hasura-graphql-engine",
|
||||||
"containerImage": "hasura/graphql-engine:v1.4.0-alpha.1"
|
"containerImage": "hasura/graphql-engine:v2.0.0-alpha.3"
|
||||||
},
|
},
|
||||||
"resources": [
|
"resources": [
|
||||||
{
|
{
|
||||||
|
@ -55,7 +55,7 @@
|
|||||||
"dbName": "[parameters('postgresDatabaseName')]",
|
"dbName": "[parameters('postgresDatabaseName')]",
|
||||||
"containerGroupName": "[concat(parameters('name'), '-container-group')]",
|
"containerGroupName": "[concat(parameters('name'), '-container-group')]",
|
||||||
"containerName": "hasura-graphql-engine",
|
"containerName": "hasura-graphql-engine",
|
||||||
"containerImage": "hasura/graphql-engine:v1.4.0-alpha.1"
|
"containerImage": "hasura/graphql-engine:v2.0.0-alpha.3"
|
||||||
},
|
},
|
||||||
"resources": [
|
"resources": [
|
||||||
{
|
{
|
||||||
|
@ -8,7 +8,7 @@ services:
|
|||||||
environment:
|
environment:
|
||||||
POSTGRES_PASSWORD: postgrespassword
|
POSTGRES_PASSWORD: postgrespassword
|
||||||
graphql-engine:
|
graphql-engine:
|
||||||
image: hasura/graphql-engine:v1.4.0-alpha.1
|
image: hasura/graphql-engine:v2.0.0-alpha.3
|
||||||
depends_on:
|
depends_on:
|
||||||
- "postgres"
|
- "postgres"
|
||||||
restart: always
|
restart: always
|
||||||
|
@ -8,7 +8,7 @@ services:
|
|||||||
environment:
|
environment:
|
||||||
POSTGRES_PASSWORD: postgrespassword
|
POSTGRES_PASSWORD: postgrespassword
|
||||||
graphql-engine:
|
graphql-engine:
|
||||||
image: hasura/graphql-engine:v2.0.0-alpha.2
|
image: hasura/graphql-engine:v2.0.0-alpha.3
|
||||||
ports:
|
ports:
|
||||||
- "8080:8080"
|
- "8080:8080"
|
||||||
depends_on:
|
depends_on:
|
||||||
|
@ -19,7 +19,7 @@ services:
|
|||||||
PGADMIN_DEFAULT_EMAIL: pgadmin@example.com
|
PGADMIN_DEFAULT_EMAIL: pgadmin@example.com
|
||||||
PGADMIN_DEFAULT_PASSWORD: admin
|
PGADMIN_DEFAULT_PASSWORD: admin
|
||||||
graphql-engine:
|
graphql-engine:
|
||||||
image: hasura/graphql-engine:v1.4.0-alpha.1
|
image: hasura/graphql-engine:v2.0.0-alpha.3
|
||||||
ports:
|
ports:
|
||||||
- "8080:8080"
|
- "8080:8080"
|
||||||
depends_on:
|
depends_on:
|
||||||
|
@ -8,7 +8,7 @@ services:
|
|||||||
environment:
|
environment:
|
||||||
POSTGRES_PASSWORD: postgrespassword
|
POSTGRES_PASSWORD: postgrespassword
|
||||||
graphql-engine:
|
graphql-engine:
|
||||||
image: hasura/graphql-engine:v1.4.0-alpha.1
|
image: hasura/graphql-engine:v2.0.0-alpha.3
|
||||||
ports:
|
ports:
|
||||||
- "8080:8080"
|
- "8080:8080"
|
||||||
depends_on:
|
depends_on:
|
||||||
|
@ -8,7 +8,7 @@ services:
|
|||||||
environment:
|
environment:
|
||||||
POSTGRES_PASSWORD: postgrespassword
|
POSTGRES_PASSWORD: postgrespassword
|
||||||
graphql-engine:
|
graphql-engine:
|
||||||
image: hasura/graphql-engine:v2.0.0-alpha.2
|
image: hasura/graphql-engine:v2.0.0-alpha.3
|
||||||
ports:
|
ports:
|
||||||
- "8080:8080"
|
- "8080:8080"
|
||||||
depends_on:
|
depends_on:
|
||||||
|
@ -8,7 +8,7 @@ services:
|
|||||||
environment:
|
environment:
|
||||||
POSTGRES_PASSWORD: postgrespassword
|
POSTGRES_PASSWORD: postgrespassword
|
||||||
graphql-engine:
|
graphql-engine:
|
||||||
image: hasura/graphql-engine:v1.4.0-alpha.1
|
image: hasura/graphql-engine:v2.0.0-alpha.3
|
||||||
ports:
|
ports:
|
||||||
- "8080:8080"
|
- "8080:8080"
|
||||||
depends_on:
|
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_DATABASE_URL=postgres://username:password@hostname:port/dbname \
|
||||||
-e HASURA_GRAPHQL_ENABLE_CONSOLE=true \
|
-e HASURA_GRAPHQL_ENABLE_CONSOLE=true \
|
||||||
-e HASURA_GRAPHQL_DEV_MODE=true \
|
-e HASURA_GRAPHQL_DEV_MODE=true \
|
||||||
hasura/graphql-engine:v1.4.0-alpha.1
|
hasura/graphql-engine:v2.0.0-alpha.3
|
||||||
|
@ -16,7 +16,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: graphql-engine
|
- name: graphql-engine
|
||||||
image: hasura/graphql-engine:v1.4.0-alpha.1
|
image: hasura/graphql-engine:v2.0.0-alpha.3
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 8080
|
- containerPort: 8080
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
|
@ -18,7 +18,7 @@ spec:
|
|||||||
app: hasura
|
app: hasura
|
||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- image: hasura/graphql-engine:v1.4.0-alpha.1
|
- image: hasura/graphql-engine:v2.0.0-alpha.3
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
name: hasura
|
name: hasura
|
||||||
env:
|
env:
|
||||||
|
@ -33,3 +33,7 @@ v1.3.1 37
|
|||||||
v1.3.2 37
|
v1.3.2 37
|
||||||
v1.3.3 40
|
v1.3.3 40
|
||||||
v1.4.0-alpha.1 43
|
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
|
||||||
|
Loading…
Reference in New Issue
Block a user