Skip to content

Commit

Permalink
ci: update latest stable release as v2.43.0
Browse files Browse the repository at this point in the history
PR-URL: hasura/graphql-engine-mono#11020
GitOrigin-RevId: 62b568f319ee0c8155fb40b7f707a0d6818fe8a3
  • Loading branch information
rikinsk authored and hasura-bot committed Sep 4, 2024
1 parent 7a31d2d commit 2c89ae4
Show file tree
Hide file tree
Showing 26 changed files with 38 additions and 38 deletions.
2 changes: 1 addition & 1 deletion cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.42.0 bash
curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | VERSION=v2.43.0 bash
```

- Windows
Expand Down
4 changes: 2 additions & 2 deletions cli/get.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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.42.0}
version=${VERSION:-v2.43.0}

if [ ! $version ]; then
log "${YELLOW}"
Expand All @@ -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.42.0 bash'
log 'curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | VERSION=v2.43.0 bash'
log "${NC}"

# check for existing hasura installation
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/hasura-cli/install-hasura-cli.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | INSTALL
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.42.0 bash
curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | VERSION=v2.43.0 bash
```

</TabItem>
Expand All @@ -71,7 +71,7 @@ curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | INSTALL
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.42.0 bash
curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | VERSION=v2.43.0 bash
```

</TabItem>
Expand Down
2 changes: 1 addition & 1 deletion install-manifests/azure-container-with-pg/azuredeploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -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.42.0"
"containerImage": "hasura/graphql-engine:v2.43.0"
},
"resources": [
{
Expand Down
2 changes: 1 addition & 1 deletion install-manifests/azure-container/azuredeploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
"dbName": "[parameters('postgresDatabaseName')]",
"containerGroupName": "[concat(parameters('name'), '-container-group')]",
"containerName": "hasura-graphql-engine",
"containerImage": "hasura/graphql-engine:v2.42.0"
"containerImage": "hasura/graphql-engine:v2.43.0"
},
"resources": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ services:
- "${PWD}/cockroach-data:/cockroach/cockroach-data"

graphql-engine:
image: hasura/graphql-engine:v2.42.0
image: hasura/graphql-engine:v2.43.0
ports:
- "8080:8080"
depends_on:
Expand Down
2 changes: 1 addition & 1 deletion install-manifests/docker-compose-https/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
graphql-engine:
image: hasura/graphql-engine:v2.42.0
image: hasura/graphql-engine:v2.43.0
depends_on:
- "postgres"
restart: always
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ services:
volumes:
- mssql_data:/var/opt/mssql
graphql-engine:
image: hasura/graphql-engine:v2.42.0
image: hasura/graphql-engine:v2.43.0
ports:
- "8080:8080"
depends_on:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ services:
PGADMIN_DEFAULT_EMAIL: [email protected]
PGADMIN_DEFAULT_PASSWORD: admin
graphql-engine:
image: hasura/graphql-engine:v2.42.0
image: hasura/graphql-engine:v2.43.0
ports:
- "8080:8080"
depends_on:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
graphql-engine:
image: hasura/graphql-engine:v2.42.0
image: hasura/graphql-engine:v2.43.0
ports:
- "8080:8080"
depends_on:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ services:
- yugabyte-data:/var/lib/postgresql/data

graphql-engine:
image: hasura/graphql-engine:v2.42.0
image: hasura/graphql-engine:v2.43.0
ports:
- "8080:8080"
depends_on:
Expand Down
4 changes: 2 additions & 2 deletions install-manifests/docker-compose/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
graphql-engine:
image: hasura/graphql-engine:v2.42.0
image: hasura/graphql-engine:v2.43.0
ports:
- "8080:8080"
restart: always
Expand All @@ -30,7 +30,7 @@ services:
data-connector-agent:
condition: service_healthy
data-connector-agent:
image: hasura/graphql-data-connector:v2.42.0
image: hasura/graphql-data-connector:v2.43.0
restart: always
ports:
- 8081:8081
Expand Down
2 changes: 1 addition & 1 deletion install-manifests/docker-run/docker-run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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.42.0
hasura/graphql-engine:v2.43.0
4 changes: 2 additions & 2 deletions install-manifests/enterprise/athena/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
hasura:
image: hasura/graphql-engine:v2.42.0
image: hasura/graphql-engine:v2.43.0
restart: always
ports:
- 8080:8080
Expand Down Expand Up @@ -47,7 +47,7 @@ services:
data-connector-agent:
condition: service_healthy
data-connector-agent:
image: hasura/graphql-data-connector:v2.42.0
image: hasura/graphql-data-connector:v2.43.0
restart: always
ports:
- 8081:8081
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"containerDefinitions": [
{
"name": "hasura",
"image": "hasura/graphql-engine:v2.42.0",
"image": "hasura/graphql-engine:v2.43.0",
"portMappings": [
{
"hostPort": 8080,
Expand Down
4 changes: 2 additions & 2 deletions install-manifests/enterprise/clickhouse/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
hasura:
image: hasura/graphql-engine:v2.42.0
image: hasura/graphql-engine:v2.43.0
restart: always
ports:
- 8080:8080
Expand Down Expand Up @@ -47,7 +47,7 @@ services:
data-connector-agent:
condition: service_healthy
data-connector-agent:
image: hasura/clickhouse-data-connector:v2.42.0
image: hasura/clickhouse-data-connector:v2.43.0
restart: always
ports:
- 8080:8081
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
graphql-engine:
image: hasura/graphql-engine:v2.42.0
image: hasura/graphql-engine:v2.43.0
ports:
- "8080:8080"
restart: always
Expand Down Expand Up @@ -46,7 +46,7 @@ services:
data-connector-agent:
condition: service_healthy
data-connector-agent:
image: hasura/graphql-data-connector:v2.42.0
image: hasura/graphql-data-connector:v2.43.0
restart: always
ports:
- 8081:8081
Expand Down
2 changes: 1 addition & 1 deletion install-manifests/enterprise/kubernetes/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
fsGroup: 1001
runAsUser: 1001
containers:
- image: hasura/graphql-engine:v2.42.0
- image: hasura/graphql-engine:v2.43.0
imagePullPolicy: IfNotPresent
name: hasura
readinessProbe:
Expand Down
4 changes: 2 additions & 2 deletions install-manifests/enterprise/mariadb/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
hasura:
image: hasura/graphql-engine:v2.42.0
image: hasura/graphql-engine:v2.43.0
restart: always
ports:
- 8080:8080
Expand Down Expand Up @@ -47,7 +47,7 @@ services:
data-connector-agent:
condition: service_healthy
data-connector-agent:
image: hasura/graphql-data-connector:v2.42.0
image: hasura/graphql-data-connector:v2.43.0
restart: always
ports:
- 8081:8081
Expand Down
4 changes: 2 additions & 2 deletions install-manifests/enterprise/mongodb/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ services:
MONGO_INITDB_ROOT_USERNAME: mongouser
MONGO_INITDB_ROOT_PASSWORD: mongopassword
hasura:
image: hasura/graphql-engine:v2.42.0
image: hasura/graphql-engine:v2.43.0
restart: always
ports:
- 8080:8080
Expand Down Expand Up @@ -59,7 +59,7 @@ services:
postgres:
condition: service_healthy
mongo-data-connector:
image: hasura/mongo-data-connector:v2.42.0
image: hasura/mongo-data-connector:v2.43.0
ports:
- 3000:3000
volumes:
Expand Down
4 changes: 2 additions & 2 deletions install-manifests/enterprise/mysql/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
hasura:
image: hasura/graphql-engine:v2.42.0
image: hasura/graphql-engine:v2.43.0
restart: always
ports:
- 8080:8080
Expand Down Expand Up @@ -47,7 +47,7 @@ services:
data-connector-agent:
condition: service_healthy
data-connector-agent:
image: hasura/graphql-data-connector:v2.42.0
image: hasura/graphql-data-connector:v2.43.0
restart: always
ports:
- 8081:8081
Expand Down
4 changes: 2 additions & 2 deletions install-manifests/enterprise/oracle/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
hasura:
image: hasura/graphql-engine:v2.42.0
image: hasura/graphql-engine:v2.43.0
restart: always
ports:
- 8080:8080
Expand Down Expand Up @@ -47,7 +47,7 @@ services:
data-connector-agent:
condition: service_healthy
data-connector-agent:
image: hasura/graphql-data-connector:v2.42.0
image: hasura/graphql-data-connector:v2.43.0
restart: always
ports:
- 8081:8081
Expand Down
4 changes: 2 additions & 2 deletions install-manifests/enterprise/redshift/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
hasura:
image: hasura/graphql-engine:v2.42.0
image: hasura/graphql-engine:v2.43.0
restart: always
ports:
- 8080:8080
Expand Down Expand Up @@ -47,7 +47,7 @@ services:
data-connector-agent:
condition: service_healthy
data-connector-agent:
image: hasura/graphql-data-connector:v2.42.0
image: hasura/graphql-data-connector:v2.43.0
restart: always
ports:
- 8081:8081
Expand Down
4 changes: 2 additions & 2 deletions install-manifests/enterprise/snowflake/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ services:
environment:
POSTGRES_PASSWORD: postgrespassword
hasura:
image: hasura/graphql-engine:v2.42.0
image: hasura/graphql-engine:v2.43.0
restart: always
ports:
- 8080:8080
Expand Down Expand Up @@ -47,7 +47,7 @@ services:
data-connector-agent:
condition: service_healthy
data-connector-agent:
image: hasura/graphql-data-connector:v2.42.0
image: hasura/graphql-data-connector:v2.43.0
restart: always
ports:
- 8081:8081
Expand Down
2 changes: 1 addition & 1 deletion install-manifests/google-cloud-k8s-sql/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
spec:
containers:
- name: graphql-engine
image: hasura/graphql-engine:v2.42.0
image: hasura/graphql-engine:v2.43.0
ports:
- containerPort: 8080
readinessProbe:
Expand Down
2 changes: 1 addition & 1 deletion install-manifests/kubernetes/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
app: hasura
spec:
containers:
- image: hasura/graphql-engine:v2.42.0
- image: hasura/graphql-engine:v2.43.0
imagePullPolicy: IfNotPresent
name: hasura
env:
Expand Down

0 comments on commit 2c89ae4

Please sign in to comment.