@subql/node-algorand 3.15.1 → 3.16.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/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 +1 -0
- package/dist/indexer/types.js +9 -0
- package/dist/indexer/types.js.map +1 -1
- package/dist/indexer/worker/worker.service.d.ts +1 -0
- package/dist/indexer/worker/worker.service.js +4 -0
- package/dist/indexer/worker/worker.service.js.map +1 -1
- package/package.json +4 -4
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.16.0] - 2024-12-17
|
|
10
|
+
### Changed
|
|
11
|
+
- Update `@subql/node-core` and `@subql/common` dependencies
|
|
12
|
+
|
|
9
13
|
## [3.15.1] - 2024-12-06
|
|
10
14
|
### Fixed
|
|
11
15
|
- Missing API dependency when using reindex
|
|
@@ -285,7 +289,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
285
289
|
- Synced latest changes from main repo. (#10)
|
|
286
290
|
|
|
287
291
|
## [1.6.0] - 2022-08-04
|
|
288
|
-
[Unreleased]: https://github.com/subquery/subql-algorand/compare/node-algorand/3.
|
|
292
|
+
[Unreleased]: https://github.com/subquery/subql-algorand/compare/node-algorand/3.16.0...HEAD
|
|
293
|
+
[3.16.0]: https://github.com/subquery/subql-algorand/compare/node-algorand/3.15.1...node-algorand/3.16.0
|
|
289
294
|
[3.15.1]: https://github.com/subquery/subql-algorand/compare/node-algorand/3.15.0...node-algorand/3.15.1
|
|
290
295
|
[3.15.0]: https://github.com/subquery/subql-algorand/compare/node-algorand/3.14.4...node-algorand/3.15.0
|
|
291
296
|
[3.14.4]: https://github.com/subquery/subql-algorand/compare/node-algorand/3.14.3...node-algorand/3.14.4
|