From ebcfdbbaa9eea4047e4d183f856f3cc4fd984c54 Mon Sep 17 00:00:00 2001 From: Jay Ji Date: Mon, 29 Jul 2024 14:48:31 +1200 Subject: [PATCH] [release] 20240729 (#2507) --- .yarn/versions/bad2bdac.yml | 2 ++ packages/node-core/CHANGELOG.md | 4 +++- packages/node-core/package.json | 5 ++--- packages/node/CHANGELOG.md | 6 +++++- packages/node/package.json | 5 ++--- 5 files changed, 14 insertions(+), 8 deletions(-) create mode 100644 .yarn/versions/bad2bdac.yml diff --git a/.yarn/versions/bad2bdac.yml b/.yarn/versions/bad2bdac.yml new file mode 100644 index 0000000000..f3d404be5f --- /dev/null +++ b/.yarn/versions/bad2bdac.yml @@ -0,0 +1,2 @@ +undecided: + - "@subql/node" diff --git a/packages/node-core/CHANGELOG.md b/packages/node-core/CHANGELOG.md index a61f5bfd81..d966ca73de 100644 --- a/packages/node-core/CHANGELOG.md +++ b/packages/node-core/CHANGELOG.md @@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [13.0.1] - 2024-07-29 ### Fixed - Fixed get and set data not been deepCloned and data is not mutable - Improved get bigInt type from json type @@ -785,7 +786,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/13.0.0...HEAD +[Unreleased]: https://github.com/subquery/subql/compare/node-core/13.0.1...HEAD +[13.0.1]: https://github.com/subquery/subql/compare/node-core/13.0.0...node-core/13.0.1 [13.0.0]: https://github.com/subquery/subql/compare/node-core/12.0.0...node-core/13.0.0 [12.0.0]: https://github.com/subquery/subql/compare/node-core/11.0.0...node-core/12.0.0 [11.0.0]: https://github.com/subquery/subql/compare/node-core/10.10.2...node-core/11.0.0 diff --git a/packages/node-core/package.json b/packages/node-core/package.json index 0a0cad58d2..b32218a511 100644 --- a/packages/node-core/package.json +++ b/packages/node-core/package.json @@ -1,6 +1,6 @@ { "name": "@subql/node-core", - "version": "13.0.1-0", + "version": "13.0.1", "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": "13.0.0" + } } diff --git a/packages/node/CHANGELOG.md b/packages/node/CHANGELOG.md index 81bb36cd47..4a8962e804 100644 --- a/packages/node/CHANGELOG.md +++ b/packages/node/CHANGELOG.md @@ -6,13 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [5.0.1] - 2024-07-29 ### Fixed - Fixed default Timezone to UTC in dockerfile and package.json (#2505) +- Bump with `node-core`, fixed various data consistency issue with db and cache (#2504) ## [5.0.0] - 2024-07-25 ### Changed - Breaking change: Update with `@subql/node-core`, require indexing environment timezone set to UTC (#2495) - Update SubqueryProject to use code from node-core (#2496) + ### Fixed - Bump with `@subql/node-core`, fixed various issues causing poi inconsistency (#2497) @@ -1273,7 +1276,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.0.0...HEAD +[Unreleased]: https://github.com/subquery/subql/compare/node/5.0.1...HEAD +[5.0.1]: https://github.com/subquery/subql/compare/node/5.0.0...node/5.0.1 [5.0.0]: https://github.com/subquery/subql/compare/node/4.9.0...node/5.0.0 [4.9.0]: https://github.com/subquery/subql/compare/node/4.8.2...node/4.9.0 [4.8.2]: https://github.com/subquery/subql/compare/node/4.8.1...node/4.8.2 diff --git a/packages/node/package.json b/packages/node/package.json index 849711eed3..94dc0dacac 100644 --- a/packages/node/package.json +++ b/packages/node/package.json @@ -1,6 +1,6 @@ { "name": "@subql/node", - "version": "5.0.1-0", + "version": "5.0.1", "description": "", "author": "Ian He", "license": "GPL-3.0", @@ -54,6 +54,5 @@ "files": [ "/dist", "/bin" - ], - "stableVersion": "5.0.0" + ] }