@subql/node-stellar 3.3.2-0 → 3.4.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 -1
- package/dist/.tsbuildinfo +1 -1
- package/dist/indexer/blockDispatcher/block-dispatcher.service.d.ts +2 -2
- package/dist/indexer/blockDispatcher/block-dispatcher.service.js +3 -4
- 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 +3 -4
- package/dist/indexer/blockDispatcher/worker-block-dispatcher.service.js.map +1 -1
- package/dist/indexer/fetch.module.js +3 -4
- package/dist/indexer/fetch.module.js.map +1 -1
- package/package.json +3 -4
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [3.4.0] - 2023-11-27
|
|
10
|
+
### Changed
|
|
11
|
+
- Update `@subql/node-core` with minor fixes
|
|
12
|
+
|
|
13
|
+
## [3.3.2] - 2023-11-16
|
|
14
|
+
### Fixed
|
|
15
|
+
- Sync with `node-core` 6.4.2, Fix incorrect enqueuedBlocks, dictionaries timing out by updating `@subql/apollo-links` (#36)
|
|
16
|
+
|
|
9
17
|
## [3.3.1] - 2023-11-13
|
|
10
18
|
### Changed
|
|
11
19
|
- Updates to match changes in
|
|
@@ -47,7 +55,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
47
55
|
- rename `soroban` to `sorobanEndpoint` in network config (#16)
|
|
48
56
|
|
|
49
57
|
## [2.12.0] - 2023-09-12
|
|
50
|
-
[Unreleased]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.
|
|
58
|
+
[Unreleased]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.4.0...HEAD
|
|
59
|
+
[3.4.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.3.2...node-stellar/3.4.0
|
|
60
|
+
[3.3.2]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.3.1...node-stellar/3.3.2
|
|
51
61
|
[3.3.1]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.3.0...node-stellar/3.3.1
|
|
52
62
|
[3.3.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.1.0...node-stellar/3.3.0
|
|
53
63
|
[3.1.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.0.2...node-stellar/3.1.0
|