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

+1-1
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

+2-2
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

+2-2
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ services:
1818
PGADMIN_DEFAULT_EMAIL: [email protected]
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

+1-1
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:

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ services:
2222
- yugabyte-data:/var/lib/postgresql/data
2323

2424
graphql-engine:
25-
image: hasura/graphql-engine:v2.43.0
25+
image: hasura/graphql-engine:v2.46.0
2626
ports:
2727
- "8080:8080"
2828
depends_on:

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

+2-2
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
restart: always
@@ -30,7 +30,7 @@ services:
3030
data-connector-agent:
3131
condition: service_healthy
3232
data-connector-agent:
33-
image: hasura/graphql-data-connector:v2.43.0
33+
image: hasura/graphql-data-connector:v2.46.0
3434
restart: always
3535
ports:
3636
- 8081:8081

install-manifests/docker-run/docker-run.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ docker run -d -p 8080:8080 \
33
-e HASURA_GRAPHQL_DATABASE_URL=postgres://username:password@hostname:port/dbname \
44
-e HASURA_GRAPHQL_ENABLE_CONSOLE=true \
55
-e HASURA_GRAPHQL_DEV_MODE=true \
6-
hasura/graphql-engine:v2.43.0
6+
hasura/graphql-engine:v2.46.0

install-manifests/enterprise/athena/docker-compose.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ services:
1212
environment:
1313
POSTGRES_PASSWORD: postgrespassword
1414
hasura:
15-
image: hasura/graphql-engine:v2.43.0
15+
image: hasura/graphql-engine:v2.46.0
1616
restart: always
1717
ports:
1818
- 8080:8080
@@ -47,7 +47,7 @@ services:
4747
data-connector-agent:
4848
condition: service_healthy
4949
data-connector-agent:
50-
image: hasura/graphql-data-connector:v2.43.0
50+
image: hasura/graphql-data-connector:v2.46.0
5151
restart: always
5252
ports:
5353
- 8081:8081

install-manifests/enterprise/aws-ecs/hasura-fargate-task.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"containerDefinitions": [
55
{
66
"name": "hasura",
7-
"image": "hasura/graphql-engine:v2.43.0",
7+
"image": "hasura/graphql-engine:v2.46.0",
88
"portMappings": [
99
{
1010
"hostPort": 8080,

install-manifests/enterprise/clickhouse/docker-compose.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ services:
1212
environment:
1313
POSTGRES_PASSWORD: postgrespassword
1414
hasura:
15-
image: hasura/graphql-engine:v2.43.0
15+
image: hasura/graphql-engine:v2.46.0
1616
restart: always
1717
ports:
1818
- 8080:8080
@@ -47,7 +47,7 @@ services:
4747
data-connector-agent:
4848
condition: service_healthy
4949
data-connector-agent:
50-
image: hasura/clickhouse-data-connector:v2.43.0
50+
image: hasura/clickhouse-data-connector:v2.46.0
5151
restart: always
5252
ports:
5353
- 8080:8081

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ services:
1414
environment:
1515
POSTGRES_PASSWORD: postgrespassword
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
restart: always
@@ -46,7 +46,7 @@ services:
4646
data-connector-agent:
4747
condition: service_healthy
4848
data-connector-agent:
49-
image: hasura/graphql-data-connector:v2.43.0
49+
image: hasura/graphql-data-connector:v2.46.0
5050
restart: always
5151
ports:
5252
- 8081:8081

install-manifests/enterprise/kubernetes/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ spec:
1818
fsGroup: 1001
1919
runAsUser: 1001
2020
containers:
21-
- image: hasura/graphql-engine:v2.43.0
21+
- image: hasura/graphql-engine:v2.46.0
2222
imagePullPolicy: IfNotPresent
2323
name: hasura
2424
readinessProbe:

install-manifests/enterprise/mariadb/docker-compose.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ services:
1212
environment:
1313
POSTGRES_PASSWORD: postgrespassword
1414
hasura:
15-
image: hasura/graphql-engine:v2.43.0
15+
image: hasura/graphql-engine:v2.46.0
1616
restart: always
1717
ports:
1818
- 8080:8080
@@ -47,7 +47,7 @@ services:
4747
data-connector-agent:
4848
condition: service_healthy
4949
data-connector-agent:
50-
image: hasura/graphql-data-connector:v2.43.0
50+
image: hasura/graphql-data-connector:v2.46.0
5151
restart: always
5252
ports:
5353
- 8081:8081

install-manifests/enterprise/mongodb/docker-compose.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ services:
2929
MONGO_INITDB_ROOT_USERNAME: mongouser
3030
MONGO_INITDB_ROOT_PASSWORD: mongopassword
3131
hasura:
32-
image: hasura/graphql-engine:v2.43.0
32+
image: hasura/graphql-engine:v2.46.0
3333
restart: always
3434
ports:
3535
- 8080:8080
@@ -59,7 +59,7 @@ services:
5959
postgres:
6060
condition: service_healthy
6161
mongo-data-connector:
62-
image: hasura/mongo-data-connector:v2.43.0
62+
image: hasura/mongo-data-connector:v2.46.0
6363
ports:
6464
- 3000:3000
6565
volumes:

install-manifests/enterprise/mysql/docker-compose.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ services:
1212
environment:
1313
POSTGRES_PASSWORD: postgrespassword
1414
hasura:
15-
image: hasura/graphql-engine:v2.43.0
15+
image: hasura/graphql-engine:v2.46.0
1616
restart: always
1717
ports:
1818
- 8080:8080
@@ -47,7 +47,7 @@ services:
4747
data-connector-agent:
4848
condition: service_healthy
4949
data-connector-agent:
50-
image: hasura/graphql-data-connector:v2.43.0
50+
image: hasura/graphql-data-connector:v2.46.0
5151
restart: always
5252
ports:
5353
- 8081:8081

install-manifests/enterprise/oracle/docker-compose.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ services:
1212
environment:
1313
POSTGRES_PASSWORD: postgrespassword
1414
hasura:
15-
image: hasura/graphql-engine:v2.43.0
15+
image: hasura/graphql-engine:v2.46.0
1616
restart: always
1717
ports:
1818
- 8080:8080
@@ -47,7 +47,7 @@ services:
4747
data-connector-agent:
4848
condition: service_healthy
4949
data-connector-agent:
50-
image: hasura/graphql-data-connector:v2.43.0
50+
image: hasura/graphql-data-connector:v2.46.0
5151
restart: always
5252
ports:
5353
- 8081:8081

install-manifests/enterprise/redshift/docker-compose.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ services:
1212
environment:
1313
POSTGRES_PASSWORD: postgrespassword
1414
hasura:
15-
image: hasura/graphql-engine:v2.43.0
15+
image: hasura/graphql-engine:v2.46.0
1616
restart: always
1717
ports:
1818
- 8080:8080
@@ -47,7 +47,7 @@ services:
4747
data-connector-agent:
4848
condition: service_healthy
4949
data-connector-agent:
50-
image: hasura/graphql-data-connector:v2.43.0
50+
image: hasura/graphql-data-connector:v2.46.0
5151
restart: always
5252
ports:
5353
- 8081:8081

install-manifests/enterprise/snowflake/docker-compose.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ services:
1212
environment:
1313
POSTGRES_PASSWORD: postgrespassword
1414
hasura:
15-
image: hasura/graphql-engine:v2.43.0
15+
image: hasura/graphql-engine:v2.46.0
1616
restart: always
1717
ports:
1818
- 8080:8080
@@ -47,7 +47,7 @@ services:
4747
data-connector-agent:
4848
condition: service_healthy
4949
data-connector-agent:
50-
image: hasura/graphql-data-connector:v2.43.0
50+
image: hasura/graphql-data-connector:v2.46.0
5151
restart: always
5252
ports:
5353
- 8081:8081

install-manifests/google-cloud-k8s-sql/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ spec:
1616
spec:
1717
containers:
1818
- name: graphql-engine
19-
image: hasura/graphql-engine:v2.43.0
19+
image: hasura/graphql-engine:v2.46.0
2020
ports:
2121
- containerPort: 8080
2222
readinessProbe:

install-manifests/kubernetes/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ spec:
1818
app: hasura
1919
spec:
2020
containers:
21-
- image: hasura/graphql-engine:v2.43.0
21+
- image: hasura/graphql-engine:v2.46.0
2222
imagePullPolicy: IfNotPresent
2323
name: hasura
2424
env:

0 commit comments

Comments
 (0)