@subql/common-substrate 4.3.7 → 4.4.1-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 +8 -1
- package/dist/.tsbuildinfo +1 -1
- package/dist/index.js +17 -7
- package/dist/index.js.map +1 -1
- package/package.json +18 -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
|
@@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
|
+
### Removed
|
|
9
|
+
- Test files and artifacts from published package (#2838)
|
|
10
|
+
|
|
11
|
+
## [4.4.0] - 2025-04-17
|
|
12
|
+
### Changed
|
|
13
|
+
- Update `@subql/common`
|
|
8
14
|
|
|
9
15
|
## [4.3.7] - 2025-02-04
|
|
10
16
|
### Changed
|
|
@@ -213,7 +219,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
213
219
|
### Added
|
|
214
220
|
- init commit
|
|
215
221
|
|
|
216
|
-
[Unreleased]: https://github.com/subquery/subql/compare/common-substrate/4.
|
|
222
|
+
[Unreleased]: https://github.com/subquery/subql/compare/common-substrate/4.4.0...HEAD
|
|
223
|
+
[4.4.0]: https://github.com/subquery/subql/compare/common-substrate/4.3.7...common-substrate/4.4.0
|
|
217
224
|
[4.3.7]: https://github.com/subquery/subql/compare/common-substrate/4.3.6...common-substrate/4.3.7
|
|
218
225
|
[4.3.6]: https://github.com/subquery/subql/compare/common-substrate/4.3.5...common-substrate/4.3.6
|
|
219
226
|
[4.3.5]: https://github.com/subquery/subql/compare/common-substrate/4.3.4...common-substrate/4.3.5
|