@subql/common-substrate 4.5.2-0 → 4.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.
- package/CHANGELOG.md +6 -1
- package/package.json +4 -5
- package/dist/.tsbuildinfo +0 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.js +0 -48
- package/dist/index.js.map +0 -1
- package/dist/project/index.d.ts +0 -7
- package/dist/project/index.js +0 -27
- package/dist/project/index.js.map +0 -1
- package/dist/project/load.d.ts +0 -4
- package/dist/project/load.js +0 -35
- package/dist/project/load.js.map +0 -1
- package/dist/project/models.d.ts +0 -63
- package/dist/project/models.js +0 -264
- package/dist/project/models.js.map +0 -1
- package/dist/project/types.d.ts +0 -4
- package/dist/project/types.js +0 -10
- package/dist/project/types.js.map +0 -1
- package/dist/project/utils.d.ts +0 -7
- package/dist/project/utils.js +0 -26
- package/dist/project/utils.js.map +0 -1
- package/dist/project/versioned/ProjectManifestVersioned.d.ts +0 -27
- package/dist/project/versioned/ProjectManifestVersioned.js +0 -57
- package/dist/project/versioned/ProjectManifestVersioned.js.map +0 -1
- package/dist/project/versioned/index.d.ts +0 -2
- package/dist/project/versioned/index.js +0 -21
- package/dist/project/versioned/index.js.map +0 -1
- package/dist/project/versioned/v1_0_0/index.d.ts +0 -1
- package/dist/project/versioned/v1_0_0/index.js +0 -20
- package/dist/project/versioned/v1_0_0/index.js.map +0 -1
- package/dist/project/versioned/v1_0_0/model.d.ts +0 -49
- package/dist/project/versioned/v1_0_0/model.js +0 -227
- package/dist/project/versioned/v1_0_0/model.js.map +0 -1
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
|
### Changed
|
|
9
|
+
- Update `@subql/common`
|
|
10
|
+
|
|
11
|
+
## [4.5.2] - 2025-07-30
|
|
12
|
+
### Changed
|
|
9
13
|
- Lock down class-transformer and class-validator versions (#2871)
|
|
10
14
|
|
|
11
15
|
## [4.5.1] - 2025-07-17
|
|
@@ -227,7 +231,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
227
231
|
### Added
|
|
228
232
|
- init commit
|
|
229
233
|
|
|
230
|
-
[Unreleased]: https://github.com/subquery/subql/compare/common-substrate/4.5.
|
|
234
|
+
[Unreleased]: https://github.com/subquery/subql/compare/common-substrate/4.5.2...HEAD
|
|
235
|
+
[4.5.2]: https://github.com/subquery/subql/compare/common-substrate/4.5.1...common-substrate/4.5.2
|
|
231
236
|
[4.5.1]: https://github.com/subquery/subql/compare/common-substrate/4.5.0...common-substrate/4.5.1
|
|
232
237
|
[4.5.0]: https://github.com/subquery/subql/compare/common-substrate/4.4.0...common-substrate/4.5.0
|
|
233
238
|
[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.
|
|
3
|
+
"version": "4.5.3",
|
|
4
4
|
"description": "",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "rm -rf dist && tsc -b",
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"main": "dist/index.js",
|
|
15
15
|
"license": "GPL-3.0",
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@subql/common": "~5.
|
|
18
|
-
"@subql/types": "~3.
|
|
17
|
+
"@subql/common": "~5.8.0",
|
|
18
|
+
"@subql/types": "~3.15.0"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|
|
21
21
|
"class-transformer": "^0.5.1",
|
|
@@ -33,6 +33,5 @@
|
|
|
33
33
|
"README.md",
|
|
34
34
|
"CHANGELOG.md",
|
|
35
35
|
"LICENSE"
|
|
36
|
-
]
|
|
37
|
-
"stableVersion": "4.5.1"
|
|
36
|
+
]
|
|
38
37
|
}
|