@subql/node-stellar 3.0.1 → 3.0.2-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 +10 -0
- 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/worker/worker.js +1 -1
- package/dist/indexer/worker/worker.js.map +1 -1
- package/dist/init.js +1 -2
- package/dist/init.js.map +1 -1
- package/dist/yargs.js.map +1 -1
- package/package.json +6 -5
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,16 @@ 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
|
+
- Issues with using object destructing for store interface and workers.
|
|
18
|
+
|
|
9
19
|
## [3.0.1] - 2023-10-11
|
|
10
20
|
### Fixed
|
|
11
21
|
- reduce the number of deepcopies in wrapping a block (#20)
|