From 10f66a11bef4f742d1f2dfdb9cc810e152483ef2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 13 Jan 2026 11:44:50 +0000 Subject: [PATCH] Version Packages --- .changeset/token-2022-support.md | 11 ----------- examples/nextjs/CHANGELOG.md | 8 ++++++++ examples/nextjs/package.json | 2 +- examples/vite-react/CHANGELOG.md | 8 ++++++++ examples/vite-react/package.json | 2 +- packages/client/CHANGELOG.md | 11 +++++++++++ packages/client/package.json | 2 +- packages/react-hooks/CHANGELOG.md | 16 ++++++++++++++++ packages/react-hooks/package.json | 2 +- packages/web3-compat/CHANGELOG.md | 7 +++++++ packages/web3-compat/package.json | 2 +- tests/types-smoke/CHANGELOG.md | 8 ++++++++ tests/types-smoke/package.json | 2 +- 13 files changed, 64 insertions(+), 17 deletions(-) delete mode 100644 .changeset/token-2022-support.md diff --git a/.changeset/token-2022-support.md b/.changeset/token-2022-support.md deleted file mode 100644 index ee5929f..0000000 --- a/.changeset/token-2022-support.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -"@solana/client": minor -"@solana/react-hooks": minor ---- - -Add Token 2022 (Token Extensions) program support to SPL token helper. - -- New `tokenProgram: 'auto'` option to auto-detect mint program ownership -- Explicit Token 2022 program address support via `tokenProgram` config -- Export `TOKEN_2022_PROGRAM_ADDRESS` and `detectTokenProgram` utility -- Backwards compatible - existing code continues to work unchanged diff --git a/examples/nextjs/CHANGELOG.md b/examples/nextjs/CHANGELOG.md index 2ca5db5..17fbcc8 100644 --- a/examples/nextjs/CHANGELOG.md +++ b/examples/nextjs/CHANGELOG.md @@ -1,5 +1,13 @@ # @solana/example-nextjs +## 0.0.22 + +### Patch Changes + +- Updated dependencies [[`be54217`](https://github.com/solana-foundation/framework-kit/commit/be5421762f7f8dd97c2f09ccdea510ea9a384089)]: + - @solana/client@1.6.0 + - @solana/react-hooks@1.4.0 + ## 0.0.21 ### Patch Changes diff --git a/examples/nextjs/package.json b/examples/nextjs/package.json index 24b87e5..45f2344 100644 --- a/examples/nextjs/package.json +++ b/examples/nextjs/package.json @@ -1,7 +1,7 @@ { "name": "@solana/example-nextjs", "private": true, - "version": "0.0.21", + "version": "0.0.22", "type": "module", "scripts": { "dev": "next dev", diff --git a/examples/vite-react/CHANGELOG.md b/examples/vite-react/CHANGELOG.md index 45aa41c..cc49b8f 100644 --- a/examples/vite-react/CHANGELOG.md +++ b/examples/vite-react/CHANGELOG.md @@ -1,5 +1,13 @@ # @solana/example-vite-react +## 0.0.32 + +### Patch Changes + +- Updated dependencies [[`be54217`](https://github.com/solana-foundation/framework-kit/commit/be5421762f7f8dd97c2f09ccdea510ea9a384089)]: + - @solana/client@1.6.0 + - @solana/react-hooks@1.4.0 + ## 0.0.31 ### Patch Changes diff --git a/examples/vite-react/package.json b/examples/vite-react/package.json index cdfd9a7..9ab49d9 100644 --- a/examples/vite-react/package.json +++ b/examples/vite-react/package.json @@ -1,7 +1,7 @@ { "name": "@solana/example-vite-react", "private": true, - "version": "0.0.31", + "version": "0.0.32", "type": "module", "scripts": { "dev": "vite", diff --git a/packages/client/CHANGELOG.md b/packages/client/CHANGELOG.md index 250ce97..08e1fbf 100644 --- a/packages/client/CHANGELOG.md +++ b/packages/client/CHANGELOG.md @@ -1,5 +1,16 @@ # @solana/client +## 1.6.0 + +### Minor Changes + +- [#149](https://github.com/solana-foundation/framework-kit/pull/149) [`be54217`](https://github.com/solana-foundation/framework-kit/commit/be5421762f7f8dd97c2f09ccdea510ea9a384089) Thanks [@GuiBibeau](https://github.com/GuiBibeau)! - Add Token 2022 (Token Extensions) program support to SPL token helper. + + - New `tokenProgram: 'auto'` option to auto-detect mint program ownership + - Explicit Token 2022 program address support via `tokenProgram` config + - Export `TOKEN_2022_PROGRAM_ADDRESS` and `detectTokenProgram` utility + - Backwards compatible - existing code continues to work unchanged + ## 1.5.0 ### Minor Changes diff --git a/packages/client/package.json b/packages/client/package.json index a3c7a9d..8ac09bd 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -1,6 +1,6 @@ { "name": "@solana/client", - "version": "1.5.0", + "version": "1.6.0", "description": "Framework-agnostic Solana client orchestration layer powering higher-level experiences", "exports": { ".": { diff --git a/packages/react-hooks/CHANGELOG.md b/packages/react-hooks/CHANGELOG.md index af56a53..4115fb3 100644 --- a/packages/react-hooks/CHANGELOG.md +++ b/packages/react-hooks/CHANGELOG.md @@ -1,5 +1,21 @@ # @solana/react-hooks +## 1.4.0 + +### Minor Changes + +- [#149](https://github.com/solana-foundation/framework-kit/pull/149) [`be54217`](https://github.com/solana-foundation/framework-kit/commit/be5421762f7f8dd97c2f09ccdea510ea9a384089) Thanks [@GuiBibeau](https://github.com/GuiBibeau)! - Add Token 2022 (Token Extensions) program support to SPL token helper. + + - New `tokenProgram: 'auto'` option to auto-detect mint program ownership + - Explicit Token 2022 program address support via `tokenProgram` config + - Export `TOKEN_2022_PROGRAM_ADDRESS` and `detectTokenProgram` utility + - Backwards compatible - existing code continues to work unchanged + +### Patch Changes + +- Updated dependencies [[`be54217`](https://github.com/solana-foundation/framework-kit/commit/be5421762f7f8dd97c2f09ccdea510ea9a384089)]: + - @solana/client@1.6.0 + ## 1.3.0 ### Minor Changes diff --git a/packages/react-hooks/package.json b/packages/react-hooks/package.json index 36514a0..4ed6684 100644 --- a/packages/react-hooks/package.json +++ b/packages/react-hooks/package.json @@ -1,6 +1,6 @@ { "name": "@solana/react-hooks", - "version": "1.3.0", + "version": "1.4.0", "description": "React hooks for the @solana/client Solana client", "exports": { "browser": "./dist/index.browser.mjs", diff --git a/packages/web3-compat/CHANGELOG.md b/packages/web3-compat/CHANGELOG.md index 68054e0..f08101f 100644 --- a/packages/web3-compat/CHANGELOG.md +++ b/packages/web3-compat/CHANGELOG.md @@ -1,5 +1,12 @@ # @solana/web3-compat +## 0.0.20 + +### Patch Changes + +- Updated dependencies [[`be54217`](https://github.com/solana-foundation/framework-kit/commit/be5421762f7f8dd97c2f09ccdea510ea9a384089)]: + - @solana/client@1.6.0 + ## 0.0.19 ### Patch Changes diff --git a/packages/web3-compat/package.json b/packages/web3-compat/package.json index 4467926..f267d97 100644 --- a/packages/web3-compat/package.json +++ b/packages/web3-compat/package.json @@ -1,6 +1,6 @@ { "name": "@solana/web3-compat", - "version": "0.0.19", + "version": "0.0.20", "description": "Compatibility layer that preserves the web3.js API while delegating to Kit primitives under the hood", "exports": { "edge-light": { diff --git a/tests/types-smoke/CHANGELOG.md b/tests/types-smoke/CHANGELOG.md index 124a65b..6516b82 100644 --- a/tests/types-smoke/CHANGELOG.md +++ b/tests/types-smoke/CHANGELOG.md @@ -1,5 +1,13 @@ # @solana/test-types-smoke +## 0.0.31 + +### Patch Changes + +- Updated dependencies [[`be54217`](https://github.com/solana-foundation/framework-kit/commit/be5421762f7f8dd97c2f09ccdea510ea9a384089)]: + - @solana/client@1.6.0 + - @solana/react-hooks@1.4.0 + ## 0.0.30 ### Patch Changes diff --git a/tests/types-smoke/package.json b/tests/types-smoke/package.json index a96282e..8a01e4d 100644 --- a/tests/types-smoke/package.json +++ b/tests/types-smoke/package.json @@ -1,6 +1,6 @@ { "name": "@solana/test-types-smoke", - "version": "0.0.30", + "version": "0.0.31", "private": true, "type": "module", "scripts": {