tag release v2.0.7 (#2118)

GitOrigin-RevId: b86611a3393d2b8008b09c1d833d5b2c43f72aaf
This commit is contained in:
Vishnu Bharathi 2021-08-17 18:36:45 +05:30 committed by hasura-bot
parent 5c99cebc28
commit cf6f3edc1f
16 changed files with 19 additions and 16 deletions

View File

@ -5,6 +5,8 @@
(Add entries below in the order of server, console, cli, docs, others)
## v2.0.7
- server: fix v2 -> v1 downgrade bug when cron triggers exist
- server: add index on the `event_id` column of the `hdb_cron_event_invocation_logs` table
- server: fix GraphQL type for remote relationship field (close #7284)

View File

@ -19,7 +19,7 @@
You can also install a specific version of the CLI by providing the `VERSION` variable:
```bash
curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | VERSION=v2.0.6 bash
curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | VERSION=v2.0.7 bash
```
- Windows

View File

@ -44,7 +44,7 @@ log "Selecting version..."
# version=${VERSION:-`echo $(curl -s -f -H 'Content-Type: application/json' \
# https://releases.hasura.io/graphql-engine?agent=cli-get.sh) | sed -n -e "s/^.*\"$release\":\"\([^\",}]*\)\".*$/\1/p"`}
version=${VERSION:-v2.0.5}
version=${VERSION:-v2.0.6}
if [ ! $version ]; then
log "${YELLOW}"
@ -62,7 +62,7 @@ log "Selected version: $version"
log "${YELLOW}"
log NOTE: Install a specific version of the CLI by using VERSION variable
log 'curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | VERSION=v2.0.5 bash'
log 'curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | VERSION=v2.0.6 bash'
log "${NC}"
# check for existing hasura installation

View File

@ -40,7 +40,7 @@ Install a binary globally
.. code-block:: bash
curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | VERSION=v2.0.6 bash
curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | VERSION=v2.0.7 bash
.. tab:: Mac
@ -64,7 +64,7 @@ Install a binary globally
.. code-block:: bash
curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | VERSION=v2.0.6 bash
curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | VERSION=v2.0.7 bash
.. tab:: Windows

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:v2.0.6"
"containerImage": "hasura/graphql-engine:v2.0.7"
},
"resources": [
{

View File

@ -55,7 +55,7 @@
"dbName": "[parameters('postgresDatabaseName')]",
"containerGroupName": "[concat(parameters('name'), '-container-group')]",
"containerName": "hasura-graphql-engine",
"containerImage": "hasura/graphql-engine:v2.0.6"
"containerImage": "hasura/graphql-engine:v2.0.7"
},
"resources": [
{

View File

@ -8,7 +8,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
graphql-engine:
image: hasura/graphql-engine:v2.0.6
image: hasura/graphql-engine:v2.0.7
depends_on:
- "postgres"
restart: always

View File

@ -8,7 +8,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
graphql-engine:
image: hasura/graphql-engine:v2.0.6
image: hasura/graphql-engine:v2.0.7
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:v2.0.6
image: hasura/graphql-engine:v2.0.7
ports:
- "8080:8080"
depends_on:

View File

@ -8,7 +8,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
graphql-engine:
image: hasura/graphql-engine:v2.0.6
image: hasura/graphql-engine:v2.0.7
ports:
- "8080:8080"
depends_on:

View File

@ -8,7 +8,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
graphql-engine:
image: hasura/graphql-engine:v2.0.6
image: hasura/graphql-engine:v2.0.7
ports:
- "8080:8080"
depends_on:

View File

@ -8,7 +8,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
graphql-engine:
image: hasura/graphql-engine:v2.0.6
image: hasura/graphql-engine:v2.0.7
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:v2.0.6
hasura/graphql-engine:v2.0.7

View File

@ -16,7 +16,7 @@ spec:
spec:
containers:
- name: graphql-engine
image: hasura/graphql-engine:v2.0.6
image: hasura/graphql-engine:v2.0.7
ports:
- containerPort: 8080
readinessProbe:

View File

@ -18,7 +18,7 @@ spec:
app: hasura
spec:
containers:
- image: hasura/graphql-engine:v2.0.6
- image: hasura/graphql-engine:v2.0.7
imagePullPolicy: IfNotPresent
name: hasura
env:

View File

@ -54,3 +54,4 @@ v2.0.3 46
v2.0.4 46
v2.0.5 46
v2.0.6 46
v2.0.7 47