@subql/node-ethereum 2.12.0 → 2.12.2
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 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -6,11 +6,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [2.12.2] - 2023-09-04
|
|
10
|
+
### Fixed
|
|
11
|
+
- Previous failed release
|
|
12
|
+
|
|
13
|
+
## [2.12.1] - 2023-09-01
|
|
14
|
+
### Fixed
|
|
15
|
+
- Update `node-core` to 4.2.6, fix timeout issue for unavailable networks in dictionary resolver.
|
|
16
|
+
|
|
9
17
|
## [2.12.0] - 2023-09-01
|
|
10
18
|
### Fixed
|
|
11
19
|
- Fallback to singular provider if batch provider is not supported (#144)
|
|
12
20
|
- Fix missing ds option for event in dictionary query entries (#145)
|
|
13
21
|
- Update `node-core` to 4.2.5, fix dictionary failed to get token issue.
|
|
22
|
+
|
|
14
23
|
### Added
|
|
15
24
|
- Custom provider for Celo (#147)
|
|
16
25
|
|
|
@@ -23,6 +32,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
23
32
|
## [2.10.0] - 2023-07-31
|
|
24
33
|
### Added
|
|
25
34
|
- Added `!null` filter for logs (#135)
|
|
35
|
+
|
|
26
36
|
### Changed
|
|
27
37
|
- Update license to GPL-3.0 (#137)
|
|
28
38
|
- Updated retry logic for eth requests (#134)
|
|
@@ -206,7 +216,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
206
216
|
### Added
|
|
207
217
|
- Init release
|
|
208
218
|
|
|
209
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.12.
|
|
219
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.12.2...HEAD
|
|
220
|
+
[2.12.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.12.1...node-ethereum/2.12.2
|
|
221
|
+
[2.12.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.12.0...node-ethereum/2.12.1
|
|
210
222
|
[2.12.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.11.1...node-ethereum/2.12.0
|
|
211
223
|
[2.11.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.10.0...node-ethereum/2.11.1
|
|
212
224
|
[2.10.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.9.2...node-ethereum/2.10.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@subql/node-ethereum",
|
|
3
|
-
"version": "2.12.
|
|
3
|
+
"version": "2.12.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "Ian He",
|
|
6
6
|
"license": "GPL-3.0",
|
|
@@ -25,11 +25,11 @@
|
|
|
25
25
|
"@nestjs/platform-express": "^9.4.0",
|
|
26
26
|
"@nestjs/schedule": "^3.0.1",
|
|
27
27
|
"@subql/common": "^2.6.0",
|
|
28
|
-
"@subql/common-ethereum": "2.2.
|
|
29
|
-
"@subql/node-core": "^4.2.
|
|
28
|
+
"@subql/common-ethereum": "2.2.4",
|
|
29
|
+
"@subql/node-core": "^4.2.6",
|
|
30
30
|
"@subql/testing": "^2.0.0",
|
|
31
31
|
"@subql/types": "^2.1.4",
|
|
32
|
-
"@subql/types-ethereum": "2.2.
|
|
32
|
+
"@subql/types-ethereum": "2.2.5",
|
|
33
33
|
"@willsoto/nestjs-prometheus": "^4.4.0",
|
|
34
34
|
"cacheable-lookup": "6",
|
|
35
35
|
"cron-converter": "^1.0.2",
|