Skip to content

Commit ac189c8

Browse files
Bump version 8.1.2 (#1143)
Co-authored-by: Lev Gorodetskiy <[email protected]> Co-authored-by: Baz1114 <[email protected]>
1 parent a0dfd77 commit ac189c8

File tree

99 files changed

+542
-434
lines changed

Some content is hidden

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

99 files changed

+542
-434
lines changed

.vscode/launch.json

Lines changed: 108 additions & 36 deletions
Large diffs are not rendered by default.

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ The format is based on [Keep a Changelog], and this project adheres to [Semantic
66

77
Releases prior to 7.0 has been removed from this file to declutter search results; see the [archived copy](https://github.com/dipdup-io/dipdup/blob/8.0.0b5/CHANGELOG.md) for the full list.
88

9+
## [8.1.2] - 2024-12-10
10+
11+
### Fixed
12+
13+
- context: Allow to add Starknet contracts in runtime.
14+
- database: Ignore non-existent immutable table on schema wipe.
15+
- starknet.events: Fixed event ID calculation.
16+
917
## [8.1.1] - 2024-10-17
1018

1119
### Fixed
@@ -538,7 +546,8 @@ Releases prior to 7.0 has been removed from this file to declutter search result
538546
[semantic versioning]: https://semver.org/spec/v2.0.0.html
539547

540548
<!-- Versions -->
541-
[Unreleased]: https://github.com/dipdup-io/dipdup/compare/8.1.1...HEAD
549+
[Unreleased]: https://github.com/dipdup-io/dipdup/compare/8.1.2...HEAD
550+
[8.1.2]: https://github.com/dipdup-io/dipdup/compare/8.0.1...8.1.2
542551
[8.1.1]: https://github.com/dipdup-io/dipdup/compare/8.0.0...8.1.1
543552
[8.1.0]: https://github.com/dipdup-io/dipdup/compare/8.0.0...8.1.0
544553
[8.0.0]: https://github.com/dipdup-io/dipdup/compare/8.0.0b5...8.0.0

docs/10.supported-networks/15.dogechain.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ Explorers: [Dogechain](https://dogechain.info/), [Blockscout](https://explorer.d
2525
| -----------------:|:------------- | ---------------------------------------------------------- |
2626
| **evm.subsquid** | 🤔 not tested | `https://v2.archive.subsquid.io/network/dogechain-testnet` |
2727
| **abi.etherscan** | 🤔 not tested | `http://explorer-testnet.dogechain.dog/api` |
28-
| **evm.node** | 🤔 not tested | |
28+
| **evm.node** | 🤔 not tested | `https://rpc-testnet.dogechain.dog` |

docs/16.thanks.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ We are grateful to all the people who helped us with the project.
2121
- [Anshit Bhardwaj](https://github.com/Anshit01)
2222
- [Anton Rudenko](https://github.com/MrRoudyk)
2323
- [arrijabba](https://github.com/arrijabba)
24+
- [Baz1114](https://github.com/Baz1114)
2425
- [bigherc18](https://github.com/bigherc18)
2526
- [Daniel L.](https://github.com/dansan566) 💸
2627
- [Dmitry Mirgaleev](https://github.com/dmirgaleev)
@@ -36,6 +37,7 @@ We are grateful to all the people who helped us with the project.
3637
- [Karan Dua](https://github.com/Karantezsure)
3738
- [Kornii](https://github.com/lourenc)
3839
- [magicCity](https://github.com/tezosmiami)
40+
- [Michael Zaikin](https://github.com/m-kus)
3941
- [Nick Kalomoiris](https://github.com/nikos-kalomoiris)
4042
- [pravind](https://github.com/pravind)
4143
- [pyk](https://github.com/pyk)

docs/7.references/2.config.md

Lines changed: 14 additions & 14 deletions
Large diffs are not rendered by default.

docs/7.references/4.models.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -853,6 +853,7 @@ description: "Models reference"
853853
<li><p><strong>nairobinet</strong> – nairobinet</p></li>
854854
<li><p><strong>oxfordnet</strong> – oxfordnet</p></li>
855855
<li><p><strong>parisnet</strong> – parisnet</p></li>
856+
<li><p><strong>quebecnet</strong> – quebecnet</p></li>
856857
</ul>
857858
</dd>
858859
</dl>

docs/8.examples/_demos_table.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
<!-- markdownlint-disable first-line-h1 -->
22
| name | network | description | source |
33
|-|-|-|-|
4-
| demo_blank | | Empty config for a fresh start | [link](https://github.com/dipdup-io/dipdup/tree/8.1.1/src/demo_blank) |
5-
| demo_evm_events | EVM | ERC-20 token transfers (from event logs) | [link](https://github.com/dipdup-io/dipdup/tree/8.1.1/src/demo_evm_events) |
6-
| demo_evm_transactions | EVM | ERC-20 token transfers (from transactions) | [link](https://github.com/dipdup-io/dipdup/tree/8.1.1/src/demo_evm_transactions) |
7-
| demo_evm_uniswap | EVM | Uniswap V3 pools, positions, etc. (advanced, uses TimescaleDB) | [link](https://github.com/dipdup-io/dipdup/tree/8.1.1/src/demo_evm_uniswap) |
8-
| demo_starknet_events | Starknet | ERC-20 token transfers (from events) | [link](https://github.com/dipdup-io/dipdup/tree/8.1.1/src/demo_starknet_events) |
9-
| demo_tezos_auction | Tezos | NFT marketplace (TzColors) | [link](https://github.com/dipdup-io/dipdup/tree/8.1.1/src/demo_tezos_auction) |
10-
| demo_tezos_dao | Tezos | DAO registry (Homebase DAO) | [link](https://github.com/dipdup-io/dipdup/tree/8.1.1/src/demo_tezos_dao) |
11-
| demo_tezos_dex | Tezos | DEX balances and liquidity (Quipuswap) | [link](https://github.com/dipdup-io/dipdup/tree/8.1.1/src/demo_tezos_dex) |
12-
| demo_tezos_domains | Tezos | Domain name service (Tezos Domains) | [link](https://github.com/dipdup-io/dipdup/tree/8.1.1/src/demo_tezos_domains) |
13-
| demo_tezos_etherlink | Tezos | Etherlink smart rollup transactions | [link](https://github.com/dipdup-io/dipdup/tree/8.1.1/src/demo_tezos_etherlink) |
14-
| demo_tezos_events | Tezos | Processing contract events | [link](https://github.com/dipdup-io/dipdup/tree/8.1.1/src/demo_tezos_events) |
15-
| demo_tezos_factories | Tezos | Example of spawning indexes in runtime | [link](https://github.com/dipdup-io/dipdup/tree/8.1.1/src/demo_tezos_factories) |
16-
| demo_tezos_head | Tezos | Processing head block metadata (realtime only) | [link](https://github.com/dipdup-io/dipdup/tree/8.1.1/src/demo_tezos_head) |
17-
| demo_tezos_nft_marketplace | Tezos | NFT marketplace (hic at nunc) | [link](https://github.com/dipdup-io/dipdup/tree/8.1.1/src/demo_tezos_nft_marketplace) |
18-
| demo_tezos_raw | Tezos | Process raw operations without filtering and typed payloads | [link](https://github.com/dipdup-io/dipdup/tree/8.1.1/src/demo_tezos_raw) |
19-
| demo_tezos_token | Tezos | FA1.2 token contract operations | [link](https://github.com/dipdup-io/dipdup/tree/8.1.1/src/demo_tezos_token) |
20-
| demo_tezos_token_balances | Tezos | FA1.2 token balances | [link](https://github.com/dipdup-io/dipdup/tree/8.1.1/src/demo_tezos_token_balances) |
21-
| demo_tezos_token_transfers | Tezos | FA1.2 token transfers | [link](https://github.com/dipdup-io/dipdup/tree/8.1.1/src/demo_tezos_token_transfers) |
4+
| demo_blank | | Empty config for a fresh start | [link](https://github.com/dipdup-io/dipdup/tree/8.1.2/src/demo_blank) |
5+
| demo_evm_events | EVM | ERC-20 token transfers (from event logs) | [link](https://github.com/dipdup-io/dipdup/tree/8.1.2/src/demo_evm_events) |
6+
| demo_evm_transactions | EVM | ERC-20 token transfers (from transactions) | [link](https://github.com/dipdup-io/dipdup/tree/8.1.2/src/demo_evm_transactions) |
7+
| demo_evm_uniswap | EVM | Uniswap V3 pools, positions, etc. (advanced, uses TimescaleDB) | [link](https://github.com/dipdup-io/dipdup/tree/8.1.2/src/demo_evm_uniswap) |
8+
| demo_starknet_events | Starknet | ERC-20 token transfers (from events) | [link](https://github.com/dipdup-io/dipdup/tree/8.1.2/src/demo_starknet_events) |
9+
| demo_tezos_auction | Tezos | NFT marketplace (TzColors) | [link](https://github.com/dipdup-io/dipdup/tree/8.1.2/src/demo_tezos_auction) |
10+
| demo_tezos_dao | Tezos | DAO registry (Homebase DAO) | [link](https://github.com/dipdup-io/dipdup/tree/8.1.2/src/demo_tezos_dao) |
11+
| demo_tezos_dex | Tezos | DEX balances and liquidity (Quipuswap) | [link](https://github.com/dipdup-io/dipdup/tree/8.1.2/src/demo_tezos_dex) |
12+
| demo_tezos_domains | Tezos | Domain name service (Tezos Domains) | [link](https://github.com/dipdup-io/dipdup/tree/8.1.2/src/demo_tezos_domains) |
13+
| demo_tezos_etherlink | Tezos | Etherlink smart rollup transactions | [link](https://github.com/dipdup-io/dipdup/tree/8.1.2/src/demo_tezos_etherlink) |
14+
| demo_tezos_events | Tezos | Processing contract events | [link](https://github.com/dipdup-io/dipdup/tree/8.1.2/src/demo_tezos_events) |
15+
| demo_tezos_factories | Tezos | Example of spawning indexes in runtime | [link](https://github.com/dipdup-io/dipdup/tree/8.1.2/src/demo_tezos_factories) |
16+
| demo_tezos_head | Tezos | Processing head block metadata (realtime only) | [link](https://github.com/dipdup-io/dipdup/tree/8.1.2/src/demo_tezos_head) |
17+
| demo_tezos_nft_marketplace | Tezos | NFT marketplace (hic at nunc) | [link](https://github.com/dipdup-io/dipdup/tree/8.1.2/src/demo_tezos_nft_marketplace) |
18+
| demo_tezos_raw | Tezos | Process raw operations without filtering and typed payloads | [link](https://github.com/dipdup-io/dipdup/tree/8.1.2/src/demo_tezos_raw) |
19+
| demo_tezos_token | Tezos | FA1.2 token contract operations | [link](https://github.com/dipdup-io/dipdup/tree/8.1.2/src/demo_tezos_token) |
20+
| demo_tezos_token_balances | Tezos | FA1.2 token balances | [link](https://github.com/dipdup-io/dipdup/tree/8.1.2/src/demo_tezos_token_balances) |
21+
| demo_tezos_token_transfers | Tezos | FA1.2 token transfers | [link](https://github.com/dipdup-io/dipdup/tree/8.1.2/src/demo_tezos_token_transfers) |

docs/9.release-notes/_8.1_changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,6 @@
1313

1414
- cli: Fixed progress estimation logging.
1515
- cli: Reload constants in `dipdup.env` after applying env-files.
16+
- context: Allow to add Starknet contracts in runtime.
17+
- database: Ignore non-existent immutable table on schema wipe.
18+
- starknet.events: Fixed event ID calculation.

0 commit comments

Comments
 (0)