Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Changelog

## 3.0.1 - 2021-09-24

### Added

* Added `get_quote` and `get_quotes` methods to `TzKTDatasource`.

### Fixed

* 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.
* Fixed possible race conditions in `TzKTDatasource`.
* Start `jobs` scheduler after all indexes sync with a current head to speed up indexing.
2 changes: 1 addition & 1 deletion src/demo_hic_et_nunc/docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ services:
retries: 5

hasura:
image: hasura/graphql-engine:v2.0.8
image: hasura/graphql-engine:v2.0.9
ports:
- 127.0.0.1:8080:8080
depends_on:
Expand Down
2 changes: 1 addition & 1 deletion src/demo_quipuswap/docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ services:
retries: 5

hasura:
image: hasura/graphql-engine:v2.0.8
image: hasura/graphql-engine:v2.0.9
ports:
- 127.0.0.1:8080:8080
depends_on:
Expand Down
2 changes: 1 addition & 1 deletion src/demo_registrydao/docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ services:
retries: 5

hasura:
image: hasura/graphql-engine:v2.0.8
image: hasura/graphql-engine:v2.0.9
ports:
- 127.0.0.1:8080:8080
depends_on:
Expand Down
2 changes: 1 addition & 1 deletion src/demo_tezos_domains/docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ services:
retries: 5

hasura:
image: hasura/graphql-engine:v2.0.8
image: hasura/graphql-engine:v2.0.9
ports:
- 127.0.0.1:8080:8080
depends_on:
Expand Down
2 changes: 1 addition & 1 deletion src/demo_tezos_domains_big_map/docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ services:
retries: 5

hasura:
image: hasura/graphql-engine:v2.0.8
image: hasura/graphql-engine:v2.0.9
ports:
- 127.0.0.1:8080:8080
depends_on:
Expand Down
2 changes: 1 addition & 1 deletion src/demo_tzbtc/docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ services:
retries: 5

hasura:
image: hasura/graphql-engine:v2.0.8
image: hasura/graphql-engine:v2.0.9
ports:
- 127.0.0.1:8080:8080
depends_on:
Expand Down
2 changes: 1 addition & 1 deletion src/demo_tzcolors/docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ services:
retries: 5

hasura:
image: hasura/graphql-engine:v2.0.8
image: hasura/graphql-engine:v2.0.9
ports:
- 127.0.0.1:8080:8080
depends_on:
Expand Down
2 changes: 1 addition & 1 deletion src/dipdup/templates/docker/docker-compose.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ services:
retries: 5

hasura:
image: hasura/graphql-engine:v2.0.8
image: hasura/graphql-engine:v2.0.9
ports:
- 127.0.0.1:8080:8080
depends_on:
Expand Down
2 changes: 1 addition & 1 deletion tests/integration_tests/test_hasura.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ async def test_configure_hasura(self):
await dipdup._set_up_hooks()
await dipdup._initialize_schema()

hasura_container = DbContainer('hasura/graphql-engine:v2.0.8').with_env(
hasura_container = DbContainer('hasura/graphql-engine:v2.0.9').with_env(
'HASURA_GRAPHQL_DATABASE_URL',
f'postgres://test:test@{postgres_ip}:5432',
)
Expand Down