From 0bac35967c1a615c9f39052357b0a09dd61c04fa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 18 May 2026 17:16:40 +0000 Subject: [PATCH] chore(release): bump versions --- .changes/bump-deps.md | 6 ------ .changes/fix-bubble-x-overflow.md | 5 ----- .changes/fix-markdown-link-security.md | 5 ----- .changes/fix-playground-api-key-transport.md | 5 ----- .changes/fix-suggestion-injection.md | 5 ----- .changes/migrate-docs-v2.md | 5 ----- .changes/shadcn-compatibility.md | 5 ----- .changes/suggestion-to-func.md | 5 ----- .changes/vercel-ai.md | 6 ------ CHANGELOG.md | 18 ++++++++++++++++++ docs/CHANGELOG.md | 7 +++++++ docs/package.json | 4 ++-- package.json | 4 ++-- playground/CHANGELOG.md | 15 +++++++++++++++ playground/package.json | 4 ++-- 15 files changed, 46 insertions(+), 53 deletions(-) delete mode 100644 .changes/bump-deps.md delete mode 100644 .changes/fix-bubble-x-overflow.md delete mode 100644 .changes/fix-markdown-link-security.md delete mode 100644 .changes/fix-playground-api-key-transport.md delete mode 100644 .changes/fix-suggestion-injection.md delete mode 100644 .changes/migrate-docs-v2.md delete mode 100644 .changes/shadcn-compatibility.md delete mode 100644 .changes/suggestion-to-func.md delete mode 100644 .changes/vercel-ai.md create mode 100644 docs/CHANGELOG.md create mode 100644 playground/CHANGELOG.md diff --git a/.changes/bump-deps.md b/.changes/bump-deps.md deleted file mode 100644 index c8370fc..0000000 --- a/.changes/bump-deps.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@matechat/react": "patch:chore" -"@matechat/react-playground": "patch:chore" ---- - -Bump all dependencies. diff --git a/.changes/fix-bubble-x-overflow.md b/.changes/fix-bubble-x-overflow.md deleted file mode 100644 index 3f1569e..0000000 --- a/.changes/fix-bubble-x-overflow.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@matechat/react": patch:fix ---- - -Fixed an issue where the `Bubble` component would overflow horizontally when a single word was too long. diff --git a/.changes/fix-markdown-link-security.md b/.changes/fix-markdown-link-security.md deleted file mode 100644 index bb5556a..0000000 --- a/.changes/fix-markdown-link-security.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@matechat/react": "patch:fix" ---- - -markdown links are sanitized and external links are protected against tabnabbing. diff --git a/.changes/fix-playground-api-key-transport.md b/.changes/fix-playground-api-key-transport.md deleted file mode 100644 index 780b20e..0000000 --- a/.changes/fix-playground-api-key-transport.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@matechat/react-playground": "patch:fix" ---- - -Make the playground safer by avoiding client-side secret usage and stabilizing chat transport creation. diff --git a/.changes/fix-suggestion-injection.md b/.changes/fix-suggestion-injection.md deleted file mode 100644 index 885220b..0000000 --- a/.changes/fix-suggestion-injection.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@matechat/react": "patch:fix" ---- - -fix suggestion injection to avoid input corruption and hide the suggestion panel when inactive diff --git a/.changes/migrate-docs-v2.md b/.changes/migrate-docs-v2.md deleted file mode 100644 index 19c21df..0000000 --- a/.changes/migrate-docs-v2.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@matechat/react-docs": "major:feat" ---- - -Migrate document site from rspress v1 to v2. diff --git a/.changes/shadcn-compatibility.md b/.changes/shadcn-compatibility.md deleted file mode 100644 index 2c6e948..0000000 --- a/.changes/shadcn-compatibility.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@matechat/react": "patch:feat" ---- - -Improve Shadcn components compatibility. diff --git a/.changes/suggestion-to-func.md b/.changes/suggestion-to-func.md deleted file mode 100644 index ffe7f4d..0000000 --- a/.changes/suggestion-to-func.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@matechat/react": "patch:feat" ---- - -Refactor `triggerOptions` to suggestion callback. diff --git a/.changes/vercel-ai.md b/.changes/vercel-ai.md deleted file mode 100644 index f605a23..0000000 --- a/.changes/vercel-ai.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@matechat/react": "major:feat" -"@matechat/react-playground": "major:feat" ---- - -Add Vercel AI support diff --git a/CHANGELOG.md b/CHANGELOG.md index 2059564..7f74410 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## v1.0.0 + +### Bug Fixes + +- [`39bbd21`](https://github.com/DevCloudFE/matechat-react/commit/39bbd21c73bbd62dcbc105fa1bc518890a8556d1): markdown links are sanitized and external links are protected against tabnabbing. ([#93](https://github.com/DevCloudFE/matechat-react/pull/93) by @Copilot) +- [`f4b1894`](https://github.com/DevCloudFE/matechat-react/commit/f4b18945d19e5082cab779dd5c5940352f3b0a44): Fixed an issue where the `Bubble` component would overflow horizontally when a single word was too long. ([#75](https://github.com/DevCloudFE/matechat-react/pull/75) by @xx-yoke) +- [`b707094`](https://github.com/DevCloudFE/matechat-react/commit/b707094966032ebcd9e6a83689d59b1be0cb3641): fix suggestion injection to avoid input corruption and hide the suggestion panel when inactive ([#94](https://github.com/DevCloudFE/matechat-react/pull/94) by @Copilot) + +### Chores + +- [`5f9e8fa`](https://github.com/DevCloudFE/matechat-react/commit/5f9e8fa4d34ea3cd6a07d2c8a18b8c47e8a60aa2): Bump all dependencies. ([#90](https://github.com/DevCloudFE/matechat-react/pull/90) by @YESWmeshade) + +### New Features + +- [`9addd4e`](https://github.com/DevCloudFE/matechat-react/commit/9addd4e6d97832531540d5172e9925c0e103a885): Improve Shadcn components compatibility. ([#96](https://github.com/DevCloudFE/matechat-react/pull/96) by @moyue23) +- [`9addd4e`](https://github.com/DevCloudFE/matechat-react/commit/9addd4e6d97832531540d5172e9925c0e103a885): Refactor `triggerOptions` to suggestion callback. ([#96](https://github.com/DevCloudFE/matechat-react/pull/96) by @moyue23) +- [`5f9e8fa`](https://github.com/DevCloudFE/matechat-react/commit/5f9e8fa4d34ea3cd6a07d2c8a18b8c47e8a60aa2): Add Vercel AI support ([#90](https://github.com/DevCloudFE/matechat-react/pull/90) by @YESWmeshade) + ## v0.1.1 ### New Features diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md new file mode 100644 index 0000000..65a8b55 --- /dev/null +++ b/docs/CHANGELOG.md @@ -0,0 +1,7 @@ +# Changelog + +## v1.0.0 + +### New Features + +- [`c5b49ee`](https://github.com/DevCloudFE/matechat-react/commit/c5b49ee33c39a33e1d2d91796c02a6a05d047e06): Migrate document site from rspress v1 to v2. diff --git a/docs/package.json b/docs/package.json index 54feee5..6a8e8f7 100644 --- a/docs/package.json +++ b/docs/package.json @@ -1,6 +1,6 @@ { "name": "@matechat/react-docs", - "version": "0.1.0", + "version": "1.0.0", "type": "module", "private": true, "scripts": { @@ -22,4 +22,4 @@ "postcss": "^8.5.14", "tailwindcss": "^4.3.0" } -} +} \ No newline at end of file diff --git a/package.json b/package.json index 7b883f1..208eb7b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@matechat/react", - "version": "0.1.1", + "version": "1.0.0", "type": "module", "description": "Front-end AI scenario solution UI library based on Huawei DevUI Design.", "homepage": "https://github.com/DevCloudFE/matechat-react", @@ -92,4 +92,4 @@ "dist" ], "packageManager": "pnpm@10.14.0" -} +} \ No newline at end of file diff --git a/playground/CHANGELOG.md b/playground/CHANGELOG.md new file mode 100644 index 0000000..e9a6c30 --- /dev/null +++ b/playground/CHANGELOG.md @@ -0,0 +1,15 @@ +# Changelog + +## v1.0.0 + +### Chores + +- [`5f9e8fa`](https://github.com/DevCloudFE/matechat-react/commit/5f9e8fa4d34ea3cd6a07d2c8a18b8c47e8a60aa2): Bump all dependencies. ([#90](https://github.com/DevCloudFE/matechat-react/pull/90) by @YESWmeshade) + +### Bug Fixes + +- [`02b59b3`](https://github.com/DevCloudFE/matechat-react/commit/02b59b3ae15302189387ff68db7c3cc4e8396abc): Make the playground safer by avoiding client-side secret usage and stabilizing chat transport creation. ([#95](https://github.com/DevCloudFE/matechat-react/pull/95) by @Copilot) + +### New Features + +- [`5f9e8fa`](https://github.com/DevCloudFE/matechat-react/commit/5f9e8fa4d34ea3cd6a07d2c8a18b8c47e8a60aa2): Add Vercel AI support ([#90](https://github.com/DevCloudFE/matechat-react/pull/90) by @YESWmeshade) diff --git a/playground/package.json b/playground/package.json index 2e9dd74..5eb6266 100644 --- a/playground/package.json +++ b/playground/package.json @@ -1,6 +1,6 @@ { "name": "@matechat/react-playground", - "version": "0.0.0", + "version": "1.0.0", "private": true, "type": "module", "license": "MIT", @@ -38,4 +38,4 @@ "vite": "^8.0.12", "vite-plugin-svgr": "^4.5.0" } -} +} \ No newline at end of file