@subql/common-substrate 4.1.1 → 4.2.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/dist/project/load.js +2 -3
- package/dist/project/load.js.map +1 -1
- package/dist/project/models.js +13 -13
- package/dist/project/models.js.map +1 -1
- package/dist/project/utils.js +5 -6
- package/dist/project/utils.js.map +1 -1
- package/dist/project/versioned/ProjectManifestVersioned.js +2 -2
- package/dist/project/versioned/ProjectManifestVersioned.js.map +1 -1
- package/dist/project/versioned/v1_0_0/model.js +8 -8
- package/dist/project/versioned/v1_0_0/model.js.map +1 -1
- package/package.json +3 -3
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.2.0] - 2024-08-01
|
|
10
|
+
### Added
|
|
11
|
+
- Updated `@subql\common` with support for endpoint specific configs (#2511)
|
|
12
|
+
|
|
9
13
|
## [4.1.1] - 2024-07-25
|
|
10
14
|
### Changed
|
|
11
15
|
- Bump version with `@subql/common`
|
|
@@ -177,7 +181,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
177
181
|
### Added
|
|
178
182
|
- init commit
|
|
179
183
|
|
|
180
|
-
[Unreleased]: https://github.com/subquery/subql/compare/common-substrate/4.
|
|
184
|
+
[Unreleased]: https://github.com/subquery/subql/compare/common-substrate/4.2.0...HEAD
|
|
185
|
+
[4.2.0]: https://github.com/subquery/subql/compare/common-substrate/4.1.1...common-substrate/4.2.0
|
|
181
186
|
[4.1.1]: https://github.com/subquery/subql/compare/common-substrate/4.1.0...common-substrate/4.1.1
|
|
182
187
|
[4.1.0]: https://github.com/subquery/subql/compare/common-substrate/4.0.1...common-substrate/4.1.0
|
|
183
188
|
[4.0.1]: https://github.com/subquery/subql/compare/common-substrate/4.0.0...common-substrate/4.0.1
|