Skip to content

Commit 3ed1f3c

Browse files
committed
tag release v1.3.0-beta.3
1 parent ed4949c commit 3ed1f3c

File tree

12 files changed

+12
-11
lines changed

12 files changed

+12
-11
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
"firewallRuleName": "allow-all-azure-firewall-rule",
9898
"containerGroupName": "[concat(parameters('name'), '-container-group')]",
9999
"containerName": "hasura-graphql-engine",
100-
"containerImage": "hasura/graphql-engine:v1.3.0-beta.2"
100+
"containerImage": "hasura/graphql-engine:v1.3.0-beta.3"
101101
},
102102
"resources": [
103103
{

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:v1.3.0-beta.2"
58+
"containerImage": "hasura/graphql-engine:v1.3.0-beta.3"
5959
},
6060
"resources": [
6161
{

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ services:
88
environment:
99
POSTGRES_PASSWORD: postgrespassword
1010
graphql-engine:
11-
image: hasura/graphql-engine:v1.3.0-beta.2
11+
image: hasura/graphql-engine:v1.3.0-beta.3
1212
depends_on:
1313
- "postgres"
1414
restart: always

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ services:
1919
PGADMIN_DEFAULT_EMAIL: pgadmin@example.com
2020
PGADMIN_DEFAULT_PASSWORD: admin
2121
graphql-engine:
22-
image: hasura/graphql-engine:v1.3.0-beta.2
22+
image: hasura/graphql-engine:v1.3.0-beta.3
2323
ports:
2424
- "8080:8080"
2525
depends_on:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ services:
88
environment:
99
POSTGRES_PASSWORD: postgrespassword
1010
graphql-engine:
11-
image: hasura/graphql-engine:v1.3.0-beta.2
11+
image: hasura/graphql-engine:v1.3.0-beta.3
1212
ports:
1313
- "8080:8080"
1414
depends_on:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ services:
88
environment:
99
POSTGRES_PASSWORD: postgrespassword
1010
graphql-engine:
11-
image: hasura/graphql-engine:v1.3.0-beta.2
11+
image: hasura/graphql-engine:v1.3.0-beta.3
1212
ports:
1313
- "8080:8080"
1414
depends_on:

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

Lines changed: 1 addition & 1 deletion
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:v1.3.0-beta.2
6+
hasura/graphql-engine:v1.3.0-beta.3

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

Lines changed: 1 addition & 1 deletion
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:v1.3.0-beta.2
19+
image: hasura/graphql-engine:v1.3.0-beta.3
2020
ports:
2121
- containerPort: 8080
2222
readinessProbe:

install-manifests/kubernetes/deployment.yaml

Lines changed: 1 addition & 1 deletion
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:v1.3.0-beta.2
21+
- image: hasura/graphql-engine:v1.3.0-beta.3
2222
imagePullPolicy: IfNotPresent
2323
name: hasura
2424
env:

scripts/cli-migrations/v1/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM hasura/graphql-engine:v1.3.0-beta.2
1+
FROM hasura/graphql-engine:v1.3.0-beta.3
22

33
# set an env var to let the cli know that
44
# it is running in server environment

scripts/cli-migrations/v2/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM hasura/haskell-docker-packager:20190731 as packager
22
WORKDIR /tmp
33
RUN apt-get update && apt-get download libstdc++6
44

5-
FROM hasura/graphql-engine:v1.3.0-beta.2
5+
FROM hasura/graphql-engine:v1.3.0-beta.3
66

77
# install libstdc++6 from .deb file
88
COPY --from=packager /tmp/libstdc++6* .

server/src-rsr/catalog_versions.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,4 @@ v1.2.1 34
2525
v1.2.2 34
2626
v1.3.0-beta.1 36
2727
v1.3.0-beta.2 36
28+
v1.3.0-beta.3 36

0 commit comments

Comments
 (0)