mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-14 08:02:15 +03:00
tag release v2.0.5
GitOrigin-RevId: 8c98e9dba9fa655b5d7503211a5d3f42f641cef5
This commit is contained in:
parent
cd957fb5ea
commit
553aecb5e5
@ -3,14 +3,13 @@
|
||||
## Next release
|
||||
(Add entries below in the order of server, console, cli, docs, others)
|
||||
|
||||
## v2.0.5
|
||||
|
||||
- server: prevent invalid collisions in remote variable cache key (close #7170)
|
||||
- server: preserve unchanged cron triggers in `replace_metadata` API
|
||||
- server: fix inherited roles bug where mutations were not accessible when inherited roles was enabled
|
||||
- server: reintroduce the unique name constraint in allowed lists
|
||||
- server: fix http-log bug where batches with only one request emitted the parameterised query hash as a string instead of in a singleton array
|
||||
- console: add template gallery
|
||||
- server: subscriptions now validate that all session variables are properly set (#7111)
|
||||
- console: add template gallery
|
||||
- cli-migrations-v2: fix database url showing up in metadata (#7319)
|
||||
|
||||
## v2.0.4
|
||||
@ -23,6 +22,7 @@
|
||||
- server: Relax the unique operation name constraint when adding a query to a query collection
|
||||
- server: officially deprecate query plan caching, which had already been disabled for a long time
|
||||
- server/bigquery: Fix issues related to adding and querying from non-US datasets (closes [6937](https://github.com/hasura/graphql-engine/issues/6937)).
|
||||
- console: add template gallery
|
||||
- console: add pagination on the Raw SQL results page
|
||||
- console: fix issues with replacing invalid graphql identifiers in table and column names
|
||||
- console: show error message on inconsistent objects table
|
||||
|
@ -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.3 bash
|
||||
curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | VERSION=v2.0.5 bash
|
||||
```
|
||||
|
||||
- Windows
|
||||
|
@ -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.3}
|
||||
version=${VERSION:-v2.0.5}
|
||||
|
||||
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.3 bash'
|
||||
log 'curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | VERSION=v2.0.5 bash'
|
||||
log "${NC}"
|
||||
|
||||
# check for existing hasura installation
|
||||
|
@ -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.3 bash
|
||||
curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | VERSION=v2.0.5 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.3 bash
|
||||
curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | VERSION=v2.0.5 bash
|
||||
|
||||
.. tab:: Windows
|
||||
|
||||
|
@ -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.4"
|
||||
"containerImage": "hasura/graphql-engine:v2.0.5"
|
||||
},
|
||||
"resources": [
|
||||
{
|
||||
|
@ -55,7 +55,7 @@
|
||||
"dbName": "[parameters('postgresDatabaseName')]",
|
||||
"containerGroupName": "[concat(parameters('name'), '-container-group')]",
|
||||
"containerName": "hasura-graphql-engine",
|
||||
"containerImage": "hasura/graphql-engine:v2.0.4"
|
||||
"containerImage": "hasura/graphql-engine:v2.0.5"
|
||||
},
|
||||
"resources": [
|
||||
{
|
||||
|
@ -8,7 +8,7 @@ services:
|
||||
environment:
|
||||
POSTGRES_PASSWORD: postgrespassword
|
||||
graphql-engine:
|
||||
image: hasura/graphql-engine:v2.0.4
|
||||
image: hasura/graphql-engine:v2.0.5
|
||||
depends_on:
|
||||
- "postgres"
|
||||
restart: always
|
||||
|
@ -8,7 +8,7 @@ services:
|
||||
environment:
|
||||
POSTGRES_PASSWORD: postgrespassword
|
||||
graphql-engine:
|
||||
image: hasura/graphql-engine:v2.0.4
|
||||
image: hasura/graphql-engine:v2.0.5
|
||||
ports:
|
||||
- "8080:8080"
|
||||
depends_on:
|
||||
|
@ -19,7 +19,7 @@ services:
|
||||
PGADMIN_DEFAULT_EMAIL: pgadmin@example.com
|
||||
PGADMIN_DEFAULT_PASSWORD: admin
|
||||
graphql-engine:
|
||||
image: hasura/graphql-engine:v2.0.4
|
||||
image: hasura/graphql-engine:v2.0.5
|
||||
ports:
|
||||
- "8080:8080"
|
||||
depends_on:
|
||||
|
@ -8,7 +8,7 @@ services:
|
||||
environment:
|
||||
POSTGRES_PASSWORD: postgrespassword
|
||||
graphql-engine:
|
||||
image: hasura/graphql-engine:v2.0.4
|
||||
image: hasura/graphql-engine:v2.0.5
|
||||
ports:
|
||||
- "8080:8080"
|
||||
depends_on:
|
||||
|
@ -8,7 +8,7 @@ services:
|
||||
environment:
|
||||
POSTGRES_PASSWORD: postgrespassword
|
||||
graphql-engine:
|
||||
image: hasura/graphql-engine:v2.0.4
|
||||
image: hasura/graphql-engine:v2.0.5
|
||||
ports:
|
||||
- "8080:8080"
|
||||
depends_on:
|
||||
|
@ -8,7 +8,7 @@ services:
|
||||
environment:
|
||||
POSTGRES_PASSWORD: postgrespassword
|
||||
graphql-engine:
|
||||
image: hasura/graphql-engine:v2.0.4
|
||||
image: hasura/graphql-engine:v2.0.5
|
||||
ports:
|
||||
- "8080:8080"
|
||||
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_ENABLE_CONSOLE=true \
|
||||
-e HASURA_GRAPHQL_DEV_MODE=true \
|
||||
hasura/graphql-engine:v2.0.4
|
||||
hasura/graphql-engine:v2.0.5
|
||||
|
@ -16,7 +16,7 @@ spec:
|
||||
spec:
|
||||
containers:
|
||||
- name: graphql-engine
|
||||
image: hasura/graphql-engine:v2.0.4
|
||||
image: hasura/graphql-engine:v2.0.5
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
readinessProbe:
|
||||
|
@ -18,7 +18,7 @@ spec:
|
||||
app: hasura
|
||||
spec:
|
||||
containers:
|
||||
- image: hasura/graphql-engine:v2.0.4
|
||||
- image: hasura/graphql-engine:v2.0.5
|
||||
imagePullPolicy: IfNotPresent
|
||||
name: hasura
|
||||
env:
|
||||
|
@ -52,3 +52,4 @@ v2.0.1 46
|
||||
v2.0.2 46
|
||||
v2.0.3 46
|
||||
v2.0.4 46
|
||||
v2.0.5 46
|
||||
|
Loading…
Reference in New Issue
Block a user