Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[release] 20241204 #2618

Merged
merged 1 commit into from
Dec 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .yarn/versions/3b3e24c8.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
undecided:
- "@subql/cli"
- "@subql/node"
- "@subql/node-core"
7 changes: 6 additions & 1 deletion packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [5.3.3] - 2024-12-04
### Changed
- No actual changes, just a re-release

## [5.3.2] - 2024-11-25
### Changed
- Update polkadot/api library to 14 version
Expand Down Expand Up @@ -695,7 +699,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- support subcommand codegen
- support subcommand init

[Unreleased]: https://github.com/subquery/subql/compare/cli/5.3.2...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/cli/5.3.3...HEAD
[5.3.3]: https://github.com/subquery/subql/compare/cli/5.3.2...cli/5.3.3
[5.3.2]: https://github.com/subquery/subql/compare/cli/5.3.1...cli/5.3.2
[5.3.1]: https://github.com/subquery/subql/compare/cli/5.3.0...cli/5.3.1
[5.3.0]: https://github.com/subquery/subql/compare/cli/5.2.8...cli/5.3.0
Expand Down
5 changes: 2 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@subql/cli",
"description": "cli for subquery",
"version": "5.3.3-0",
"version": "5.3.3",
"author": "Ian He",
"bin": {
"subql": "./bin/run"
Expand Down Expand Up @@ -88,6 +88,5 @@
"types": "lib/index.d.ts",
"resolutions": {
"node-fetch": "2.6.7"
},
"stableVersion": "5.3.2"
}
}
5 changes: 4 additions & 1 deletion packages/node-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [16.0.0] - 2024-12-04
### Removed
- SmartBatchService as it didn't function as intended (#2611)

Expand Down Expand Up @@ -878,7 +880,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Move blockchain agnostic code from `node` to `node-core` package. (#1222)

[Unreleased]: https://github.com/subquery/subql/compare/node-core/15.0.3...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/node-core/16.0.0...HEAD
[16.0.0]: https://github.com/subquery/subql/compare/node-core/15.0.3...node-core/16.0.0
[15.0.3]: https://github.com/subquery/subql/compare/node-core/15.0.2...node-core/15.0.3
[15.0.2]: https://github.com/subquery/subql/compare/node-core/15.0.1...node-core/15.0.2
[15.0.1]: https://github.com/subquery/subql/compare/node-core/15.0.0...node-core/15.0.1
Expand Down
5 changes: 2 additions & 3 deletions packages/node-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@subql/node-core",
"version": "15.0.4-1",
"version": "16.0.0",
"description": "Common node features that are agnostic to blockchains",
"homepage": "https://github.com/subquery/subql",
"repository": "github:subquery/subql",
Expand Down Expand Up @@ -47,6 +47,5 @@
},
"devDependencies": {
"@types/yargs": "^16.0.9"
},
"stableVersion": "15.0.4-0"
}
}
5 changes: 4 additions & 1 deletion packages/node/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [5.5.0] - 2024-12-04
### Changed
- Add block size function to match breaking node-core change (#2611)

Expand Down Expand Up @@ -1351,7 +1353,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- bump @polkadot/api to 3.1.1

[Unreleased]: https://github.com/subquery/subql/compare/node/5.4.2...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/node/5.5.0...HEAD
[5.5.0]: https://github.com/subquery/subql/compare/node/5.4.2...node/5.5.0
[5.4.2]: https://github.com/subquery/subql/compare/node/5.4.1...node/5.4.2
[5.4.1]: https://github.com/subquery/subql/compare/node/5.4.0...node/5.4.1
[5.4.0]: https://github.com/subquery/subql/compare/node/5.3.0...node/5.4.0
Expand Down
5 changes: 2 additions & 3 deletions packages/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@subql/node",
"version": "5.4.3-1",
"version": "5.5.0",
"description": "",
"author": "Ian He",
"license": "GPL-3.0",
Expand Down Expand Up @@ -50,6 +50,5 @@
"files": [
"/dist",
"/bin"
],
"stableVersion": "5.4.3-0"
]
}
7 changes: 6 additions & 1 deletion packages/query/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [2.18.0] - 2024-12-04
### Fixed
- High CPU usage caused by interval with 0ms (#2614)

### Added
- Add PgOrderByRelatedPlugin to GraphQL query package

Expand Down Expand Up @@ -384,7 +387,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- overwrite plugin to fix one to one unique key check
- update query publish and docker build process

[Unreleased]: https://github.com/subquery/subql/compare/query/2.17.0...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/query/2.18.0...HEAD
[2.18.0]: https://github.com/subquery/subql/compare/query/2.17.1...query/2.18.0
[2.17.1]: https://github.com/subquery/subql/compare/query/2.17.0...query/2.17.1
[2.17.0]: https://github.com/subquery/subql/compare/query/2.16.0...query/2.17.0
[2.16.0]: https://github.com/subquery/subql/compare/query/2.15.2...query/2.16.0
[2.15.2]: https://github.com/subquery/subql/compare/query/2.15.1...query/2.15.2
Expand Down
5 changes: 2 additions & 3 deletions packages/query/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@subql/query",
"version": "2.17.2-1",
"version": "2.18.0",
"description": "",
"bin": {
"subql-query": "./bin/run"
Expand Down Expand Up @@ -70,6 +70,5 @@
"@types/ws": "^8",
"@types/yargs": "^16.0.9",
"nodemon": "^3.1.4"
},
"stableVersion": "2.17.2-0"
}
}
Loading