@subql/common-substrate 4.4.0 → 4.5.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.
- package/CHANGELOG.md +6 -1
- package/dist/.tsbuildinfo +1 -1
- package/package.json +17 -4
- package/dist/project/load.spec.d.ts +0 -1
- package/dist/project/load.spec.js +0 -15
- package/dist/project/load.spec.js.map +0 -1
- package/dist/project/project.spec.d.ts +0 -1
- package/dist/project/project.spec.js +0 -117
- package/dist/project/project.spec.js.map +0 -1
- package/src/index.ts +0 -14
- package/src/project/index.ts +0 -11
- package/src/project/load.spec.ts +0 -16
- package/src/project/load.ts +0 -34
- package/src/project/models.ts +0 -180
- package/src/project/project.spec.ts +0 -148
- package/src/project/types.ts +0 -25
- package/src/project/utils.ts +0 -45
- package/src/project/versioned/ProjectManifestVersioned.ts +0 -73
- package/src/project/versioned/index.ts +0 -5
- package/src/project/versioned/v1_0_0/index.ts +0 -4
- package/src/project/versioned/v1_0_0/model.ts +0 -175
- package/test/project_1.0.0.yaml +0 -91
- package/test/project_1.0.0_bad_processor.yaml +0 -93
- package/test/project_1.0.0_bad_runner.yaml +0 -91
- package/test/project_1.0.0_bad_runner_version.yaml +0 -91
- package/test/project_1.0.0_chainId.yaml +0 -91
- package/test/project_1.0.0_custom_ds.yaml +0 -34
- package/test/project_1.0.0_falsy.yaml +0 -33
- package/test/project_1.0.0_falsy_array.yaml +0 -32
- package/test/project_1.0.0_node_options.yaml +0 -94
- package/test/project_1.0.0_runner_ds_mismatch.yaml +0 -34
- package/test/project_bypass.yaml +0 -36
- package/test/project_bypass_range.yaml +0 -36
- package/test/project_invalid_version.yaml +0 -29
- package/tsconfig.json +0 -11
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.0] - 2025-07-01
|
|
10
|
+
### Removed
|
|
11
|
+
- Test files and artifacts from published package (#2838)
|
|
12
|
+
|
|
9
13
|
## [4.4.0] - 2025-04-17
|
|
10
14
|
### Changed
|
|
11
15
|
- Update `@subql/common`
|
|
@@ -217,7 +221,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
217
221
|
### Added
|
|
218
222
|
- init commit
|
|
219
223
|
|
|
220
|
-
[Unreleased]: https://github.com/subquery/subql/compare/common-substrate/4.
|
|
224
|
+
[Unreleased]: https://github.com/subquery/subql/compare/common-substrate/4.5.0...HEAD
|
|
225
|
+
[4.5.0]: https://github.com/subquery/subql/compare/common-substrate/4.4.0...common-substrate/4.5.0
|
|
221
226
|
[4.4.0]: https://github.com/subquery/subql/compare/common-substrate/4.3.7...common-substrate/4.4.0
|
|
222
227
|
[4.3.7]: https://github.com/subquery/subql/compare/common-substrate/4.3.6...common-substrate/4.3.7
|
|
223
228
|
[4.3.6]: https://github.com/subquery/subql/compare/common-substrate/4.3.5...common-substrate/4.3.6
|