Skip to content

Commit d89f575

Browse files
rikinskhasura-bot
authored andcommitted
ci: update latest stable release as v2.46.0
PR-URL: hasura/graphql-engine-mono#11178 GitOrigin-RevId: 3415198a606269cde78bdadbdb5e79f56ab3d98a
1 parent 06821e5 commit d89f575

File tree

26 files changed

+38
-38
lines changed

26 files changed

+38
-38
lines changed

cli/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
You can also install a specific version of the CLI by providing the `VERSION` variable:
2121
```bash
22-
curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | VERSION=v2.43.0 bash
22+
curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | VERSION=v2.46.0 bash
2323
```
2424

2525
- Windows

cli/get.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ log "Selecting version..."
4444
# version=${VERSION:-`echo $(curl -s -f -H 'Content-Type: application/json' \
4545
# https://releases.hasura.io/graphql-engine?agent=cli-get.sh) | sed -n -e "s/^.*\"$release\":\"\([^\",}]*\)\".*$/\1/p"`}
4646

47-
version=${VERSION:-v2.43.0}
47+
version=${VERSION:-v2.46.0}
4848

4949
if [ ! $version ]; then
5050
log "${YELLOW}"
@@ -62,7 +62,7 @@ log "Selected version: $version"
6262

6363
log "${YELLOW}"
6464
log NOTE: Install a specific version of the CLI by using VERSION variable
65-
log 'curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | VERSION=v2.43.0 bash'
65+
log 'curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | VERSION=v2.46.0 bash'
6666
log "${NC}"
6767

6868
# check for existing hasura installation

docs/docs/hasura-cli/install-hasura-cli.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | INSTALL
4646
You can also install a specific version of the CLI by providing the `VERSION` variable:
4747

4848
```bash
49-
curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | VERSION=v2.43.0 bash
49+
curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | VERSION=v2.46.0 bash
5050
```
5151

5252
</TabItem>
@@ -71,7 +71,7 @@ curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | INSTALL
7171
You can also install a specific version of the CLI by providing the `VERSION` variable:
7272

7373
```bash
74-
curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | VERSION=v2.43.0 bash
74+
curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | VERSION=v2.46.0 bash
7575
```
7676

7777
</TabItem>

install-manifests/azure-container-with-pg/azuredeploy.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
"firewallRuleName": "allow-all-azure-firewall-rule",
9999
"containerGroupName": "[concat(parameters('name'), '-container-group')]",
100100
"containerName": "hasura-graphql-engine",
101-
"containerImage": "hasura/graphql-engine:v2.43.0"
101+
"containerImage": "hasura/graphql-engine:v2.46.0"
102102
},
103103
"resources": [
104104
{

install-manifests/azure-container/azuredeploy.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
"dbName": "[parameters('postgresDatabaseName')]",
5656
"containerGroupName": "[concat(parameters('name'), '-container-group')]",
5757
"containerName": "hasura-graphql-engine",
58-
"containerImage": "hasura/graphql-engine:v2.43.0"
58+
"containerImage": "hasura/graphql-engine:v2.46.0"
5959
},
6060
"resources": [
6161
{

install-manifests/docker-compose-cockroach/docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ services:
2626
- "${PWD}/cockroach-data:/cockroach/cockroach-data"
2727

2828
graphql-engine:
29-
image: hasura/graphql-engine:v2.43.0
29+
image: hasura/graphql-engine:v2.46.0
3030
ports:
3131
- "8080:8080"
3232
depends_on:

install-manifests/docker-compose-https/docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ services:
77
environment:
88
POSTGRES_PASSWORD: postgrespassword
99
graphql-engine:
10-
image: hasura/graphql-engine:v2.43.0
10+
image: hasura/graphql-engine:v2.46.0
1111
depends_on:
1212
- "postgres"
1313
restart: always

install-manifests/docker-compose-ms-sql-server/docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ services:
1414
volumes:
1515
- mssql_data:/var/opt/mssql
1616
graphql-engine:
17-
image: hasura/graphql-engine:v2.43.0
17+
image: hasura/graphql-engine:v2.46.0
1818
ports:
1919
- "8080:8080"
2020
depends_on:

install-manifests/docker-compose-pgadmin/docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ services:
1818
PGADMIN_DEFAULT_EMAIL: pgadmin@example.com
1919
PGADMIN_DEFAULT_PASSWORD: admin
2020
graphql-engine:
21-
image: hasura/graphql-engine:v2.43.0
21+
image: hasura/graphql-engine:v2.46.0
2222
ports:
2323
- "8080:8080"
2424
depends_on:

install-manifests/docker-compose-postgis/docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ services:
77
environment:
88
POSTGRES_PASSWORD: postgrespassword
99
graphql-engine:
10-
image: hasura/graphql-engine:v2.43.0
10+
image: hasura/graphql-engine:v2.46.0
1111
ports:
1212
- "8080:8080"
1313
depends_on:

0 commit comments

Comments
 (0)