@subql/common-substrate 4.5.1 → 4.5.2

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 +4 -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
+ ## [4.5.2] - 2025-07-30
10
+ ### Changed
11
+ - Lock down class-transformer and class-validator versions (#2871)
12
+
9
13
  ## [4.5.1] - 2025-07-17
10
14
  ### Changed
11
15
  - Workspace dependencies now match to patch versions rather than exact (#2855)
@@ -225,7 +229,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
225
229
  ### Added
226
230
  - init commit
227
231
 
228
- [Unreleased]: https://github.com/subquery/subql/compare/common-substrate/4.5.1...HEAD
232
+ [Unreleased]: https://github.com/subquery/subql/compare/common-substrate/4.5.2...HEAD
233
+ [4.5.2]: https://github.com/subquery/subql/compare/common-substrate/4.5.1...common-substrate/4.5.2
229
234
  [4.5.1]: https://github.com/subquery/subql/compare/common-substrate/4.5.0...common-substrate/4.5.1
230
235
  [4.5.0]: https://github.com/subquery/subql/compare/common-substrate/4.4.0...common-substrate/4.5.0
231
236
  [4.4.0]: https://github.com/subquery/subql/compare/common-substrate/4.3.7...common-substrate/4.4.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@subql/common-substrate",
3
- "version": "4.5.1",
3
+ "version": "4.5.2",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rm -rf dist && tsc -b",
@@ -14,12 +14,12 @@
14
14
  "main": "dist/index.js",
15
15
  "license": "GPL-3.0",
16
16
  "dependencies": {
17
- "@subql/common": "~5.7.2",
17
+ "@subql/common": "~5.7.3",
18
18
  "@subql/types": "~3.14.1"
19
19
  },
20
20
  "peerDependencies": {
21
- "class-transformer": "*",
22
- "class-validator": "*"
21
+ "class-transformer": "^0.5.1",
22
+ "class-validator": "0.14.1"
23
23
  },
24
24
  "files": [
25
25
  "/dist",