tag release v1.3.0-beta.4 (#5281)

This commit is contained in:
Aravind 2020-07-04 10:15:37 +05:30 committed by GitHub
parent b94278e1c6
commit 7ae3e55a88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
13 changed files with 19 additions and 11 deletions

View File

@ -6,6 +6,13 @@
(Add entries here in the order of: server, console, cli, docs, others)
## `v1.3.0-beta.4`
### Bug fixes and improvements
(Add entries here in the order of: server, console, cli, docs, others)
- server: change relay endpoint to `/v1beta1/relay` (#5257)
- server: relay connection fields are exposed regardless of allow aggregation permission (fix #5218) (#5257)
- server: add new `--conn-lifetime` and `HASURA_GRAPHQL_PG_CONN_LIFETIME` options for expiring connections after some amount of active time (#5087)

View File

@ -97,7 +97,7 @@
"firewallRuleName": "allow-all-azure-firewall-rule",
"containerGroupName": "[concat(parameters('name'), '-container-group')]",
"containerName": "hasura-graphql-engine",
"containerImage": "hasura/graphql-engine:v1.3.0-beta.3"
"containerImage": "hasura/graphql-engine:v1.3.0-beta.4"
},
"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.3.0-beta.3"
"containerImage": "hasura/graphql-engine:v1.3.0-beta.4"
},
"resources": [
{

View File

@ -8,7 +8,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
graphql-engine:
image: hasura/graphql-engine:v1.3.0-beta.3
image: hasura/graphql-engine:v1.3.0-beta.4
depends_on:
- "postgres"
restart: always

View File

@ -19,7 +19,7 @@ services:
PGADMIN_DEFAULT_EMAIL: pgadmin@example.com
PGADMIN_DEFAULT_PASSWORD: admin
graphql-engine:
image: hasura/graphql-engine:v1.3.0-beta.3
image: hasura/graphql-engine:v1.3.0-beta.4
ports:
- "8080:8080"
depends_on:

View File

@ -8,7 +8,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
graphql-engine:
image: hasura/graphql-engine:v1.3.0-beta.3
image: hasura/graphql-engine:v1.3.0-beta.4
ports:
- "8080:8080"
depends_on:

View File

@ -8,7 +8,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
graphql-engine:
image: hasura/graphql-engine:v1.3.0-beta.3
image: hasura/graphql-engine:v1.3.0-beta.4
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.3.0-beta.3
hasura/graphql-engine:v1.3.0-beta.4

View File

@ -16,7 +16,7 @@ spec:
spec:
containers:
- name: graphql-engine
image: hasura/graphql-engine:v1.3.0-beta.3
image: hasura/graphql-engine:v1.3.0-beta.4
ports:
- containerPort: 8080
readinessProbe:

View File

@ -18,7 +18,7 @@ spec:
app: hasura
spec:
containers:
- image: hasura/graphql-engine:v1.3.0-beta.3
- image: hasura/graphql-engine:v1.3.0-beta.4
imagePullPolicy: IfNotPresent
name: hasura
env:

View File

@ -1,4 +1,4 @@
FROM hasura/graphql-engine:v1.3.0-beta.3
FROM hasura/graphql-engine:v1.3.0-beta.4
# set an env var to let the cli know that
# it is running in server environment

View File

@ -2,7 +2,7 @@ FROM hasura/haskell-docker-packager:20190731 as packager
WORKDIR /tmp
RUN apt-get update && apt-get download libstdc++6
FROM hasura/graphql-engine:v1.3.0-beta.3
FROM hasura/graphql-engine:v1.3.0-beta.4
# install libstdc++6 from .deb file
COPY --from=packager /tmp/libstdc++6* .

View File

@ -26,3 +26,4 @@ v1.2.2 34
v1.3.0-beta.1 36
v1.3.0-beta.2 36
v1.3.0-beta.3 36
v1.3.0-beta.4 36