@subql/node-ethereum 3.3.7-0 → 3.4.1

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 +12 -2
  2. package/package.json +3 -4
package/CHANGELOG.md CHANGED
@@ -5,7 +5,15 @@ 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
+ ## [3.4.1] - 2023-11-28
10
+ ### Fixed
11
+ - Fix ipfs deployment templates path failed to resolved, issue was introduced node-core 7.0.0
12
+ - Update with node-core to fix network dictionary timeout but not fallback to config dictionary issue
13
+
14
+ ## [3.4.0] - 2023-11-27
8
15
  ### Added
16
+ - Update `@subql/node-core` with bug fixes
9
17
  - Different method for detecting block forks for chains with probabalistic finalization (#217)
10
18
 
11
19
  ## [3.3.6] - 2023-11-23
@@ -22,7 +30,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
22
30
 
23
31
  ## [3.3.3] - 2023-11-13
24
32
  ### Changed
25
- - Updates to match changes in `@subql/node-core` (#210)
33
+ - Updates to match changes in
26
34
  - Dictionary service to use dictionary registry
27
35
  - Use yargs from node core
28
36
 
@@ -340,7 +348,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
340
348
  ### Added
341
349
  - Init release
342
350
 
343
- [Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.3.6...HEAD
351
+ [Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.4.1...HEAD
352
+ [3.4.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.4.0...node-ethereum/3.4.1
353
+ [3.4.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.3.6...node-ethereum/3.4.0
344
354
  [3.3.6]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.3.5...node-ethereum/3.3.6
345
355
  [3.3.5]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.3.4...node-ethereum/3.3.5
346
356
  [3.3.4]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.3.3...node-ethereum/3.3.4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@subql/node-ethereum",
3
- "version": "3.3.7-0",
3
+ "version": "3.4.1",
4
4
  "description": "",
5
5
  "author": "Ian He",
6
6
  "license": "GPL-3.0",
@@ -27,7 +27,7 @@
27
27
  "@nestjs/schedule": "^3.0.1",
28
28
  "@subql/common": "^3.3.0",
29
29
  "@subql/common-ethereum": "3.1.0",
30
- "@subql/node-core": "^7.0.0",
30
+ "@subql/node-core": "^7.0.1",
31
31
  "@subql/testing": "^2.0.2",
32
32
  "@subql/types-ethereum": "3.2.0",
33
33
  "cacheable-lookup": "6",
@@ -65,6 +65,5 @@
65
65
  "files": [
66
66
  "/dist",
67
67
  "/bin"
68
- ],
69
- "stableVersion": "3.3.6"
68
+ ]
70
69
  }