@subql/node-ethereum 2.12.1 → 2.12.3-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.
Files changed (2) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/package.json +6 -5
package/CHANGELOG.md CHANGED
@@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ### Fixed
10
+ - lock to `@subql/common` 2.6.0, in order to fix unknown reader issue.
11
+
12
+ ## [2.12.2] - 2023-09-04
13
+ ### Fixed
14
+ - Previous failed release
15
+
9
16
  ## [2.12.1] - 2023-09-01
10
17
  ### Fixed
11
18
  - Update `node-core` to 4.2.6, fix timeout issue for unavailable networks in dictionary resolver.
@@ -15,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
15
22
  - Fallback to singular provider if batch provider is not supported (#144)
16
23
  - Fix missing ds option for event in dictionary query entries (#145)
17
24
  - Update `node-core` to 4.2.5, fix dictionary failed to get token issue.
25
+
18
26
  ### Added
19
27
  - Custom provider for Celo (#147)
20
28
 
@@ -27,6 +35,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
27
35
  ## [2.10.0] - 2023-07-31
28
36
  ### Added
29
37
  - Added `!null` filter for logs (#135)
38
+
30
39
  ### Changed
31
40
  - Update license to GPL-3.0 (#137)
32
41
  - Updated retry logic for eth requests (#134)
@@ -211,6 +220,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
211
220
  - Init release
212
221
 
213
222
  [Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.12.2...HEAD
223
+ [2.12.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.12.1...node-ethereum/2.12.2
214
224
  [2.12.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.12.0...node-ethereum/2.12.1
215
225
  [2.12.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.11.1...node-ethereum/2.12.0
216
226
  [2.11.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.10.0...node-ethereum/2.11.1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@subql/node-ethereum",
3
- "version": "2.12.1",
3
+ "version": "2.12.3-0",
4
4
  "description": "",
5
5
  "author": "Ian He",
6
6
  "license": "GPL-3.0",
@@ -24,12 +24,12 @@
24
24
  "@nestjs/event-emitter": "^2.0.0",
25
25
  "@nestjs/platform-express": "^9.4.0",
26
26
  "@nestjs/schedule": "^3.0.1",
27
- "@subql/common": "^2.6.0",
28
- "@subql/common-ethereum": "2.2.3",
27
+ "@subql/common": "2.6.0",
28
+ "@subql/common-ethereum": "2.2.5-0",
29
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.4",
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",
@@ -66,5 +66,6 @@
66
66
  "files": [
67
67
  "/dist",
68
68
  "/bin"
69
- ]
69
+ ],
70
+ "stableVersion": "2.12.2"
70
71
  }