From 74348cf241611003fd12888378809f20778005c1 Mon Sep 17 00:00:00 2001 From: Scott Twiname Date: Mon, 12 Aug 2024 13:08:48 +1200 Subject: [PATCH] [release] 20240812 (#2527) --- .yarn/versions/75c144d8.yml | 6 ++++++ jest.config.js | 2 +- packages/cli/CHANGELOG.md | 5 ++++- 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 | 5 ++++- packages/query/package.json | 5 ++--- packages/types-core/CHANGELOG.md | 5 ++++- packages/types-core/package.json | 5 ++--- packages/types/CHANGELOG.md | 5 ++++- packages/types/package.json | 5 ++--- yarn.lock | 25 ++++++++----------------- 15 files changed, 51 insertions(+), 42 deletions(-) create mode 100644 .yarn/versions/75c144d8.yml diff --git a/.yarn/versions/75c144d8.yml b/.yarn/versions/75c144d8.yml new file mode 100644 index 0000000000..c68167e197 --- /dev/null +++ b/.yarn/versions/75c144d8.yml @@ -0,0 +1,6 @@ +undecided: + - "@subql/cli" + - "@subql/node" + - "@subql/node-core" + - "@subql/query" + - "@subql/types" diff --git a/jest.config.js b/jest.config.js index 4e69eda8c3..b128033991 100644 --- a/jest.config.js +++ b/jest.config.js @@ -174,7 +174,7 @@ module.exports = { ], // The regexp pattern or array of patterns that Jest uses to detect test files - testRegex: '.*\\.spec\\.ts$', + testRegex: '.*\\.(spec|test)\\.ts$', // This option allows the use of a custom results processor // testResultsProcessor: undefined, diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 7ae2593ed7..b7d631033d 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/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.2.1] - 2024-08-12 ### Changed - Default deployment type to SubQuery when deploying to the managed service (#2523). @@ -650,7 +652,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.2.0...HEAD +[Unreleased]: https://github.com/subquery/subql/compare/cli/5.2.1...HEAD +[5.2.1]: https://github.com/subquery/subql/compare/cli/5.2.0...cli/5.2.1 [5.2.0]: https://github.com/subquery/subql/compare/cli/5.1.1...cli/5.2.0 [5.1.1]: https://github.com/subquery/subql/compare/cli/5.1.0...cli/5.1.1 [5.1.0]: https://github.com/subquery/subql/compare/cli/5.0.1...cli/5.1.0 diff --git a/packages/cli/package.json b/packages/cli/package.json index d46fa545b5..2f90f9ac65 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,7 +1,7 @@ { "name": "@subql/cli", "description": "cli for subquery", - "version": "5.2.1-0", + "version": "5.2.1", "author": "Ian He", "bin": { "subql": "./bin/run" @@ -87,6 +87,5 @@ "types": "lib/index.d.ts", "resolutions": { "node-fetch": "2.6.7" - }, - "stableVersion": "5.2.0" + } } diff --git a/packages/node-core/CHANGELOG.md b/packages/node-core/CHANGELOG.md index d150546bbf..30b35e53d1 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] + +## [14.1.1] - 2024-08-12 ### Fixed - revert yargs version as it was returning a promise - DS Processor types not being able to distinguish input and filter types (#2522) @@ -805,7 +807,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/14.1.0...HEAD +[Unreleased]: https://github.com/subquery/subql/compare/node-core/14.1.1...HEAD +[14.1.1]: https://github.com/subquery/subql/compare/node-core/14.1.0...node-core/14.1.1 [14.1.0]: https://github.com/subquery/subql/compare/node-core/14.0.0...node-core/14.1.0 [14.0.0]: https://github.com/subquery/subql/compare/node-core/13.0.2...node-core/14.0.0 [13.0.2]: https://github.com/subquery/subql/compare/node-core/13.0.1...node-core/13.0.2 diff --git a/packages/node-core/package.json b/packages/node-core/package.json index 07db1b25ed..8666941c53 100644 --- a/packages/node-core/package.json +++ b/packages/node-core/package.json @@ -1,6 +1,6 @@ { "name": "@subql/node-core", - "version": "14.1.1-1", + "version": "14.1.1", "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": "14.1.1-0" + } } diff --git a/packages/node/CHANGELOG.md b/packages/node/CHANGELOG.md index e5d78a3b29..d84b05065d 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.2.1] - 2024-08-12 ### Fixed - Subcommands not working because of yargs dependency @@ -1293,7 +1295,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.2.0...HEAD +[Unreleased]: https://github.com/subquery/subql/compare/node/5.2.1...HEAD +[5.2.1]: https://github.com/subquery/subql/compare/node/5.2.0...node/5.2.1 [5.2.0]: https://github.com/subquery/subql/compare/node/5.1.0...node/5.2.0 [5.1.0]: https://github.com/subquery/subql/compare/node/5.0.2...node/5.1.0 [5.0.2]: https://github.com/subquery/subql/compare/node/5.0.1...node/5.0.2 diff --git a/packages/node/package.json b/packages/node/package.json index 40914ede68..f5073c6411 100644 --- a/packages/node/package.json +++ b/packages/node/package.json @@ -1,6 +1,6 @@ { "name": "@subql/node", - "version": "5.2.1-0", + "version": "5.2.1", "description": "", "author": "Ian He", "license": "GPL-3.0", @@ -50,6 +50,5 @@ "files": [ "/dist", "/bin" - ], - "stableVersion": "5.2.0" + ] } diff --git a/packages/query/CHANGELOG.md b/packages/query/CHANGELOG.md index 22916917be..c9381d845b 100644 --- a/packages/query/CHANGELOG.md +++ b/packages/query/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] + +## [2.14.1] - 2024-08-12 ### Fixed - Revert yargs version @@ -347,7 +349,8 @@ 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.14.0...HEAD +[Unreleased]: https://github.com/subquery/subql/compare/query/2.14.1...HEAD +[2.14.1]: https://github.com/subquery/subql/compare/query/2.14.0...query/2.14.1 [2.14.0]: https://github.com/subquery/subql/compare/query/2.13.3...query/2.14.0 [2.13.3]: https://github.com/subquery/subql/compare/query/2.13.2...query/2.13.3 [2.13.2]: https://github.com/subquery/subql/compare/query/2.13.1...query/2.13.2 diff --git a/packages/query/package.json b/packages/query/package.json index b28888e421..b9bf7dbe9f 100644 --- a/packages/query/package.json +++ b/packages/query/package.json @@ -1,6 +1,6 @@ { "name": "@subql/query", - "version": "2.14.1-1", + "version": "2.14.1", "description": "", "bin": { "subql-query": "./bin/run" @@ -66,6 +66,5 @@ "@types/lodash": "^4.17.7", "@types/yargs": "^16.0.9", "nodemon": "^3.1.4" - }, - "stableVersion": "2.14.1-0" + } } diff --git a/packages/types-core/CHANGELOG.md b/packages/types-core/CHANGELOG.md index 6729e67d76..eb9ab22bd0 100644 --- a/packages/types-core/CHANGELOG.md +++ b/packages/types-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] + +## [1.1.1] - 2024-08-12 ### Fixed - DS Processor types not being able to distinguish input and filter types (#2522) @@ -68,7 +70,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Initial release of new package containing types common to all chains -[Unreleased]: https://github.com/subquery/subql/compare/types-core/1.1.0...HEAD +[Unreleased]: https://github.com/subquery/subql/compare/types-core/1.1.1...HEAD +[1.1.1]: https://github.com/subquery/subql/compare/types-core/1.1.0...types-core/1.1.1 [1.1.0]: https://github.com/subquery/subql/compare/types-core/1.0.0...types-core/1.1.0 [1.0.0]: https://github.com/subquery/subql/compare/types-core/0.10.0...types-core/1.0.0 [0.10.0]: https://github.com/subquery/subql/compare/types-core/0.9.1...types-core/0.10.0 diff --git a/packages/types-core/package.json b/packages/types-core/package.json index caa77f74a1..095358d566 100644 --- a/packages/types-core/package.json +++ b/packages/types-core/package.json @@ -1,6 +1,6 @@ { "name": "@subql/types-core", - "version": "1.1.1-0", + "version": "1.1.1", "description": "", "homepage": "https://github.com/subquery/subql", "repository": "github:subquery/subql", @@ -17,6 +17,5 @@ ], "devDependencies": { "package-json-type": "^1.0.3" - }, - "stableVersion": "1.1.0" + } } diff --git a/packages/types/CHANGELOG.md b/packages/types/CHANGELOG.md index ae993954ea..5bd0b3c50f 100644 --- a/packages/types/CHANGELOG.md +++ b/packages/types/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.11.1] - 2024-08-12 ### Fixed - DS Processor types not being able to distinguish input and filter types (#2522) @@ -261,7 +263,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - support block handler -[Unreleased]: https://github.com/subquery/subql/compare/types/3.11.0...HEAD +[Unreleased]: https://github.com/subquery/subql/compare/types/3.11.1...HEAD +[3.11.1]: https://github.com/subquery/subql/compare/types/3.11.0...types/3.11.1 [3.11.0]: https://github.com/subquery/subql/compare/types/3.10.0...types/3.11.0 [3.10.0]: https://github.com/subquery/subql/compare/types/3.9.0...types/3.10.0 [3.9.0]: https://github.com/subquery/subql/compare/types/3.8.0...types/3.9.0 diff --git a/packages/types/package.json b/packages/types/package.json index 0bee5fc597..c37f95becd 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@subql/types", - "version": "3.11.1-0", + "version": "3.11.1", "description": "", "homepage": "https://github.com/subquery/subql", "repository": "github:subquery/subql", @@ -24,6 +24,5 @@ }, "devDependencies": { "@polkadot/api": "^12.2.3" - }, - "stableVersion": "3.11.0" + } } diff --git a/yarn.lock b/yarn.lock index 32e88ebd79..4d42e93011 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6972,6 +6972,14 @@ __metadata: languageName: node linkType: hard +"@subql/types-core@^1.0.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: + package-json-type: ^1.0.3 + languageName: unknown + linkType: soft + "@subql/types-core@npm:0.10.0, @subql/types-core@npm:^0.10.0": version: 0.10.0 resolution: "@subql/types-core@npm:0.10.0" @@ -6990,23 +6998,6 @@ __metadata: languageName: node linkType: hard -"@subql/types-core@npm:^1.0.0": - version: 1.0.0 - resolution: "@subql/types-core@npm:1.0.0" - dependencies: - package-json-type: ^1.0.3 - checksum: 3bed1a6a0b2b8f68d5c13306ee59f68d049d0917eb1588594f96cb125eebc51f321f910157b068a0b5f8a3a36a72fae8c96a22ea77b5adc0410e84330d887405 - languageName: node - linkType: hard - -"@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: - package-json-type: ^1.0.3 - languageName: unknown - linkType: soft - "@subql/types-cosmos@npm:3.5.1": version: 3.5.1 resolution: "@subql/types-cosmos@npm:3.5.1"