@subql/node-ethereum 2.9.3-5 → 2.10.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 -6
  2. package/package.json +4 -5
package/CHANGELOG.md CHANGED
@@ -6,15 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
- ### Add
9
+ ## [2.10.0] - 2023-07-31
10
+ ### Added
10
11
  - Added `!null` filter for logs (#135)
11
-
12
- ### Updated
12
+ ### Changed
13
13
  - Update license to GPL-3.0 (#137)
14
14
  - Updated retry logic for eth requests (#134)
15
15
  - Adjust batch size for `JsonRpcBatchProvider` dynamically (#121)
16
- - Sync with node-core :
17
- - init db schema manually during test run
16
+ - Sync with node-core :
17
+ - init db schema manually during test run
18
18
  - fix retry logic for workers in connection pool
19
19
  - Performance scoring fix
20
20
 
@@ -189,7 +189,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
189
189
  - Retry request when encouraging timeout/rate limit behaviours (#9)
190
190
 
191
191
  ## [0.1.0] - 2022-10-31
192
- [Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.9.2...HEAD
192
+ ### Added
193
+ - Init release
194
+
195
+ [Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.10.0...HEAD
196
+ [2.10.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.9.2...node-ethereum/2.10.0
193
197
  [2.9.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.9.1...node-ethereum/2.9.2
194
198
  [2.9.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.9.0...node-ethereum/2.9.1
195
199
  [2.9.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.8.0...node-ethereum/2.9.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@subql/node-ethereum",
3
- "version": "2.9.3-5",
3
+ "version": "2.10.0",
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.4.0",
28
- "@subql/common-ethereum": "2.2.1-1",
28
+ "@subql/common-ethereum": "2.2.1",
29
29
  "@subql/node-core": "^4.0.1",
30
30
  "@subql/testing": "^2.0.0",
31
31
  "@subql/types": "^2.1.2",
32
- "@subql/types-ethereum": "2.2.3-2",
32
+ "@subql/types-ethereum": "2.2.3",
33
33
  "@willsoto/nestjs-prometheus": "^4.4.0",
34
34
  "cacheable-lookup": "6",
35
35
  "cron-converter": "^1.0.2",
@@ -66,6 +66,5 @@
66
66
  "files": [
67
67
  "/dist",
68
68
  "/bin"
69
- ],
70
- "stableVersion": "2.9.3-4"
69
+ ]
71
70
  }