@subql/node-ethereum 3.0.4 → 3.0.5-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 +4 -0
  2. package/package.json +4 -3
package/CHANGELOG.md CHANGED
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [3.0.4] - 2023-10-12
10
+ ### Fixed
11
+ - Update `@subql/node-core` to fix issues with using object destructing for store interface and workers
12
+
9
13
  ## [3.0.4] - 2023-10-12
10
14
  ### Changed
11
15
  - debug has changed from a boolean to a string to allow scoping debug log level (#2077)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@subql/node-ethereum",
3
- "version": "3.0.4",
3
+ "version": "3.0.5-0",
4
4
  "description": "",
5
5
  "author": "Ian He",
6
6
  "license": "GPL-3.0",
@@ -26,7 +26,7 @@
26
26
  "@nestjs/schedule": "^3.0.1",
27
27
  "@subql/common": "3.1.2",
28
28
  "@subql/common-ethereum": "3.0.3",
29
- "@subql/node-core": "^6.0.1",
29
+ "@subql/node-core": "^6.0.2",
30
30
  "@subql/testing": "^2.0.2",
31
31
  "@subql/types-ethereum": "3.0.2",
32
32
  "cacheable-lookup": "6",
@@ -64,5 +64,6 @@
64
64
  "files": [
65
65
  "/dist",
66
66
  "/bin"
67
- ]
67
+ ],
68
+ "stableVersion": "3.0.4"
68
69
  }