Skip to content

Commit 29ad4ff

Browse files
Bump version 6.5.5 (#659)
1 parent 1abc055 commit 29ad4ff

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+511
-509
lines changed

.github/workflows/installer.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,8 @@ jobs:
5050
- name: make install
5151
run: cd dipdup-indexer; make install
5252

53-
# TODO: Reenable after pydantic is bumped
54-
# - name: make lint
55-
# run: cd dipdup-indexer; make lint
53+
- name: make lint
54+
run: cd dipdup-indexer; make lint
5655

5756
- name: Deploy scripts to GH Pages
5857
if: contains(github.ref, 'master')

CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,18 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog], and this project adheres to [Semantic Versioning].
66

7-
## [Unreleased]
7+
## [6.5.5] - 2022-04-17
88

99
### Fixed
1010

1111
- config: Enable early realtime mode when config contains bigmap indexes with `skip_history`.
1212
- http: Fixed crash when using custom datasources.
1313
- index: Allow mixing `source` and `entrypoint` filters in `operation` index pattern.
1414

15+
### Other
16+
17+
- ci: Default git branch switched to `next`.
18+
1519
## [6.5.4] - 2022-03-31
1620

1721
### Fixed
@@ -989,7 +993,8 @@ This release contains no changes except for the version number.
989993
[semantic versioning]: https://semver.org/spec/v2.0.0.html
990994

991995
<!-- Versions -->
992-
[Unreleased]: https://github.com/dipdup-io/dipdup/compare/6.5.4...HEAD
996+
[Unreleased]: https://github.com/dipdup-io/dipdup/compare/6.5.5...HEAD
997+
[6.5.5]: https://github.com/dipdup-io/dipdup/compare/6.5.4...6.5.5
993998
[6.5.4]: https://github.com/dipdup-io/dipdup/compare/6.5.3...6.5.4
994999
[6.5.3]: https://github.com/dipdup-io/dipdup/compare/6.5.2...6.5.3
9951000
[6.5.2]: https://github.com/dipdup-io/dipdup/compare/6.5.1...6.5.2

demos/demo-auction/docker-compose.swarm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ services:
5353
logging: *logging
5454

5555
hasura:
56-
image: hasura/graphql-engine:v2.22.1
56+
image: hasura/graphql-engine:v2.23.0
5757
depends_on:
5858
- db
5959
environment:

demos/demo-auction/docker-compose.yml

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.22.1
34+
image: hasura/graphql-engine:v2.23.0
3535
ports:
3636
- 127.0.0.1:8080:8080
3737
depends_on:

demos/demo-auction/replay.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"crash_reporting": false,
77
"description": "My shiny new indexer based on DipDup",
88
"dipdup_version": "6",
9-
"hasura_image": "hasura/graphql-engine:v2.22.1",
9+
"hasura_image": "hasura/graphql-engine:v2.23.0",
1010
"license": "MIT",
1111
"line_length": "120",
1212
"linters": "default",

demos/demo-big-maps/docker-compose.swarm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ services:
5353
logging: *logging
5454

5555
hasura:
56-
image: hasura/graphql-engine:v2.22.1
56+
image: hasura/graphql-engine:v2.23.0
5757
depends_on:
5858
- db
5959
environment:

demos/demo-big-maps/docker-compose.yml

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.22.1
34+
image: hasura/graphql-engine:v2.23.0
3535
ports:
3636
- 127.0.0.1:8080:8080
3737
depends_on:

demos/demo-big-maps/replay.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"crash_reporting": false,
77
"description": "My shiny new indexer based on DipDup",
88
"dipdup_version": "6",
9-
"hasura_image": "hasura/graphql-engine:v2.22.1",
9+
"hasura_image": "hasura/graphql-engine:v2.23.0",
1010
"license": "MIT",
1111
"line_length": "120",
1212
"linters": "default",

demos/demo-big-maps/src/demo_big_maps/handlers/on_update_records.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ async def on_update_records(
2424
)
2525
return
2626

27-
if store_records.value.level == '1':
27+
if store_records.value.level == "1":
2828
await models.TLD.update_or_create(id=record_name, defaults={'owner': store_records.value.owner})
2929
else:
30-
if store_records.value.level == '2':
30+
if store_records.value.level == "2":
3131
await models.Domain.update_or_create(
3232
id=record_name,
3333
defaults={

demos/demo-dao/docker-compose.swarm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ services:
5353
logging: *logging
5454

5555
hasura:
56-
image: hasura/graphql-engine:v2.22.1
56+
image: hasura/graphql-engine:v2.23.0
5757
depends_on:
5858
- db
5959
environment:

0 commit comments

Comments
 (0)