@subql/node-stellar 4.1.1-0 → 4.1.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 +5 -1
- package/dist/.tsbuildinfo +1 -1
- package/dist/indexer/blockDispatcher/block-dispatcher.service.d.ts +1 -0
- package/dist/indexer/blockDispatcher/block-dispatcher.service.js +4 -0
- package/dist/indexer/blockDispatcher/block-dispatcher.service.js.map +1 -1
- package/dist/indexer/types.d.ts +2 -0
- package/dist/indexer/types.js +7 -0
- package/dist/indexer/types.js.map +1 -1
- package/dist/indexer/worker/worker.service.d.ts +6 -5
- package/dist/indexer/worker/worker.service.js +4 -0
- package/dist/indexer/worker/worker.service.js.map +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -5,7 +5,10 @@ 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
|
+
### Changed
|
|
9
|
+
- Update `@subql/node-core` and `@subql/common` dependencies
|
|
8
10
|
|
|
11
|
+
## [4.1.1] - 2024-12-06
|
|
9
12
|
### Fixed
|
|
10
13
|
- Incorrect parameter injection in ApiService
|
|
11
14
|
|
|
@@ -170,7 +173,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
170
173
|
- rename `soroban` to `sorobanEndpoint` in network config (#16)
|
|
171
174
|
|
|
172
175
|
## [2.12.0] - 2023-09-12
|
|
173
|
-
[Unreleased]: https://github.com/subquery/subql-stellar/compare/node-stellar/4.1.
|
|
176
|
+
[Unreleased]: https://github.com/subquery/subql-stellar/compare/node-stellar/4.1.1...HEAD
|
|
177
|
+
[4.1.1]: https://github.com/subquery/subql-stellar/compare/node-stellar/4.1.0...node-stellar/4.1.1
|
|
174
178
|
[4.1.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/4.0.4...node-stellar/4.1.0
|
|
175
179
|
[4.0.4]: https://github.com/subquery/subql-stellar/compare/node-stellar/4.0.3...node-stellar/4.0.4
|
|
176
180
|
[4.0.3]: https://github.com/subquery/subql-stellar/compare/node-stellar/4.0.0...node-stellar/4.0.3
|