diff --git a/.yarn/versions/34032365.yml b/.yarn/versions/34032365.yml deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/.yarn/versions/4ab18321.yml b/.yarn/versions/4ab18321.yml deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/.yarn/versions/5f4edfc1.yml b/.yarn/versions/5f4edfc1.yml deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/.yarn/versions/b68a9365.yml b/.yarn/versions/b68a9365.yml deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/.yarn/versions/ece9ecaa.yml b/.yarn/versions/ece9ecaa.yml deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index b285fde51d..c557a2811f 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] +## [4.0.4] - 2023-10-17 +### Fixed +- handle error on generate command (#2095) + ## [4.0.3] - 2023-10-11 ### Fixed - Fixed yaml readers/writers on `init` command (#2082) @@ -473,7 +477,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.0.3...HEAD +[Unreleased]: https://github.com/subquery/subql/compare/cli/4.0.4...HEAD +[4.0.4]: https://github.com/subquery/subql/compare/cli/4.0.3...cli/4.0.4 [4.0.3]: https://github.com/subquery/subql/compare/cli/4.0.2...cli/4.0.3 [4.0.2]: https://github.com/subquery/subql/compare/cli/4.0.1...cli/4.0.2 [4.0.1]: https://github.com/subquery/subql/compare/cli/4.0.0...cli/4.0.1 diff --git a/packages/cli/package.json b/packages/cli/package.json index cc4564b045..58f62097ac 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,7 +1,7 @@ { "name": "@subql/cli", "description": "cli for subquery", - "version": "4.0.4-1", + "version": "4.0.4", "author": "Ian He", "bin": { "subql": "./bin/run" @@ -88,6 +88,5 @@ "types": "lib/index.d.ts", "resolutions": { "node-fetch": "2.6.7" - }, - "stableVersion": "4.0.4-0" + } } diff --git a/packages/node-core/CHANGELOG.md b/packages/node-core/CHANGELOG.md index 902c1ce350..5b7db31a3a 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] + +## [6.0.3] - 2023-10-17 ### Fixed - Dictionary validation error causing application exit (#2101) - Auto queue flush getting the queue into a bad state (#2103) @@ -435,7 +437,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/6.0.2...HEAD +[Unreleased]: https://github.com/subquery/subql/compare/node-core/6.0.3...HEAD +[6.0.3]: https://github.com/subquery/subql/compare/node-core/6.0.2...node-core/6.0.3 [6.0.2]: https://github.com/subquery/subql/compare/node-core/6.0.1...node-core/6.0.2 [6.0.1]: https://github.com/subquery/subql/compare/node-core/6.0.0...node-core/6.0.1 [6.0.0]: https://github.com/subquery/subql/compare/node-core/5.0.3...node-core/6.0.0 diff --git a/packages/node-core/package.json b/packages/node-core/package.json index 933171968e..bee4798e42 100644 --- a/packages/node-core/package.json +++ b/packages/node-core/package.json @@ -1,6 +1,6 @@ { "name": "@subql/node-core", - "version": "6.0.3-2", + "version": "6.0.3", "description": "Common node features that are agnostic to blockchains", "homepage": "https://github.com/subquery/subql", "repository": "github:subquery/subql", @@ -45,6 +45,5 @@ }, "devDependencies": { "@types/async-lock": "^1" - }, - "stableVersion": "6.0.3-1" + } } diff --git a/packages/node/CHANGELOG.md b/packages/node/CHANGELOG.md index 9e2a11efc2..be750250f8 100644 --- a/packages/node/CHANGELOG.md +++ b/packages/node/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [3.0.7] - 2023-10-17 +### Changed +- Update with node-core 6.0.3 + ## [3.0.6] - 2023-10-12 ### Changed - Update node-core @@ -1007,7 +1011,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/3.0.6...HEAD +[Unreleased]: https://github.com/subquery/subql/compare/node/3.0.7...HEAD +[3.0.7]: https://github.com/subquery/subql/compare/node/3.0.6...node/3.0.7 [3.0.6]: https://github.com/subquery/subql/compare/node/3.0.5...node/3.0.6 [3.0.5]: https://github.com/subquery/subql/compare/node/3.0.4...node/3.0.5 [3.0.4]: https://github.com/subquery/subql/compare/node/3.0.3...node/3.0.4 diff --git a/packages/node/package.json b/packages/node/package.json index 6709ab4d7b..59f91c0381 100644 --- a/packages/node/package.json +++ b/packages/node/package.json @@ -1,6 +1,6 @@ { "name": "@subql/node", - "version": "3.0.7-0", + "version": "3.0.7", "description": "", "author": "Ian He", "license": "GPL-3.0", @@ -60,6 +60,5 @@ "files": [ "/dist", "/bin" - ], - "stableVersion": "3.0.6" + ] } diff --git a/packages/query/CHANGELOG.md b/packages/query/CHANGELOG.md index 70fa8a2963..9b204ca711 100644 --- a/packages/query/CHANGELOG.md +++ b/packages/query/CHANGELOG.md @@ -5,8 +5,10 @@ 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.6.0] - 2023-10-17 ### Added -- Add `lastFinalizedVerifiedHeight`, `unfinalizedBlocks`, `lastCreatedPoiHeight` and `latestSyncedPoiHeight` to metadata +- Add `lastFinalizedVerifiedHeight`, `unfinalizedBlocks`, `lastCreatedPoiHeight` and `latestSyncedPoiHeight` to metadata ## [2.5.0] - 2023-08-10 ### Added @@ -264,7 +266,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/v2.5.0...HEAD +[Unreleased]: https://github.com/subquery/subql/compare/query/2.6.0...HEAD +[2.6.0]: https://github.com/subquery/subql/compare/query/2.5.0...query/2.6.0 [2.5.0]: https://github.com/subquery/subql/compare/v2.4.0...v2.5.0 [2.4.0]: https://github.com/subquery/subql/compare/query/2.3.0...query/2.4.0 [2.3.0]: https://github.com/subquery/subql/compare/query/2.2.0...query/2.3.0 diff --git a/packages/query/package.json b/packages/query/package.json index 6c5c217213..e8ad8f14b2 100644 --- a/packages/query/package.json +++ b/packages/query/package.json @@ -1,6 +1,6 @@ { "name": "@subql/query", - "version": "2.5.1-1", + "version": "2.6.0", "description": "", "bin": { "subql-query": "./bin/run" @@ -67,6 +67,5 @@ "@types/rimraf": "^3.0.2", "@types/yargs": "^16.0.4", "nodemon": "^2.0.15" - }, - "stableVersion": "2.5.1-0" + } } diff --git a/packages/testing/CHANGELOG.md b/packages/testing/CHANGELOG.md index 65a863918e..64a728ac46 100644 --- a/packages/testing/CHANGELOG.md +++ b/packages/testing/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.1.0] - 2023-10-17 +### Changed +- Update with Typescript manifest (#2011) + ## [2.0.2] - 2023-07-31 ### Fixed - Update license (#1891) @@ -18,7 +22,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/v2.0.2...HEAD +[Unreleased]: https://github.com/subquery/subql/compare/testing/2.1.0...HEAD +[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 [2.0.1]: https://github.com/subquery/subql/compare/testing/2.0.0...testing/2.0.1 [2.0.0]: https://github.com/subquery/subql/tag/v2.0.0 diff --git a/packages/testing/package.json b/packages/testing/package.json index 87a6c11845..fb22d6942f 100644 --- a/packages/testing/package.json +++ b/packages/testing/package.json @@ -1,6 +1,6 @@ { "name": "@subql/testing", - "version": "2.0.3-1", + "version": "2.1.0", "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.0.3-0" + } }