@subql/node-ethereum 2.5.4-1 → 2.6.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 +8 -2
- package/dist/.tsbuildinfo +1 -1
- package/dist/indexer/fetch.service.d.ts +6 -0
- package/dist/indexer/fetch.service.js +58 -45
- package/dist/indexer/fetch.service.js.map +1 -1
- package/dist/indexer/fetch.service.spec.d.ts +1 -0
- package/dist/indexer/fetch.service.spec.js +37 -0
- package/dist/indexer/fetch.service.spec.js.map +1 -0
- package/package.json +3 -4
package/CHANGELOG.md
CHANGED
|
@@ -4,7 +4,12 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
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
|
+
## [2.6.0] - 2023-06-15
|
|
8
|
+
### Added
|
|
9
|
+
- Implement multiple-endpoint improvements from node-core (#102)
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
- Dictionary queries not including null filters (#104)
|
|
8
13
|
|
|
9
14
|
## [2.5.3] - 2023-06-13
|
|
10
15
|
### Fixed
|
|
@@ -130,7 +135,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
130
135
|
- Retry request when encouraging timeout/rate limit behaviours (#9)
|
|
131
136
|
|
|
132
137
|
## [0.1.0] - 2022-10-31
|
|
133
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/v2.
|
|
138
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/v2.6.0...HEAD
|
|
139
|
+
[2.6.0]: https://github.com/subquery/subql-ethereum/compare/node/v2.5.3...node/v2.6.0
|
|
134
140
|
[2.5.3]: https://github.com/subquery/subql-ethereum/compare/node/v2.5.2...node/v2.5.3
|
|
135
141
|
[2.5.2]: https://github.com/subquery/subql-ethereum/compare/node/v2.5.1...node/v2.5.2
|
|
136
142
|
[2.5.1]: https://github.com/subquery/subql-ethereum/compare/node/v2.5.0...node/v2.5.1
|