@subql/node-stellar 3.3.2 → 3.4.1
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 +13 -2
- 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 +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -6,13 +6,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [3.4.1] - 2023-11-28
|
|
10
|
+
### Fixed
|
|
11
|
+
- Fix ipfs deployment templates path failed to resolved, issue was introduced node-core 7.0.0
|
|
12
|
+
- Update with node-core to fix network dictionary timeout but not fallback to config dictionary issue
|
|
13
|
+
|
|
14
|
+
## [3.4.0] - 2023-11-27
|
|
15
|
+
### Changed
|
|
16
|
+
- Update `@subql/node-core` with minor fixes
|
|
17
|
+
|
|
9
18
|
## [3.3.2] - 2023-11-16
|
|
10
19
|
### Fixed
|
|
11
20
|
- Sync with `node-core` 6.4.2, Fix incorrect enqueuedBlocks, dictionaries timing out by updating `@subql/apollo-links` (#36)
|
|
12
21
|
|
|
13
22
|
## [3.3.1] - 2023-11-13
|
|
14
23
|
### Changed
|
|
15
|
-
- Updates to match changes in
|
|
24
|
+
- Updates to match changes in `@subql/node-core` (#34)
|
|
16
25
|
- Dictionary service to use dictionary registry
|
|
17
26
|
- Use yargs from node core
|
|
18
27
|
|
|
@@ -51,7 +60,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
51
60
|
- rename `soroban` to `sorobanEndpoint` in network config (#16)
|
|
52
61
|
|
|
53
62
|
## [2.12.0] - 2023-09-12
|
|
54
|
-
[Unreleased]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.
|
|
63
|
+
[Unreleased]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.4.1...HEAD
|
|
64
|
+
[3.4.1]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.4.0...node-stellar/3.4.1
|
|
65
|
+
[3.4.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.3.2...node-stellar/3.4.0
|
|
55
66
|
[3.3.2]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.3.1...node-stellar/3.3.2
|
|
56
67
|
[3.3.1]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.3.0...node-stellar/3.3.1
|
|
57
68
|
[3.3.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.1.0...node-stellar/3.3.0
|