mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 01:12:56 +03:00
tag release v2.0.0-alpha.4
GitOrigin-RevId: fdde115ba4442795494566f2d6a2aacbf50f0632
This commit is contained in:
parent
89e26d3e9f
commit
692e374c94
@ -6,6 +6,11 @@
|
|||||||
|
|
||||||
(Add entries here in the order of: server, console, cli, docs, others)
|
(Add entries here in the order of: server, console, cli, docs, others)
|
||||||
|
|
||||||
|
|
||||||
|
## v2.0.0-alpha.4
|
||||||
|
|
||||||
|
### Bug fixes and improvements
|
||||||
|
|
||||||
- server/mssql: support tracking and querying from views
|
- server/mssql: support tracking and querying from views
|
||||||
- server: inherited roles for PG queries and subscription
|
- server: inherited roles for PG queries and subscription
|
||||||
- server: fix issue when a remote relationship's joining field had a custom GraphQL name defined (fix #6626)
|
- server: fix issue when a remote relationship's joining field had a custom GraphQL name defined (fix #6626)
|
||||||
|
@ -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:v2.0.0-alpha.3"
|
"containerImage": "hasura/graphql-engine:v2.0.0-alpha.4"
|
||||||
},
|
},
|
||||||
"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:v2.0.0-alpha.3"
|
"containerImage": "hasura/graphql-engine:v2.0.0-alpha.4"
|
||||||
},
|
},
|
||||||
"resources": [
|
"resources": [
|
||||||
{
|
{
|
||||||
|
@ -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.3
|
image: hasura/graphql-engine:v2.0.0-alpha.4
|
||||||
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.3
|
image: hasura/graphql-engine:v2.0.0-alpha.4
|
||||||
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:v2.0.0-alpha.3
|
image: hasura/graphql-engine:v2.0.0-alpha.4
|
||||||
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.3
|
image: hasura/graphql-engine:v2.0.0-alpha.4
|
||||||
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.3
|
image: hasura/graphql-engine:v2.0.0-alpha.4
|
||||||
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.3
|
image: hasura/graphql-engine:v2.0.0-alpha.4
|
||||||
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:v2.0.0-alpha.3
|
hasura/graphql-engine:v2.0.0-alpha.4
|
||||||
|
@ -16,7 +16,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: graphql-engine
|
- name: graphql-engine
|
||||||
image: hasura/graphql-engine:v2.0.0-alpha.3
|
image: hasura/graphql-engine:v2.0.0-alpha.4
|
||||||
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:v2.0.0-alpha.3
|
- image: hasura/graphql-engine:v2.0.0-alpha.4
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
name: hasura
|
name: hasura
|
||||||
env:
|
env:
|
||||||
|
@ -37,3 +37,4 @@ v1.4.0-alpha.2 44
|
|||||||
v2.0.0-alpha.1 44
|
v2.0.0-alpha.1 44
|
||||||
v2.0.0-alpha.2 44
|
v2.0.0-alpha.2 44
|
||||||
v2.0.0-alpha.3 44
|
v2.0.0-alpha.3 44
|
||||||
|
v2.0.0-alpha.4 44
|
||||||
|
Loading…
Reference in New Issue
Block a user