@subql/node-algorand 3.14.4 → 3.15.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 +10 -1
- package/dist/.tsbuildinfo +1 -1
- package/dist/algorand/algorand.spec.js +5 -2
- package/dist/algorand/algorand.spec.js.map +1 -1
- package/dist/algorand/api.service.algorand.d.ts +2 -2
- package/dist/algorand/api.service.algorand.js +7 -5
- package/dist/algorand/api.service.algorand.js.map +1 -1
- package/dist/indexer/api.service.spec.js +5 -2
- package/dist/indexer/api.service.spec.js.map +1 -1
- package/dist/indexer/blockDispatcher/block-dispatcher.service.d.ts +2 -2
- package/dist/indexer/blockDispatcher/block-dispatcher.service.js +4 -5
- package/dist/indexer/blockDispatcher/block-dispatcher.service.js.map +1 -1
- package/dist/indexer/blockDispatcher/worker-block-dispatcher.service.d.ts +4 -3
- package/dist/indexer/blockDispatcher/worker-block-dispatcher.service.js +5 -6
- package/dist/indexer/blockDispatcher/worker-block-dispatcher.service.js.map +1 -1
- package/dist/indexer/fetch.module.js +5 -9
- package/dist/indexer/fetch.module.js.map +1 -1
- package/dist/indexer/fetch.service.d.ts +2 -2
- package/dist/indexer/fetch.service.js +4 -4
- package/dist/indexer/fetch.service.js.map +1 -1
- package/dist/indexer/unfinalizedBlocks.service.d.ts +3 -3
- package/dist/indexer/unfinalizedBlocks.service.js +7 -4
- package/dist/indexer/unfinalizedBlocks.service.js.map +1 -1
- package/dist/indexer/worker/worker-fetch.module.js +1 -5
- package/dist/indexer/worker/worker-fetch.module.js.map +1 -1
- package/dist/indexer/worker/worker.service.d.ts +3 -7
- package/dist/indexer/worker/worker.service.js +1 -3
- package/dist/indexer/worker/worker.service.js.map +1 -1
- package/dist/subcommands/reindex.module.js +6 -1
- package/dist/subcommands/reindex.module.js.map +1 -1
- package/dist/subcommands/testing.module.js +11 -2
- package/dist/subcommands/testing.module.js.map +1 -1
- package/dist/subcommands/testing.service.js +0 -1
- package/dist/subcommands/testing.service.js.map +1 -1
- package/package.json +4 -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.15.0] - 2024-11-26
|
|
10
|
+
### Added
|
|
11
|
+
- Support for historical indexing by timestamp as well as block height
|
|
12
|
+
- Add an `--enable-cache` flag, allowing you to choose between DB or cache for IO operations.
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
- Modify the injection logic of apiService
|
|
16
|
+
|
|
9
17
|
## [3.14.4] - 2024-10-23
|
|
10
18
|
### Changed
|
|
11
19
|
- Bump `@subql/common` dependency (#139)
|
|
@@ -273,7 +281,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
273
281
|
- Synced latest changes from main repo. (#10)
|
|
274
282
|
|
|
275
283
|
## [1.6.0] - 2022-08-04
|
|
276
|
-
[Unreleased]: https://github.com/subquery/subql-algorand/compare/node-algorand/3.
|
|
284
|
+
[Unreleased]: https://github.com/subquery/subql-algorand/compare/node-algorand/3.15.0...HEAD
|
|
285
|
+
[3.15.0]: https://github.com/subquery/subql-algorand/compare/node-algorand/3.14.4...node-algorand/3.15.0
|
|
277
286
|
[3.14.4]: https://github.com/subquery/subql-algorand/compare/node-algorand/3.14.3...node-algorand/3.14.4
|
|
278
287
|
[3.14.3]: https://github.com/subquery/subql-algorand/compare/node-algorand/3.14.1...node-algorand/3.14.3
|
|
279
288
|
[3.14.1]: https://github.com/subquery/subql-algorand/compare/node-algorand/3.13.0...node-algorand/3.14.1
|