@subql/node-ethereum 3.0.5-0 → 3.0.6
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 +14 -4
- package/dist/.tsbuildinfo +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -6,16 +6,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
-
## [3.0.
|
|
9
|
+
## [3.0.6] - 2023-10-18
|
|
10
|
+
### Fixed
|
|
11
|
+
- Update node-core, additional fix for store bulk methods failing with workers
|
|
12
|
+
|
|
13
|
+
## [3.0.5] - 2023-10-17
|
|
10
14
|
### Fixed
|
|
11
|
-
- Update `@subql/node-core` to fix
|
|
15
|
+
- Update `@subql/node-core` to fix:
|
|
16
|
+
- Dictionary validation error causing application exit (#2101)
|
|
17
|
+
- Auto queue flush getting the queue into a bad state (#2103)
|
|
18
|
+
- Fix getCache could not been cleared after reindex, and could have been re-used and lead to error, such as syncPoi
|
|
12
19
|
|
|
13
20
|
## [3.0.4] - 2023-10-12
|
|
14
21
|
### Changed
|
|
15
22
|
- debug has changed from a boolean to a string to allow scoping debug log level (#2077)
|
|
16
|
-
|
|
17
23
|
### Fixed
|
|
18
24
|
- Sync with node-core.
|
|
25
|
+
- Fix issues with using object destructing for store interface and workers
|
|
19
26
|
- Fixed Poi migration performance issue.
|
|
20
27
|
- Fixed AutoQueue timeout issue.
|
|
21
28
|
- Fixed Poi sync could block DB IO and drop connection issue.
|
|
@@ -278,7 +285,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
278
285
|
### Added
|
|
279
286
|
- Init release
|
|
280
287
|
|
|
281
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.
|
|
288
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.6...HEAD
|
|
289
|
+
[3.0.6]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.5...node-ethereum/3.0.6
|
|
290
|
+
[3.0.5]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.4...node-ethereum/3.0.5
|
|
291
|
+
[3.0.4]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.3...node-ethereum/3.0.4
|
|
282
292
|
[3.0.4]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.3...node-ethereum/3.0.4
|
|
283
293
|
[3.0.3]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.2...node-ethereum/3.0.3
|
|
284
294
|
[3.0.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.1...node-ethereum/3.0.2
|