@subql/node-ethereum 2.5.3-0 → 2.5.3

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 +6 -1
  2. package/package.json +3 -4
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
+ ## [2.5.3] - 2023-06-13
10
+ ### Fixed
11
+ - Fix module missing sequelize, use subql/x-sequelize (#101)
12
+
9
13
  ## [2.5.2] - 2023-06-07
10
14
  ### Fixed
11
15
  - Sync with node-core 2.4.4, fixed various issue for mmr
@@ -126,7 +130,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
126
130
  - Retry request when encouraging timeout/rate limit behaviours (#9)
127
131
 
128
132
  ## [0.1.0] - 2022-10-31
129
- [Unreleased]: https://github.com/subquery/subql-ethereum/compare/node/v2.5.2...HEAD
133
+ [Unreleased]: https://github.com/subquery/subql-ethereum/compare/v2.5.3...HEAD
134
+ [2.5.3]: https://github.com/subquery/subql-ethereum/compare/node/v2.5.2...node/v2.5.3
130
135
  [2.5.2]: https://github.com/subquery/subql-ethereum/compare/node/v2.5.1...node/v2.5.2
131
136
  [2.5.1]: https://github.com/subquery/subql-ethereum/compare/node/v2.5.0...node/v2.5.1
132
137
  [2.5.0]: https://github.com/subquery/subql-ethereum/compare/node/2.2.2...node/2.5.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@subql/node-ethereum",
3
- "version": "2.5.3-0",
3
+ "version": "2.5.3",
4
4
  "description": "",
5
5
  "author": "Ian He",
6
6
  "license": "Apache-2.0",
@@ -25,7 +25,7 @@
25
25
  "@nestjs/platform-express": "^8.2.6",
26
26
  "@nestjs/schedule": "^1.0.2",
27
27
  "@subql/common": "^2.2.1",
28
- "@subql/common-ethereum": "2.1.2-0",
28
+ "@subql/common-ethereum": "2.1.2",
29
29
  "@subql/node-core": "^2.4.5",
30
30
  "@subql/testing": "^2.0.0",
31
31
  "@subql/types": "^2.1.2",
@@ -67,6 +67,5 @@
67
67
  "files": [
68
68
  "/dist",
69
69
  "/bin"
70
- ],
71
- "stableVersion": "2.5.2"
70
+ ]
72
71
  }