@subql/node-ethereum 3.0.6 → 3.1.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 +11 -3
- package/dist/.tsbuildinfo +1 -1
- package/dist/indexer/blockDispatcher/worker-block-dispatcher.service.d.ts +2 -2
- package/dist/indexer/blockDispatcher/worker-block-dispatcher.service.js +6 -5
- package/dist/indexer/blockDispatcher/worker-block-dispatcher.service.js.map +1 -1
- package/dist/indexer/fetch.module.js +4 -2
- package/dist/indexer/fetch.module.js.map +1 -1
- package/dist/indexer/sandbox.service.d.ts +3 -2
- package/dist/indexer/sandbox.service.js +6 -2
- package/dist/indexer/sandbox.service.js.map +1 -1
- package/dist/indexer/worker/worker.inMemoryCache.service.d.ts +7 -0
- package/dist/indexer/worker/worker.inMemoryCache.service.js +34 -0
- package/dist/indexer/worker/worker.inMemoryCache.service.js.map +1 -0
- package/dist/indexer/worker-fetch.module.js +5 -0
- package/dist/indexer/worker-fetch.module.js.map +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -6,13 +6,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [3.1.0] - 2023-10-20
|
|
10
|
+
### Added
|
|
11
|
+
- Inject in-memory cache to sandbox
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
- Bump with `@subq/node-core` 3.1.0 , fixed poi migration init check, and improve logging
|
|
15
|
+
|
|
9
16
|
## [3.0.6] - 2023-10-18
|
|
10
17
|
### Fixed
|
|
11
18
|
- Update node-core, additional fix for store bulk methods failing with workers
|
|
12
19
|
|
|
13
20
|
## [3.0.5] - 2023-10-17
|
|
14
21
|
### Fixed
|
|
15
|
-
- Update
|
|
22
|
+
- Update
|
|
16
23
|
- Dictionary validation error causing application exit (#2101)
|
|
17
24
|
- Auto queue flush getting the queue into a bad state (#2103)
|
|
18
25
|
- Fix getCache could not been cleared after reindex, and could have been re-used and lead to error, such as syncPoi
|
|
@@ -20,6 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
20
27
|
## [3.0.4] - 2023-10-12
|
|
21
28
|
### Changed
|
|
22
29
|
- debug has changed from a boolean to a string to allow scoping debug log level (#2077)
|
|
30
|
+
|
|
23
31
|
### Fixed
|
|
24
32
|
- Sync with node-core.
|
|
25
33
|
- Fix issues with using object destructing for store interface and workers
|
|
@@ -285,11 +293,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
285
293
|
### Added
|
|
286
294
|
- Init release
|
|
287
295
|
|
|
288
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0
|
|
296
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.1.0...HEAD
|
|
297
|
+
[3.1.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.6...node-ethereum/3.1.0
|
|
289
298
|
[3.0.6]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.5...node-ethereum/3.0.6
|
|
290
299
|
[3.0.5]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.4...node-ethereum/3.0.5
|
|
291
300
|
[3.0.4]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.3...node-ethereum/3.0.4
|
|
292
|
-
[3.0.4]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.3...node-ethereum/3.0.4
|
|
293
301
|
[3.0.3]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.2...node-ethereum/3.0.3
|
|
294
302
|
[3.0.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.1...node-ethereum/3.0.2
|
|
295
303
|
[3.0.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.0...node-ethereum/3.0.1
|