Skip to content

Commit

Permalink
Bump version 7.2.2 (#916)
Browse files Browse the repository at this point in the history
  • Loading branch information
droserasprout authored Dec 27, 2023
1 parent 85cd9b6 commit 51c57ff
Show file tree
Hide file tree
Showing 20 changed files with 62 additions and 66 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ All notable changes to this project will be documented in this file.

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

## [Unreleased]
## [7.2.2] - 2023-12-27

### Fixed

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

## [7.2.1] - 2023-12-12

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

<!-- Versions -->
[Unreleased]: https://github.com/dipdup-io/dipdup/compare/7.2.1...HEAD
[Unreleased]: https://github.com/dipdup-io/dipdup/compare/7.2.2...HEAD
[7.2.2]: https://github.com/dipdup-io/dipdup/compare/7.2.1...7.2.2
[7.2.1]: https://github.com/dipdup-io/dipdup/compare/7.2.0...7.2.1
[7.2.0]: https://github.com/dipdup-io/dipdup/compare/7.1.1...7.2.0
[7.1.1]: https://github.com/dipdup-io/dipdup/compare/7.1.0...7.1.1
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "dipdup"
description = "Modular framework for creating selective indexers and featureful backends for dapps"
version = "7.2.1"
version = "7.2.2"
license = { text = "MIT" }
authors = [
{ name = "Lev Gorodetskii", email = "[email protected]" },
Expand Down
85 changes: 40 additions & 45 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -316,6 +316,21 @@
],
"default": null
},
"api": {
"anyOf": [
{
"allOf": [
{
"$ref": "#/$defs/ApiConfig"
}
]
},
{
"type": "null"
}
],
"default": null
},
"advanced": {
"allOf": [
{
Expand Down Expand Up @@ -449,6 +464,17 @@
],
"default": null
},
"request_timeout": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null
},
"batch_size": {
"anyOf": [
{
Expand Down Expand Up @@ -942,7 +968,7 @@
"evm"
]
},
"typename": {
"address": {
"anyOf": [
{
"type": "string"
Expand All @@ -953,7 +979,7 @@
],
"default": null
},
"address": {
"abi": {
"anyOf": [
{
"type": "string"
Expand All @@ -964,7 +990,7 @@
],
"default": null
},
"abi": {
"typename": {
"anyOf": [
{
"type": "string"
Expand All @@ -989,7 +1015,7 @@
"tezos"
]
},
"typename": {
"address": {
"anyOf": [
{
"type": "string"
Expand All @@ -1000,8 +1026,11 @@
],
"default": null
},
"address": {
"code_hash": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
},
Expand All @@ -1011,11 +1040,8 @@
],
"default": null
},
"code_hash": {
"typename": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
},
Expand Down Expand Up @@ -2165,14 +2191,6 @@
"host"
]
},
"ReindexingAction": {
"title": "ReindexingAction",
"enum": [
"exception",
"wipe",
"ignore"
]
},
"ApiConfig": {
"type": "object",
"title": "ApiConfig",
Expand All @@ -2183,12 +2201,12 @@
}
}
},
"MetricsLevel": {
"title": "MetricsLevel",
"ReindexingAction": {
"title": "ReindexingAction",
"enum": [
"off",
"basic",
"full"
"exception",
"wipe",
"ignore"
]
},
"AdvancedConfig": {
Expand Down Expand Up @@ -2255,29 +2273,6 @@
"type": "boolean",
"default": false
},
"api": {
"anyOf": [
{
"allOf": [
{
"$ref": "#/$defs/ApiConfig"
}
]
},
{
"type": "null"
}
],
"default": null
},
"metrics": {
"allOf": [
{
"$ref": "#/$defs/MetricsLevel"
}
],
"default": "basic"
},
"alt_operation_matcher": {
"type": "boolean",
"default": false
Expand Down
2 changes: 1 addition & 1 deletion src/demo_auction/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by DipDup 7.2.1+editable
# Generated by DipDup 7.2.2+editable
[project]
name = "demo_auction"
version = "0.0.1"
Expand Down
2 changes: 1 addition & 1 deletion src/demo_big_maps/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by DipDup 7.2.1+editable
# Generated by DipDup 7.2.2+editable
[project]
name = "demo_big_maps"
version = "0.0.1"
Expand Down
2 changes: 1 addition & 1 deletion src/demo_blank/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by DipDup 7.2.1+editable
# Generated by DipDup 7.2.2+editable
[project]
name = "demo_blank"
version = "0.0.1"
Expand Down
2 changes: 1 addition & 1 deletion src/demo_dao/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by DipDup 7.2.1+editable
# Generated by DipDup 7.2.2+editable
[project]
name = "demo_dao"
version = "0.0.1"
Expand Down
2 changes: 1 addition & 1 deletion src/demo_dex/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by DipDup 7.2.1+editable
# Generated by DipDup 7.2.2+editable
[project]
name = "demo_dex"
version = "0.0.1"
Expand Down
2 changes: 1 addition & 1 deletion src/demo_domains/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by DipDup 7.2.1+editable
# Generated by DipDup 7.2.2+editable
[project]
name = "demo_domains"
version = "0.0.1"
Expand Down
2 changes: 1 addition & 1 deletion src/demo_etherlink/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by DipDup 7.2.1+editable
# Generated by DipDup 7.2.2+editable
[project]
name = "demo_etherlink"
version = "0.0.1"
Expand Down
2 changes: 1 addition & 1 deletion src/demo_events/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by DipDup 7.2.1+editable
# Generated by DipDup 7.2.2+editable
[project]
name = "demo_events"
version = "0.0.1"
Expand Down
2 changes: 1 addition & 1 deletion src/demo_evm_events/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by DipDup 7.2.1+editable
# Generated by DipDup 7.2.2+editable
[project]
name = "demo_evm_events"
version = "0.0.1"
Expand Down
2 changes: 1 addition & 1 deletion src/demo_factories/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by DipDup 7.2.1+editable
# Generated by DipDup 7.2.2+editable
[project]
name = "demo_factories"
version = "0.0.1"
Expand Down
2 changes: 1 addition & 1 deletion src/demo_head/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by DipDup 7.2.1+editable
# Generated by DipDup 7.2.2+editable
[project]
name = "demo_head"
version = "0.0.1"
Expand Down
2 changes: 1 addition & 1 deletion src/demo_nft_marketplace/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by DipDup 7.2.1+editable
# Generated by DipDup 7.2.2+editable
[project]
name = "demo_nft_marketplace"
version = "0.0.1"
Expand Down
2 changes: 1 addition & 1 deletion src/demo_raw/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by DipDup 7.2.1+editable
# Generated by DipDup 7.2.2+editable
[project]
name = "demo_raw"
version = "0.0.1"
Expand Down
2 changes: 1 addition & 1 deletion src/demo_token/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by DipDup 7.2.1+editable
# Generated by DipDup 7.2.2+editable
[project]
name = "demo_token"
version = "0.0.1"
Expand Down
2 changes: 1 addition & 1 deletion src/demo_token_balances/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by DipDup 7.2.1+editable
# Generated by DipDup 7.2.2+editable
[project]
name = "demo_token_balances"
version = "0.0.1"
Expand Down
2 changes: 1 addition & 1 deletion src/demo_token_transfers/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by DipDup 7.2.1+editable
# Generated by DipDup 7.2.2+editable
[project]
name = "demo_token_transfers"
version = "0.0.1"
Expand Down
2 changes: 1 addition & 1 deletion src/demo_uniswap/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by DipDup 7.2.1+editable
# Generated by DipDup 7.2.2+editable
[project]
name = "demo_uniswap"
version = "0.0.1"
Expand Down

0 comments on commit 51c57ff

Please sign in to comment.