@subql/node-stellar 4.0.5-0 → 4.1.1-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 +7 -1
- package/dist/.tsbuildinfo +1 -1
- package/dist/indexer/fetch.module.js +1 -2
- package/dist/indexer/fetch.module.js.map +1 -1
- package/dist/indexer/worker/worker-fetch.module.js +1 -1
- package/dist/indexer/worker/worker-fetch.module.js.map +1 -1
- package/dist/subcommands/reindex.module.js +14 -2
- package/dist/subcommands/reindex.module.js.map +1 -1
- package/dist/subcommands/testing.module.js +0 -1
- package/dist/subcommands/testing.module.js.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,11 @@ 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
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
- Incorrect parameter injection in ApiService
|
|
11
|
+
|
|
12
|
+
## [4.1.0] - 2024-11-27
|
|
8
13
|
### Added
|
|
9
14
|
- Support for historical indexing by timestamp as well as block height
|
|
10
15
|
- Add an `--enable-cache` flag, allowing you to choose between DB or cache for IO operations.
|
|
@@ -165,7 +170,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
165
170
|
- rename `soroban` to `sorobanEndpoint` in network config (#16)
|
|
166
171
|
|
|
167
172
|
## [2.12.0] - 2023-09-12
|
|
168
|
-
[Unreleased]: https://github.com/subquery/subql-stellar/compare/node-stellar/4.0
|
|
173
|
+
[Unreleased]: https://github.com/subquery/subql-stellar/compare/node-stellar/4.1.0...HEAD
|
|
174
|
+
[4.1.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/4.0.4...node-stellar/4.1.0
|
|
169
175
|
[4.0.4]: https://github.com/subquery/subql-stellar/compare/node-stellar/4.0.3...node-stellar/4.0.4
|
|
170
176
|
[4.0.3]: https://github.com/subquery/subql-stellar/compare/node-stellar/4.0.0...node-stellar/4.0.3
|
|
171
177
|
[4.0.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.12.1...node-stellar/4.0.0
|