Skip to content

Commit 53e8bcb

Browse files
Add CHANGELOG.md, bump Hasura in examples (#137)
1 parent 9421288 commit 53e8bcb

File tree

10 files changed

+22
-9
lines changed

10 files changed

+22
-9
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Changelog
2+
3+
## 3.0.1 - 2021-09-24
4+
5+
### Added
6+
7+
* Added `get_quote` and `get_quotes` methods to `TzKTDatasource`.
8+
9+
### Fixed
10+
11+
* Defer spawning index datasources until initial sync is complete. It helps to mitigate some WebSocket-related crashes, but initial sync is a bit slower now.
12+
* Fixed possible race conditions in `TzKTDatasource`.
13+
* Start `jobs` scheduler after all indexes sync with a current head to speed up indexing.

src/demo_hic_et_nunc/docker/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ services:
3030
retries: 5
3131

3232
hasura:
33-
image: hasura/graphql-engine:v2.0.8
33+
image: hasura/graphql-engine:v2.0.9
3434
ports:
3535
- 127.0.0.1:8080:8080
3636
depends_on:

src/demo_quipuswap/docker/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ services:
3030
retries: 5
3131

3232
hasura:
33-
image: hasura/graphql-engine:v2.0.8
33+
image: hasura/graphql-engine:v2.0.9
3434
ports:
3535
- 127.0.0.1:8080:8080
3636
depends_on:

src/demo_registrydao/docker/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ services:
3030
retries: 5
3131

3232
hasura:
33-
image: hasura/graphql-engine:v2.0.8
33+
image: hasura/graphql-engine:v2.0.9
3434
ports:
3535
- 127.0.0.1:8080:8080
3636
depends_on:

src/demo_tezos_domains/docker/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ services:
3030
retries: 5
3131

3232
hasura:
33-
image: hasura/graphql-engine:v2.0.8
33+
image: hasura/graphql-engine:v2.0.9
3434
ports:
3535
- 127.0.0.1:8080:8080
3636
depends_on:

src/demo_tezos_domains_big_map/docker/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ services:
3030
retries: 5
3131

3232
hasura:
33-
image: hasura/graphql-engine:v2.0.8
33+
image: hasura/graphql-engine:v2.0.9
3434
ports:
3535
- 127.0.0.1:8080:8080
3636
depends_on:

src/demo_tzbtc/docker/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ services:
3030
retries: 5
3131

3232
hasura:
33-
image: hasura/graphql-engine:v2.0.8
33+
image: hasura/graphql-engine:v2.0.9
3434
ports:
3535
- 127.0.0.1:8080:8080
3636
depends_on:

src/demo_tzcolors/docker/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ services:
3030
retries: 5
3131

3232
hasura:
33-
image: hasura/graphql-engine:v2.0.8
33+
image: hasura/graphql-engine:v2.0.9
3434
ports:
3535
- 127.0.0.1:8080:8080
3636
depends_on:

src/dipdup/templates/docker/docker-compose.yml.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ services:
3131
retries: 5
3232

3333
hasura:
34-
image: hasura/graphql-engine:v2.0.8
34+
image: hasura/graphql-engine:v2.0.9
3535
ports:
3636
- 127.0.0.1:8080:8080
3737
depends_on:

tests/integration_tests/test_hasura.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ async def test_configure_hasura(self):
4141
await dipdup._set_up_hooks()
4242
await dipdup._initialize_schema()
4343

44-
hasura_container = DbContainer('hasura/graphql-engine:v2.0.8').with_env(
44+
hasura_container = DbContainer('hasura/graphql-engine:v2.0.9').with_env(
4545
'HASURA_GRAPHQL_DATABASE_URL',
4646
f'postgres://test:test@{postgres_ip}:5432',
4747
)

0 commit comments

Comments
 (0)