From ca674f78d7529b9ae379dccffefc78aa3895966e Mon Sep 17 00:00:00 2001 From: Scott Twiname Date: Wed, 4 Dec 2024 17:25:09 +1300 Subject: [PATCH] [release] 20241204 (#2618) --- .yarn/versions/3b3e24c8.yml | 4 ++++ packages/cli/CHANGELOG.md | 7 ++++++- packages/cli/package.json | 5 ++--- packages/node-core/CHANGELOG.md | 5 ++++- packages/node-core/package.json | 5 ++--- packages/node/CHANGELOG.md | 5 ++++- packages/node/package.json | 5 ++--- packages/query/CHANGELOG.md | 7 ++++++- packages/query/package.json | 5 ++--- 9 files changed, 32 insertions(+), 16 deletions(-) create mode 100644 .yarn/versions/3b3e24c8.yml diff --git a/.yarn/versions/3b3e24c8.yml b/.yarn/versions/3b3e24c8.yml new file mode 100644 index 0000000000..ed92b63a52 --- /dev/null +++ b/.yarn/versions/3b3e24c8.yml @@ -0,0 +1,4 @@ +undecided: + - "@subql/cli" + - "@subql/node" + - "@subql/node-core" diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index b57a79cd71..bb1ffe95b8 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -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 @@ -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 diff --git a/packages/cli/package.json b/packages/cli/package.json index b2eaccc044..b8838c1471 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -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" @@ -88,6 +88,5 @@ "types": "lib/index.d.ts", "resolutions": { "node-fetch": "2.6.7" - }, - "stableVersion": "5.3.2" + } } diff --git a/packages/node-core/CHANGELOG.md b/packages/node-core/CHANGELOG.md index 30c889e22e..d3ed6e5c65 100644 --- a/packages/node-core/CHANGELOG.md +++ b/packages/node-core/CHANGELOG.md @@ -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) @@ -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 diff --git a/packages/node-core/package.json b/packages/node-core/package.json index c2cddb71e8..937afb38b7 100644 --- a/packages/node-core/package.json +++ b/packages/node-core/package.json @@ -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", @@ -47,6 +47,5 @@ }, "devDependencies": { "@types/yargs": "^16.0.9" - }, - "stableVersion": "15.0.4-0" + } } diff --git a/packages/node/CHANGELOG.md b/packages/node/CHANGELOG.md index b3b7aeb26d..7611c0bd9a 100644 --- a/packages/node/CHANGELOG.md +++ b/packages/node/CHANGELOG.md @@ -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) @@ -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 diff --git a/packages/node/package.json b/packages/node/package.json index 218999ae71..9c4224c451 100644 --- a/packages/node/package.json +++ b/packages/node/package.json @@ -1,6 +1,6 @@ { "name": "@subql/node", - "version": "5.4.3-1", + "version": "5.5.0", "description": "", "author": "Ian He", "license": "GPL-3.0", @@ -50,6 +50,5 @@ "files": [ "/dist", "/bin" - ], - "stableVersion": "5.4.3-0" + ] } diff --git a/packages/query/CHANGELOG.md b/packages/query/CHANGELOG.md index 9642a238f2..a04a7c0112 100644 --- a/packages/query/CHANGELOG.md +++ b/packages/query/CHANGELOG.md @@ -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 @@ -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 diff --git a/packages/query/package.json b/packages/query/package.json index 7a7b801d1e..4a01690e82 100644 --- a/packages/query/package.json +++ b/packages/query/package.json @@ -1,6 +1,6 @@ { "name": "@subql/query", - "version": "2.17.2-1", + "version": "2.18.0", "description": "", "bin": { "subql-query": "./bin/run" @@ -70,6 +70,5 @@ "@types/ws": "^8", "@types/yargs": "^16.0.9", "nodemon": "^3.1.4" - }, - "stableVersion": "2.17.2-0" + } }