Skip to content

Commit 51c57ff

Browse files
Bump version 7.2.2 (#916)
1 parent 85cd9b6 commit 51c57ff

File tree

20 files changed

+62
-66
lines changed

20 files changed

+62
-66
lines changed

CHANGELOG.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ 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+
## [7.2.2] - 2023-12-27
88

99
### Fixed
1010

11-
- tezos.tzkt: Fixed an issue with approving schema after reindexing triggered by rollback.
1211
- evm.subsquid: Last mile indexing is significantly faster now.
12+
- tezos.tzkt: Fixed an issue with approving schema after reindexing triggered by rollback.
1313

1414
## [7.2.1] - 2023-12-12
1515

@@ -1277,7 +1277,8 @@ This release contains no changes except for the version number.
12771277
[semantic versioning]: https://semver.org/spec/v2.0.0.html
12781278

12791279
<!-- Versions -->
1280-
[Unreleased]: https://github.com/dipdup-io/dipdup/compare/7.2.1...HEAD
1280+
[Unreleased]: https://github.com/dipdup-io/dipdup/compare/7.2.2...HEAD
1281+
[7.2.2]: https://github.com/dipdup-io/dipdup/compare/7.2.1...7.2.2
12811282
[7.2.1]: https://github.com/dipdup-io/dipdup/compare/7.2.0...7.2.1
12821283
[7.2.0]: https://github.com/dipdup-io/dipdup/compare/7.1.1...7.2.0
12831284
[7.1.1]: https://github.com/dipdup-io/dipdup/compare/7.1.0...7.1.1

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "dipdup"
33
description = "Modular framework for creating selective indexers and featureful backends for dapps"
4-
version = "7.2.1"
4+
version = "7.2.2"
55
license = { text = "MIT" }
66
authors = [
77
{ name = "Lev Gorodetskii", email = "[email protected]" },

schema.json

Lines changed: 40 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -316,6 +316,21 @@
316316
],
317317
"default": null
318318
},
319+
"api": {
320+
"anyOf": [
321+
{
322+
"allOf": [
323+
{
324+
"$ref": "#/$defs/ApiConfig"
325+
}
326+
]
327+
},
328+
{
329+
"type": "null"
330+
}
331+
],
332+
"default": null
333+
},
319334
"advanced": {
320335
"allOf": [
321336
{
@@ -449,6 +464,17 @@
449464
],
450465
"default": null
451466
},
467+
"request_timeout": {
468+
"anyOf": [
469+
{
470+
"type": "integer"
471+
},
472+
{
473+
"type": "null"
474+
}
475+
],
476+
"default": null
477+
},
452478
"batch_size": {
453479
"anyOf": [
454480
{
@@ -942,7 +968,7 @@
942968
"evm"
943969
]
944970
},
945-
"typename": {
971+
"address": {
946972
"anyOf": [
947973
{
948974
"type": "string"
@@ -953,7 +979,7 @@
953979
],
954980
"default": null
955981
},
956-
"address": {
982+
"abi": {
957983
"anyOf": [
958984
{
959985
"type": "string"
@@ -964,7 +990,7 @@
964990
],
965991
"default": null
966992
},
967-
"abi": {
993+
"typename": {
968994
"anyOf": [
969995
{
970996
"type": "string"
@@ -989,7 +1015,7 @@
9891015
"tezos"
9901016
]
9911017
},
992-
"typename": {
1018+
"address": {
9931019
"anyOf": [
9941020
{
9951021
"type": "string"
@@ -1000,8 +1026,11 @@
10001026
],
10011027
"default": null
10021028
},
1003-
"address": {
1029+
"code_hash": {
10041030
"anyOf": [
1031+
{
1032+
"type": "integer"
1033+
},
10051034
{
10061035
"type": "string"
10071036
},
@@ -1011,11 +1040,8 @@
10111040
],
10121041
"default": null
10131042
},
1014-
"code_hash": {
1043+
"typename": {
10151044
"anyOf": [
1016-
{
1017-
"type": "integer"
1018-
},
10191045
{
10201046
"type": "string"
10211047
},
@@ -2165,14 +2191,6 @@
21652191
"host"
21662192
]
21672193
},
2168-
"ReindexingAction": {
2169-
"title": "ReindexingAction",
2170-
"enum": [
2171-
"exception",
2172-
"wipe",
2173-
"ignore"
2174-
]
2175-
},
21762194
"ApiConfig": {
21772195
"type": "object",
21782196
"title": "ApiConfig",
@@ -2183,12 +2201,12 @@
21832201
}
21842202
}
21852203
},
2186-
"MetricsLevel": {
2187-
"title": "MetricsLevel",
2204+
"ReindexingAction": {
2205+
"title": "ReindexingAction",
21882206
"enum": [
2189-
"off",
2190-
"basic",
2191-
"full"
2207+
"exception",
2208+
"wipe",
2209+
"ignore"
21922210
]
21932211
},
21942212
"AdvancedConfig": {
@@ -2255,29 +2273,6 @@
22552273
"type": "boolean",
22562274
"default": false
22572275
},
2258-
"api": {
2259-
"anyOf": [
2260-
{
2261-
"allOf": [
2262-
{
2263-
"$ref": "#/$defs/ApiConfig"
2264-
}
2265-
]
2266-
},
2267-
{
2268-
"type": "null"
2269-
}
2270-
],
2271-
"default": null
2272-
},
2273-
"metrics": {
2274-
"allOf": [
2275-
{
2276-
"$ref": "#/$defs/MetricsLevel"
2277-
}
2278-
],
2279-
"default": "basic"
2280-
},
22812276
"alt_operation_matcher": {
22822277
"type": "boolean",
22832278
"default": false

src/demo_auction/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Generated by DipDup 7.2.1+editable
1+
# Generated by DipDup 7.2.2+editable
22
[project]
33
name = "demo_auction"
44
version = "0.0.1"

src/demo_big_maps/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Generated by DipDup 7.2.1+editable
1+
# Generated by DipDup 7.2.2+editable
22
[project]
33
name = "demo_big_maps"
44
version = "0.0.1"

src/demo_blank/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Generated by DipDup 7.2.1+editable
1+
# Generated by DipDup 7.2.2+editable
22
[project]
33
name = "demo_blank"
44
version = "0.0.1"

src/demo_dao/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Generated by DipDup 7.2.1+editable
1+
# Generated by DipDup 7.2.2+editable
22
[project]
33
name = "demo_dao"
44
version = "0.0.1"

src/demo_dex/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Generated by DipDup 7.2.1+editable
1+
# Generated by DipDup 7.2.2+editable
22
[project]
33
name = "demo_dex"
44
version = "0.0.1"

src/demo_domains/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Generated by DipDup 7.2.1+editable
1+
# Generated by DipDup 7.2.2+editable
22
[project]
33
name = "demo_domains"
44
version = "0.0.1"

src/demo_etherlink/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Generated by DipDup 7.2.1+editable
1+
# Generated by DipDup 7.2.2+editable
22
[project]
33
name = "demo_etherlink"
44
version = "0.0.1"

0 commit comments

Comments
 (0)