Skip to content

Commit eb38eee

Browse files
tirumaraiselvanhasura-bot
authored andcommitted
tag release v2.0.0-alpha.10 (hasura#1256)
GitOrigin-RevId: afe16e5
1 parent 7550761 commit eb38eee

File tree

13 files changed

+18
-15
lines changed

13 files changed

+18
-15
lines changed

CHANGELOG.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,20 @@
22

33
## Next release
44

5+
(Add entries below in the order of: server, console, cli, docs, others)
6+
7+
8+
## v2.0.0-alpha.10
59

610
### Bug fixes and improvements
711

8-
(Add entries below in the order of: server, console, cli, docs, others)
912
- server: aggregation fields are now supported on mssql
1013
- server: accept a new server config flag `--events-fetch-batch-size` to configure the number of rows being fetched from the events log table in a single batch
11-
- server: restore proper batching behavior in event trigger processing so that at most 200 events are checked out at a time
14+
- server: restore proper batching behavior in event trigger processing so that at most 2x batch events are checked out at a time
1215
- server: fix regression: `on_conflict` was missing in the schema for inserts in tables where the current user has no columns listed in their update permissions (fix #6804)
13-
- server: fix one-to-one relationship bug (introduced in #459) which prevented adding one-to-one relationships which didn't have the same column name for target and source
16+
- server: fix one-to-one relationship bug which prevented adding one-to-one relationships which didn't have the same column name for target and source
1417
- console: fix Postgres table creation when table has a non-lowercase name and a comment (#6760)
1518
- cli: fix regression - `metadata apply —dry-run` was overwriting local metadata files with metadata on server when it should just display the differences.
16-
- cli: add support for `api_limits` metadata object
1719
- server: decrease polling interval for scheduled triggers from 60 to 10 seconds
1820
- server: Change `HASURA_GRAPHQL_SCHEMA_POLL_INTERVAL` env var to `HASURA_GRAPHQL_SCHEMA_SYNC_POLL_INTERVAL` and `schema-poll-interval` option to `--schema-sync-poll-interval`.
1921

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.0.0-alpha.9"
101+
"containerImage": "hasura/graphql-engine:v2.0.0-alpha.10"
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.0.0-alpha.9"
58+
"containerImage": "hasura/graphql-engine:v2.0.0-alpha.10"
5959
},
6060
"resources": [
6161
{

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

+1-1
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:v2.0.0-alpha.9
11+
image: hasura/graphql-engine:v2.0.0-alpha.10
1212
depends_on:
1313
- "postgres"
1414
restart: always

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

+1-1
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:v2.0.0-alpha.9
11+
image: hasura/graphql-engine:v2.0.0-alpha.10
1212
ports:
1313
- "8080:8080"
1414
depends_on:

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ services:
1919
PGADMIN_DEFAULT_EMAIL: [email protected]
2020
PGADMIN_DEFAULT_PASSWORD: admin
2121
graphql-engine:
22-
image: hasura/graphql-engine:v2.0.0-alpha.9
22+
image: hasura/graphql-engine:v2.0.0-alpha.10
2323
ports:
2424
- "8080:8080"
2525
depends_on:

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

+1-1
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:v2.0.0-alpha.9
11+
image: hasura/graphql-engine:v2.0.0-alpha.10
1212
ports:
1313
- "8080:8080"
1414
depends_on:

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

+1-1
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:v2.0.0-alpha.9
11+
image: hasura/graphql-engine:v2.0.0-alpha.10
1212
ports:
1313
- "8080:8080"
1414
depends_on:

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

+1-1
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:v2.0.0-alpha.9
11+
image: hasura/graphql-engine:v2.0.0-alpha.10
1212
ports:
1313
- "8080:8080"
1414
depends_on:

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.0.0-alpha.9
6+
hasura/graphql-engine:v2.0.0-alpha.10

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.0.0-alpha.9
19+
image: hasura/graphql-engine:v2.0.0-alpha.10
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.0.0-alpha.9
21+
- image: hasura/graphql-engine:v2.0.0-alpha.10
2222
imagePullPolicy: IfNotPresent
2323
name: hasura
2424
env:

server/src-rsr/catalog_versions.txt

+1
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,4 @@ v2.0.0-alpha.6 44
4343
v2.0.0-alpha.7 45
4444
v2.0.0-alpha.8 46
4545
v2.0.0-alpha.9 46
46+
v2.0.0-alpha.10 46

0 commit comments

Comments
 (0)