@subql/node-ethereum 3.0.2 → 3.0.4-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.
- package/CHANGELOG.md +15 -1
- package/dist/.tsbuildinfo +1 -1
- package/dist/indexer/blockDispatcher/block-dispatcher.service.d.ts +2 -2
- package/dist/indexer/blockDispatcher/block-dispatcher.service.js +4 -3
- package/dist/indexer/blockDispatcher/block-dispatcher.service.js.map +1 -1
- package/dist/indexer/blockDispatcher/worker-block-dispatcher.service.d.ts +2 -2
- package/dist/indexer/blockDispatcher/worker-block-dispatcher.service.js +4 -3
- package/dist/indexer/blockDispatcher/worker-block-dispatcher.service.js.map +1 -1
- package/dist/indexer/fetch.module.js +5 -3
- package/dist/indexer/fetch.module.js.map +1 -1
- package/dist/indexer/project.service.d.ts +2 -2
- package/dist/indexer/project.service.js +8 -6
- package/dist/indexer/project.service.js.map +1 -1
- package/dist/indexer/project.service.test.js +1 -1
- package/dist/indexer/project.service.test.js.map +1 -1
- package/dist/indexer/worker/worker.js +1 -1
- package/dist/indexer/worker/worker.js.map +1 -1
- package/dist/init.js +1 -1
- package/dist/init.js.map +1 -1
- package/dist/subcommands/testing.service.js +1 -1
- package/dist/subcommands/testing.service.js.map +1 -1
- package/dist/yargs.d.ts +1 -2
- package/dist/yargs.js +2 -3
- package/dist/yargs.js.map +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
### Changed
|
|
10
|
+
- debug has changed from a boolean to a string to allow scoping debug log level (#2077)
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Sync with node-core.
|
|
14
|
+
- Fixed Poi migration performance issue.
|
|
15
|
+
- Fixed AutoQueue timeout issue.
|
|
16
|
+
- Fixed Poi sync could block DB IO and drop connection issue.
|
|
17
|
+
|
|
18
|
+
## [3.0.3] - 2023-10-05
|
|
19
|
+
### Changed
|
|
20
|
+
- Version bump with `@subql/types-ethereum` 3.0.2
|
|
21
|
+
|
|
9
22
|
## [3.0.2] - 2023-10-04
|
|
10
23
|
### Fixed
|
|
11
24
|
- Fix reindex service without poi feature with `node-core`
|
|
@@ -260,7 +273,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
260
273
|
### Added
|
|
261
274
|
- Init release
|
|
262
275
|
|
|
263
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.
|
|
276
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.3...HEAD
|
|
277
|
+
[3.0.3]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.2...node-ethereum/3.0.3
|
|
264
278
|
[3.0.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.1...node-ethereum/3.0.2
|
|
265
279
|
[3.0.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.0...node-ethereum/3.0.1
|
|
266
280
|
[3.0.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.12.5...node-ethereum/3.0.0
|