@subql/node-ethereum 2.0.2-2 → 2.1.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 +12 -0
  2. package/package.json +4 -5
package/CHANGELOG.md CHANGED
@@ -5,6 +5,18 @@ 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
+ ## [2.1.0] - 2023-05-11
9
+ ### Changed
10
+ - Sync with Main SDK (#70)
11
+ - Updated node core and changes to match
12
+ - Expose `chainId` to sandbox
13
+ - `bulkRemove` method on the store.
14
+ - Ability to regenerate MMR
15
+ - Ability to migrade MMR from file based db to postgres db and vice versa
16
+
17
+ ### Fixed
18
+ - Dictionary meta error log (#69)
19
+ - Runtime chain name (#71)
8
20
 
9
21
  ## [2.0.1] - 2023-05-09
10
22
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@subql/node-ethereum",
3
- "version": "2.0.2-2",
3
+ "version": "2.1.0",
4
4
  "description": "",
5
5
  "author": "Ian He",
6
6
  "license": "Apache-2.0",
@@ -25,11 +25,11 @@
25
25
  "@nestjs/platform-express": "^8.2.6",
26
26
  "@nestjs/schedule": "^1.0.2",
27
27
  "@subql/common": "^2.1.1",
28
- "@subql/common-ethereum": "2.0.1-0",
28
+ "@subql/common-ethereum": "2.1.0",
29
29
  "@subql/node-core": "^2.1.2",
30
30
  "@subql/testing": "^2.0.0",
31
31
  "@subql/types": "^2.1.2",
32
- "@subql/types-ethereum": "2.0.1-0",
32
+ "@subql/types-ethereum": "2.1.0",
33
33
  "@subql/utils": "^2.1.0",
34
34
  "@willsoto/nestjs-prometheus": "^4.4.0",
35
35
  "cacheable-lookup": "6",
@@ -66,6 +66,5 @@
66
66
  "files": [
67
67
  "/dist",
68
68
  "/bin"
69
- ],
70
- "stableVersion": "2.0.2-1"
69
+ ]
71
70
  }