@subql/node-ethereum 2.12.5-0 → 2.12.5
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.
- package/CHANGELOG.md +5 -2
- package/package.json +3 -4
package/CHANGELOG.md
CHANGED
|
@@ -6,8 +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.12.5] - 2023-09-12
|
|
9
10
|
### Fixed
|
|
10
11
|
- Fix nestjs-prometheus dependency issue (#163)
|
|
12
|
+
- Sync with node-core 4.2.8, fix NodeConfig scaleBatchSize call itself
|
|
11
13
|
|
|
12
14
|
## [2.12.4] - 2023-09-12
|
|
13
15
|
### Fixed
|
|
@@ -230,8 +232,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
230
232
|
### Added
|
|
231
233
|
- Init release
|
|
232
234
|
|
|
233
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/
|
|
234
|
-
[2.12.
|
|
235
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.12.5...HEAD
|
|
236
|
+
[2.12.5]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.12.4...node-ethereum/2.12.5
|
|
237
|
+
[2.12.4]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.12.3...node-ethereum/2.12.4
|
|
235
238
|
[2.12.3]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.12.2...node-ethereum/2.12.3
|
|
236
239
|
[2.12.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.12.1...node-ethereum/2.12.2
|
|
237
240
|
[2.12.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.12.0...node-ethereum/2.12.1
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@subql/node-ethereum",
|
|
3
|
-
"version": "2.12.5
|
|
3
|
+
"version": "2.12.5",
|
|
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": "2.6.0",
|
|
28
28
|
"@subql/common-ethereum": "2.3.0",
|
|
29
|
-
"@subql/node-core": "^4.2.
|
|
29
|
+
"@subql/node-core": "^4.2.8",
|
|
30
30
|
"@subql/testing": "^2.0.0",
|
|
31
31
|
"@subql/types": "^2.1.4",
|
|
32
32
|
"@subql/types-ethereum": "2.2.5",
|
|
@@ -65,6 +65,5 @@
|
|
|
65
65
|
"files": [
|
|
66
66
|
"/dist",
|
|
67
67
|
"/bin"
|
|
68
|
-
]
|
|
69
|
-
"stableVersion": "2.12.4"
|
|
68
|
+
]
|
|
70
69
|
}
|