@subql/node-ethereum 3.1.2-0 → 3.1.2
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 +7 -1
- package/dist/.tsbuildinfo +1 -1
- package/dist/ethereum/api.ethereum.test.js +3 -2
- package/dist/ethereum/api.ethereum.test.js.map +1 -1
- package/dist/ethereum/api.service.ethereum.test.js +2 -1
- package/dist/ethereum/api.service.ethereum.test.js.map +1 -1
- package/dist/indexer/blockDispatcher/worker-block-dispatcher.service.js +1 -6
- package/dist/indexer/blockDispatcher/worker-block-dispatcher.service.js.map +1 -1
- package/dist/indexer/fetch.service.spec.js +2 -1
- package/dist/indexer/fetch.service.spec.js.map +1 -1
- package/dist/indexer/project.service.test.js +2 -1
- package/dist/indexer/project.service.test.js.map +1 -1
- package/dist/indexer/worker/worker.d.ts +0 -5
- package/dist/indexer/worker/worker.js.map +1 -1
- package/dist/indexer/worker-fetch.module.js +1 -2
- package/dist/indexer/worker-fetch.module.js.map +1 -1
- package/dist/subcommands/testing.module.js +2 -0
- package/dist/subcommands/testing.module.js.map +1 -1
- package/dist/yargs.js +1 -1
- package/dist/yargs.js.map +1 -1
- package/package.json +6 -7
- package/dist/indexer/worker/worker.inMemoryCache.service.d.ts +0 -7
- package/dist/indexer/worker/worker.inMemoryCache.service.js +0 -34
- package/dist/indexer/worker/worker.inMemoryCache.service.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,9 +5,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
|
+
|
|
9
|
+
## [3.1.2] - 2023-11-01
|
|
8
10
|
### Fixed
|
|
9
11
|
- Unfinalized blocks not working with Cronos (#193)
|
|
10
12
|
|
|
13
|
+
### Changed
|
|
14
|
+
- Update `@subql/node-core` with fixes and support for endBlock feature (#195)
|
|
15
|
+
|
|
11
16
|
## [3.1.1] - 2023-10-25
|
|
12
17
|
### Fixed
|
|
13
18
|
- Fix crash when creating new dynamic datasources
|
|
@@ -299,7 +304,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
299
304
|
### Added
|
|
300
305
|
- Init release
|
|
301
306
|
|
|
302
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.1.
|
|
307
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.1.2...HEAD
|
|
308
|
+
[3.1.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.1.1...node-ethereum/3.1.2
|
|
303
309
|
[3.1.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.1.0...node-ethereum/3.1.1
|
|
304
310
|
[3.1.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.6...node-ethereum/3.1.0
|
|
305
311
|
[3.0.6]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.5...node-ethereum/3.0.6
|