Skip to content

Commit 6b3aa29

Browse files
authored
[release] 20250916 (#2916)
1 parent 167b44a commit 6b3aa29

16 files changed

Lines changed: 73 additions & 76 deletions

File tree

.yarn/versions/97073d37.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
undecided:
2+
- "@subql/cli"
3+
- "@subql/common"
4+
- "@subql/node"
5+
- "@subql/node-core"
6+
- "@subql/query"
7+
- "@subql/types"

packages/cli/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
9+
## [6.3.0] - 2025-09-16
810
### Added
911
- Support for consumer operations on the network via CLI and MCP (#2876)
12+
- Support for .env in mapping handlers (#2901)
1013

1114
## [6.2.2] - 2025-08-29
1215
### Changed
@@ -846,7 +849,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
846849
- support subcommand codegen
847850
- support subcommand init
848851

849-
[Unreleased]: https://github.com/subquery/subql/compare/cli/6.2.2...HEAD
852+
[Unreleased]: https://github.com/subquery/subql/compare/cli/6.3.0...HEAD
853+
[6.3.0]: https://github.com/subquery/subql/compare/cli/6.2.2...cli/6.3.0
850854
[6.2.2]: https://github.com/subquery/subql/compare/cli/6.2.1...cli/6.2.2
851855
[6.2.1]: https://github.com/subquery/subql/compare/cli/6.2.0...cli/6.2.1
852856
[6.2.0]: https://github.com/subquery/subql/compare/cli/6.1.3...cli/6.2.0

packages/cli/package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@subql/cli",
33
"description": "CLI for SubQuery",
4-
"version": "6.2.3-2",
4+
"version": "6.3.0",
55
"author": "SubQuery Pte Ltd.",
66
"bin": {
77
"subql": "./bin/run"
@@ -121,6 +121,5 @@
121121
"codegen:chs": "swagger-typescript-api generate -p chs-swagger.yml -o src/controller/network/consumer-host --api-class-name NetworkConsumerHostServiceApi -n consumer-host-service-api.ts",
122122
"codegen": "yarn codegen:graphql && yarn codegen:chs"
123123
},
124-
"types": "lib/index.d.ts",
125-
"stableVersion": "6.2.3-1"
124+
"types": "lib/index.d.ts"
126125
}

packages/common/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
9+
## [5.7.6] - 2025-09-16
810
### Changed
911
- Improved error message relating to IPFS (#2876)
1012

@@ -484,7 +486,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
484486
### Added
485487
- init commit
486488

487-
[Unreleased]: https://github.com/subquery/subql/compare/common/5.7.5...HEAD
489+
[Unreleased]: https://github.com/subquery/subql/compare/common/5.7.6...HEAD
490+
[5.7.6]: https://github.com/subquery/subql/compare/common/5.7.5...common/5.7.6
488491
[5.7.5]: https://github.com/subquery/subql/compare/common/5.7.4...common/5.7.5
489492
[5.7.4]: https://github.com/subquery/subql/compare/common/5.7.3...common/5.7.4
490493
[5.7.3]: https://github.com/subquery/subql/compare/common/5.7.2...common/5.7.3

packages/common/package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@subql/common",
3-
"version": "5.7.6-1",
3+
"version": "5.7.6",
44
"description": "",
55
"scripts": {
66
"build": "rm -rf dist && tsc -b",
@@ -41,6 +41,5 @@
4141
"README.md",
4242
"CHANGELOG.md",
4343
"LICENSE"
44-
],
45-
"stableVersion": "5.7.6-0"
44+
]
4645
}

packages/node-core/CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
9+
## [18.4.0] - 2025-09-16
810
### Changed
911
- Locked down graphql related dependencies (#2876)
1012
- Update polkadot dependenices (#2915)
1113

14+
### Added
15+
- Support for .env in mapping handlers (#2901)
16+
1217
## [18.3.3] - 2025-09-09
1318
### Fixed
1419
- Dictionary v2 being used with empty filter conditions (#2909)
@@ -1032,7 +1037,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
10321037
### Changed
10331038
- Move blockchain agnostic code from `node` to `node-core` package. (#1222)
10341039

1035-
[Unreleased]: https://github.com/subquery/subql/compare/node-core/18.3.3...HEAD
1040+
[Unreleased]: https://github.com/subquery/subql/compare/node-core/18.4.0...HEAD
1041+
[18.4.0]: https://github.com/subquery/subql/compare/node-core/18.3.3...node-core/18.4.0
10361042
[18.3.3]: https://github.com/subquery/subql/compare/node-core/18.3.2...node-core/18.3.3
10371043
[18.3.2]: https://github.com/subquery/subql/compare/node-core/18.3.1...node-core/18.3.2
10381044
[18.3.1]: https://github.com/subquery/subql/compare/node-core/18.3.0...node-core/18.3.1

packages/node-core/package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@subql/node-core",
3-
"version": "18.3.4-2",
3+
"version": "18.4.0",
44
"description": "Common node features that are agnostic to blockchains",
55
"homepage": "https://github.com/subquery/subql",
66
"repository": "github:subquery/subql",
@@ -57,6 +57,5 @@
5757
},
5858
"devDependencies": {
5959
"@types/yargs": "^16.0.9"
60-
},
61-
"stableVersion": "18.3.4-1"
60+
}
6261
}

packages/node/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
9+
## [6.3.5] - 2025-09-16
810
### Changed
911
- Locked down graphql related dependencies (#2876)
1012
- Update polkadot dependenices (#2915)
@@ -1466,7 +1468,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
14661468
### Changed
14671469
- bump @polkadot/api to 3.1.1
14681470

1469-
[Unreleased]: https://github.com/subquery/subql/compare/node/6.3.4...HEAD
1471+
[Unreleased]: https://github.com/subquery/subql/compare/node/6.3.5...HEAD
1472+
[6.3.5]: https://github.com/subquery/subql/compare/node/6.3.4...node/6.3.5
14701473
[6.3.4]: https://github.com/subquery/subql/compare/node/6.3.3...node/6.3.4
14711474
[6.3.3]: https://github.com/subquery/subql/compare/node/6.3.2...node/6.3.3
14721475
[6.3.2]: https://github.com/subquery/subql/compare/node/6.3.1...node/6.3.2

packages/node/package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@subql/node",
3-
"version": "6.3.5-1",
3+
"version": "6.3.5",
44
"description": "",
55
"author": "Ian He",
66
"license": "GPL-3.0",
@@ -58,6 +58,5 @@
5858
"LICENSE",
5959
"README.md",
6060
"CHANGELOG.md"
61-
],
62-
"stableVersion": "6.3.5-0"
61+
]
6362
}

packages/query/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
9+
## [2.23.6] - 2025-09-16
810
### Changed
911
- Address some linter related warnings (#2876)
1012

@@ -449,7 +451,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
449451
- overwrite plugin to fix one to one unique key check
450452
- update query publish and docker build process
451453

452-
[Unreleased]: https://github.com/subquery/subql/compare/query/2.23.5...HEAD
454+
[Unreleased]: https://github.com/subquery/subql/compare/query/2.23.6...HEAD
455+
[2.23.6]: https://github.com/subquery/subql/compare/query/2.23.5...query/2.23.6
453456
[2.23.5]: https://github.com/subquery/subql/compare/query/2.23.4...query/2.23.5
454457
[2.23.4]: https://github.com/subquery/subql/compare/query/2.23.3...query/2.23.4
455458
[2.23.3]: https://github.com/subquery/subql/compare/query/2.23.2...query/2.23.3

0 commit comments

Comments
 (0)