From 253ccf3d2576b7635d1e50d03a787858ac78bbfa Mon Sep 17 00:00:00 2001 From: Scott Twiname Date: Tue, 18 Jun 2024 12:03:50 +1200 Subject: [PATCH] [release] 20240618 (#2455) --- .yarn/versions/1288810f.yml | 5 +++++ packages/cli/CHANGELOG.md | 4 +++- packages/cli/package.json | 5 ++--- packages/common/CHANGELOG.md | 5 ++++- packages/common/package.json | 5 ++--- packages/node-core/CHANGELOG.md | 5 ++++- packages/node-core/package.json | 5 ++--- packages/node/CHANGELOG.md | 4 +++- packages/node/package.json | 5 ++--- packages/testing/CHANGELOG.md | 8 ++++++-- packages/testing/package.json | 5 ++--- yarn.lock | 22 ++-------------------- 12 files changed, 37 insertions(+), 41 deletions(-) create mode 100644 .yarn/versions/1288810f.yml diff --git a/.yarn/versions/1288810f.yml b/.yarn/versions/1288810f.yml new file mode 100644 index 0000000000..33c3416e58 --- /dev/null +++ b/.yarn/versions/1288810f.yml @@ -0,0 +1,5 @@ +undecided: + - "@subql/cli" + - "@subql/common" + - "@subql/node" + - "@subql/node-core" diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 00cd85ff1d..254342674f 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [4.14.0] - 2024-06-18 ### Removed - Deprecated flare SDK (#2428) @@ -609,7 +610,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/4.13.1...HEAD +[Unreleased]: https://github.com/subquery/subql/compare/cli/4.14.0...HEAD +[4.14.0]: https://github.com/subquery/subql/compare/cli/4.13.1...cli/4.14.0 [4.13.1]: https://github.com/subquery/subql/compare/cli/4.13.0...cli/4.13.1 [4.13.0]: https://github.com/subquery/subql/compare/cli/4.12.0...cli/4.13.0 [4.12.0]: https://github.com/subquery/subql/compare/cli/4.11.0...cli/4.12.0 diff --git a/packages/cli/package.json b/packages/cli/package.json index 821a4b39f7..6838520b1a 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,7 +1,7 @@ { "name": "@subql/cli", "description": "cli for subquery", - "version": "4.13.2-0", + "version": "4.14.0", "author": "Ian He", "bin": { "subql": "./bin/run" @@ -89,6 +89,5 @@ "types": "lib/index.d.ts", "resolutions": { "node-fetch": "2.6.7" - }, - "stableVersion": "4.13.1" + } } diff --git a/packages/common/CHANGELOG.md b/packages/common/CHANGELOG.md index cd15a4dd8e..1381f89c39 100644 --- a/packages/common/CHANGELOG.md +++ b/packages/common/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] + +## [3.8.0] - 2024-06-18 ### Changed - Deprecated flare SDK (#2428) @@ -369,7 +371,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - init commit -[Unreleased]: https://github.com/subquery/subql/compare/common/3.7.0...HEAD +[Unreleased]: https://github.com/subquery/subql/compare/common/3.8.0...HEAD +[3.8.0]: https://github.com/subquery/subql/compare/common/3.7.0...common/3.8.0 [3.7.0]: https://github.com/subquery/subql/compare/common/3.6.0...common/3.7.0 [3.6.0]: https://github.com/subquery/subql/compare/common/3.5.1...common/3.6.0 [3.5.1]: https://github.com/subquery/subql/compare/common/3.5.0...common/3.5.1 diff --git a/packages/common/package.json b/packages/common/package.json index d777217be6..9060d2632d 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -1,6 +1,6 @@ { "name": "@subql/common", - "version": "3.7.1-0", + "version": "3.8.0", "description": "", "scripts": { "build": "rm -rf dist && tsc -b", @@ -34,6 +34,5 @@ "@types/semver": "^7.3.9", "@types/tar": "^6.1.1", "@types/update-notifier": "^6" - }, - "stableVersion": "3.7.0" + } } diff --git a/packages/node-core/CHANGELOG.md b/packages/node-core/CHANGELOG.md index e2e02824cc..a267e0bbc6 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] + +## [10.6.0] - 2024-06-18 ### Fixed - Testing framework logging the same date if they were within 1s (#2453) @@ -730,7 +732,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/10.5.1...HEAD +[Unreleased]: https://github.com/subquery/subql/compare/node-core/10.6.0...HEAD +[10.6.0]: https://github.com/subquery/subql/compare/node-core/10.5.1...node-core/10.6.0 [10.5.1]: https://github.com/subquery/subql/compare/node-core/10.5.0...node-core/10.5.1 [10.5.0]: https://github.com/subquery/subql/compare/node-core/10.4.1...node-core/10.5.0 [10.4.1]: https://github.com/subquery/subql/compare/node-core/10.4.0...node-core/10.4.1 diff --git a/packages/node-core/package.json b/packages/node-core/package.json index 88a0534e17..1cd8580796 100644 --- a/packages/node-core/package.json +++ b/packages/node-core/package.json @@ -1,6 +1,6 @@ { "name": "@subql/node-core", - "version": "10.5.2-2", + "version": "10.6.0", "description": "Common node features that are agnostic to blockchains", "homepage": "https://github.com/subquery/subql", "repository": "github:subquery/subql", @@ -48,6 +48,5 @@ }, "devDependencies": { "@types/async-lock": "^1" - }, - "stableVersion": "10.5.2-1" + } } diff --git a/packages/node/CHANGELOG.md b/packages/node/CHANGELOG.md index 7d5f88ced4..fd6b64c4c6 100644 --- a/packages/node/CHANGELOG.md +++ b/packages/node/CHANGELOG.md @@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [4.6.5] - 2024-06-18 ### Fixed - Add missing chainType validation for local mode @@ -1227,7 +1228,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/4.6.4...HEAD +[Unreleased]: https://github.com/subquery/subql/compare/node/4.6.5...HEAD +[4.6.5]: https://github.com/subquery/subql/compare/node/4.6.4...node/4.6.5 [4.6.4]: https://github.com/subquery/subql/compare/node/4.6.3...node/4.6.4 [4.6.3]: https://github.com/subquery/subql/compare/node/4.6.2...node/4.6.3 [4.6.2]: https://github.com/subquery/subql/compare/node/4.6.1...node/4.6.2 diff --git a/packages/node/package.json b/packages/node/package.json index 767873c2b1..17241f82bf 100644 --- a/packages/node/package.json +++ b/packages/node/package.json @@ -1,6 +1,6 @@ { "name": "@subql/node", - "version": "4.6.5-0", + "version": "4.6.5", "description": "", "author": "Ian He", "license": "GPL-3.0", @@ -54,6 +54,5 @@ "files": [ "/dist", "/bin" - ], - "stableVersion": "4.6.4" + ] } diff --git a/packages/testing/CHANGELOG.md b/packages/testing/CHANGELOG.md index 648af26f4d..ad3660a90b 100644 --- a/packages/testing/CHANGELOG.md +++ b/packages/testing/CHANGELOG.md @@ -4,9 +4,12 @@ All notable changes to this project will be documented in this file. 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.1.2] - 2024-06-18 +### Changed +- Enable strict TS setting (#2446) + ## [2.1.1] - 2024-04-24 ### Changed - Update headers to 2024 (#2237) @@ -27,7 +30,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Major release 2.0.0, align with other package versions -[Unreleased]: https://github.com/subquery/subql/compare/testing/2.1.1...HEAD +[Unreleased]: https://github.com/subquery/subql/compare/testing/2.1.2...HEAD +[2.1.2]: https://github.com/subquery/subql/compare/testing/2.1.1...testing/2.1.2 [2.1.1]: https://github.com/subquery/subql/compare/testing/2.1.0...testing/2.1.1 [2.1.0]: https://github.com/subquery/subql/compare/testing/2.0.2...testing/2.1.0 [2.0.2]: https://github.com/subquery/subql/compare/v2.0.1...v2.0.2 diff --git a/packages/testing/package.json b/packages/testing/package.json index 172802759d..711e60e32e 100644 --- a/packages/testing/package.json +++ b/packages/testing/package.json @@ -1,6 +1,6 @@ { "name": "@subql/testing", - "version": "2.1.2-0", + "version": "2.1.2", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "build": "rm -rf dist && tsc -b", @@ -14,6 +14,5 @@ "packageManager": "yarn@3.1.1", "dependencies": { "@subql/types-core": "workspace:^" - }, - "stableVersion": "2.1.1" + } } diff --git a/yarn.lock b/yarn.lock index c52199fb56..16acbdd809 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6393,25 +6393,7 @@ __metadata: languageName: unknown linkType: soft -"@subql/common@npm:^3.5.1": - version: 3.7.0 - resolution: "@subql/common@npm:3.7.0" - dependencies: - "@subql/types-core": 0.7.0 - axios: ^0.28.0 - class-transformer: ^0.5.1 - class-validator: ^0.14.0 - fs-extra: ^10.1.0 - ipfs-http-client: 56 - js-yaml: ^4.1.0 - reflect-metadata: ^0.1.13 - semver: ^7.5.2 - update-notifier: 5.1.0 - checksum: 3aad6b35ff4931c3047dc2631516ada328f0a2092d46197a5041ea5588294f85b9e3a88fa6ec9829e527c7bd1c863d69a42c0b58a65eb861ba8ee3f9233f1dea - languageName: node - linkType: hard - -"@subql/common@workspace:*, @subql/common@workspace:packages/common": +"@subql/common@^3.5.1, @subql/common@workspace:*, @subql/common@workspace:packages/common": version: 0.0.0-use.local resolution: "@subql/common@workspace:packages/common" dependencies: @@ -6582,7 +6564,7 @@ __metadata: languageName: node linkType: hard -"@subql/types-core@0.7.0, @subql/types-core@^0.7.0, @subql/types-core@workspace:*, @subql/types-core@workspace:^, @subql/types-core@workspace:packages/types-core": +"@subql/types-core@^0.7.0, @subql/types-core@workspace:*, @subql/types-core@workspace:^, @subql/types-core@workspace:packages/types-core": version: 0.0.0-use.local resolution: "@subql/types-core@workspace:packages/types-core" dependencies: