@subql/node-ethereum 2.9.3-4 → 2.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. package/CHANGELOG.md +13 -4
  2. package/dist/.tsbuildinfo +1 -1
  3. package/dist/configure/configure.module.d.ts +6 -0
  4. package/dist/configure/configure.module.js +5 -1
  5. package/dist/configure/configure.module.js.map +1 -1
  6. package/dist/ethereum/api.connection.d.ts +1 -5
  7. package/dist/ethereum/api.connection.js +4 -17
  8. package/dist/ethereum/api.connection.js.map +1 -1
  9. package/dist/ethereum/api.service.ethereum.js +40 -15
  10. package/dist/ethereum/api.service.ethereum.js.map +1 -1
  11. package/dist/indexer/blockDispatcher/ethereum-block-dispatcher.js +2 -2
  12. package/dist/indexer/blockDispatcher/ethereum-block-dispatcher.js.map +1 -1
  13. package/dist/indexer/blockDispatcher/worker-block-dispatcher.service.d.ts +3 -2
  14. package/dist/indexer/blockDispatcher/worker-block-dispatcher.service.js +6 -17
  15. package/dist/indexer/blockDispatcher/worker-block-dispatcher.service.js.map +1 -1
  16. package/dist/indexer/fetch.module.js +5 -2
  17. package/dist/indexer/fetch.module.js.map +1 -1
  18. package/dist/indexer/indexer.module.js +9 -0
  19. package/dist/indexer/indexer.module.js.map +1 -1
  20. package/dist/indexer/worker/worker.js +6 -1
  21. package/dist/indexer/worker/worker.js.map +1 -1
  22. package/dist/subcommands/testing.init.js +4 -11
  23. package/dist/subcommands/testing.init.js.map +1 -1
  24. package/dist/subcommands/testing.module.js +11 -1
  25. package/dist/subcommands/testing.module.js.map +1 -1
  26. package/dist/subcommands/testing.service.d.ts +4 -4
  27. package/dist/subcommands/testing.service.js +23 -13
  28. package/dist/subcommands/testing.service.js.map +1 -1
  29. package/package.json +6 -7
package/CHANGELOG.md CHANGED
@@ -6,12 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
- ### Add
9
+ ## [2.10.0] - 2023-07-31
10
+ ### Added
10
11
  - Added `!null` filter for logs (#135)
11
-
12
- ### Updated
12
+ ### Changed
13
+ - Update license to GPL-3.0 (#137)
13
14
  - Updated retry logic for eth requests (#134)
14
15
  - Adjust batch size for `JsonRpcBatchProvider` dynamically (#121)
16
+ - Sync with node-core :
17
+ - init db schema manually during test run
18
+ - fix retry logic for workers in connection pool
19
+ - Performance scoring fix
15
20
 
16
21
  ### Fixed
17
22
  - Fixed missing mmrQueryService in indexer module
@@ -184,7 +189,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
184
189
  - Retry request when encouraging timeout/rate limit behaviours (#9)
185
190
 
186
191
  ## [0.1.0] - 2022-10-31
187
- [Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.9.2...HEAD
192
+ ### Added
193
+ - Init release
194
+
195
+ [Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.10.0...HEAD
196
+ [2.10.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.9.2...node-ethereum/2.10.0
188
197
  [2.9.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.9.1...node-ethereum/2.9.2
189
198
  [2.9.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.9.0...node-ethereum/2.9.1
190
199
  [2.9.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.8.0...node-ethereum/2.9.0