From b1c4bc5177b98c503ed813a431d65e70153c6d4a Mon Sep 17 00:00:00 2001 From: Ian He <39037239+ianhe8x@users.noreply.github.com> Date: Thu, 18 Jun 2026 11:55:06 +1200 Subject: [PATCH] [release] 20260618-2 --- packages/node/CHANGELOG.md | 7 ++++++- packages/node/package.json | 5 ++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/packages/node/CHANGELOG.md b/packages/node/CHANGELOG.md index e248ac7a7..56e0bc61c 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] +## [6.3.1] - 2026-06-18 +### Fixed +- Node still crashing on Solana skipped slots reported via `SOLANA_ERROR__JSON_RPC__SERVER_ERROR_LONG_TERM_STORAGE_SLOT_SKIPPED`, by treating it the same as a confirmed skipped slot by default (opt-out via a new `treatLongTermStorageSkipAsSkipped` startup flag) (#32) + ## [6.3.0] - 2026-06-18 ### Fixed - Node crashing when Solana skips a slot, by converting `SolanaError`s for unavailable/skipped slots into `BlockUnavailableError` and allowing non-consecutive heights when registering unfinalized blocks (#30) @@ -68,7 +72,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Initial release -[Unreleased]: https://github.com/subquery/subql-solana/compare/node-solana/6.3.0...HEAD +[Unreleased]: https://github.com/subquery/subql-solana/compare/node-solana/6.3.1...HEAD +[6.3.1]: https://github.com/subquery/subql-solana/compare/node-solana/6.3.0...node-solana/6.3.1 [6.3.0]: https://github.com/subquery/subql-solana/compare/node-solana/6.2.0...node-solana/6.3.0 [6.2.0]: https://github.com/subquery/subql-solana/compare/node-solana/6.1.2...node-solana/6.2.0 [6.1.2]: https://github.com/subquery/subql-solana/compare/node-solana/6.1.1...node-solana/6.1.2 diff --git a/packages/node/package.json b/packages/node/package.json index a173a5fc7..176a2be56 100644 --- a/packages/node/package.json +++ b/packages/node/package.json @@ -1,6 +1,6 @@ { "name": "@subql/node-solana", - "version": "6.3.1-0", + "version": "6.3.1", "description": "", "author": "Ian He", "license": "GPL-3.0", @@ -73,6 +73,5 @@ "README.md", "CHANGELOG.md", "LICENSE" - ], - "stableVersion": "6.3.0" + ] }