@subql/node-stellar 3.0.3-0 → 3.1.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 +6 -1
- 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 +4 -8
- 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/worker/worker-fetch.module.js +4 -0
- package/dist/indexer/worker/worker-fetch.module.js.map +1 -1
- package/dist/indexer/worker/worker.d.ts +0 -5
- package/dist/indexer/worker/worker.js.map +1 -1
- package/dist/subcommands/testing.module.js +2 -0
- package/dist/subcommands/testing.module.js.map +1 -1
- package/dist/yargs.d.ts +3 -79
- package/dist/yargs.js +2 -102
- package/dist/yargs.js.map +1 -1
- package/package.json +8 -7
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,10 @@ 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-11-01
|
|
10
|
+
### Changed
|
|
11
|
+
- Update `@subql/node-core` with fixes and support for endBlock feature (#27)
|
|
12
|
+
|
|
9
13
|
## [3.0.2] - 2023-10-13
|
|
10
14
|
### Changed
|
|
11
15
|
- debug has changed from a boolean to a string to allow scoping debug log level (#2077)
|
|
@@ -30,7 +34,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
30
34
|
- rename `soroban` to `sorobanEndpoint` in network config (#16)
|
|
31
35
|
|
|
32
36
|
## [2.12.0] - 2023-09-12
|
|
33
|
-
[Unreleased]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.0
|
|
37
|
+
[Unreleased]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.1.0...HEAD
|
|
38
|
+
[3.1.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.0.2...node-stellar/3.1.0
|
|
34
39
|
[3.0.2]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.0.1...node-stellar/3.0.2
|
|
35
40
|
[3.0.1]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.0.0...node-stellar/3.0.1
|
|
36
41
|
[3.0.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/2.12.1...node-stellar/3.0.0
|