Skip to content

Commit 47a81e8

Browse files
authored
chore: changelog of 2.3.0 (#1777)
* chore: changelog of 2.3.0 * chore: changelog of 2.3.0
1 parent db4085e commit 47a81e8

File tree

14 files changed

+70
-12
lines changed

14 files changed

+70
-12
lines changed

CHANGELOG.en-US.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,35 @@ tag: vVERSION
1616

1717
---
1818

19+
## 2.3.0
20+
21+
`2026-02-26`
22+
23+
### @ant-design/x
24+
25+
- 🆕 Conversation's onActiveChange callback now returns both the activated item and its key value, while updating useMergedState to useControlledState. [#1762](https://github.com/ant-design/x/pull/1762) by [kimteayon](https://github.com/kimteayon)
26+
- 🐛 Optimized the visual presentation of Sender's disabled state buttons, unified the addition of transparent border handling to ensure consistent appearance across different button variants when disabled. [#1751](https://github.com/ant-design/x/pull/1751) by [Rain120](https://github.com/Rain120)
27+
28+
### @ant-design/x-markdown
29+
30+
- 🆕 XMarkdown adds escapeRawHtml property, allowing users to choose whether to escape raw HTML during rendering. [#1769](https://github.com/ant-design/x/pull/1769) by [Div627](https://github.com/Div627)
31+
- 🐛 Fixed XMarkdown rendering when encountering unclosed inline code in lists, ensuring list markers are preserved in special unclosed cases. [#1739](https://github.com/ant-design/x/pull/1739) by [Div627](https://github.com/Div627)
32+
- 🐛 Improved parsing of block-level LaTeX formulas, with more tolerant handling of trailing whitespace and indentation, enhancing compatibility with different line ending formats and reducing misjudgment and rendering issues. [#1744](https://github.com/ant-design/x/pull/1744) by [Waiter](https://github.com/Waiter)
33+
- 🐛 Optimized dark mode CodeHighlighter and Mermaid plugin styling issues. [#1766](https://github.com/ant-design/x/pull/1766) by [menghany](https://github.com/menghany)
34+
35+
### @ant-design/x-sdk
36+
37+
- 🆕 useXChat adds queueRequest method, implementing initialization message sending for ConversationKey and SessionId. [#1761](https://github.com/ant-design/x/pull/1761) by [kimteayon](https://github.com/kimteayon)
38+
39+
### @ant-design/x-skill
40+
41+
- 🆕 Added skill installation commands, simultaneously releasing three skills: use-x-chat, x-chat-provider, and x-request. [#1753](https://github.com/ant-design/x/pull/1753), [#1767](https://github.com/ant-design/x/pull/1767) by [kimteayon](https://github.com/kimteayon)
42+
43+
### Others
44+
45+
- 🛠 Fixed build errors caused by dependency upgrades. [#1754](https://github.com/ant-design/x/pull/1754) by [kimteayon](https://github.com/kimteayon)
46+
- 🛠 Resolved domhandler's ModuleNotFoundError in CodeSandbox preview. [#1754](https://github.com/ant-design/x/pull/1754) by [kimteayon](https://github.com/kimteayon)
47+
1948
## 2.2.2
2049

2150
`2026-02-06`

CHANGELOG.zh-CN.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,35 @@ tag: vVERSION
1515

1616
---
1717

18+
## 2.3.0
19+
20+
`2026-02-26`
21+
22+
### @ant-design/x
23+
24+
- 🆕 Conversation 的 onActiveChange 回调现在同时返回被激活的项及其键值,同时更新 useMergedState 为 useControlledState。[#1762](https://github.com/ant-design/x/pull/1762)[kimteayon](https://github.com/kimteayon) 提交
25+
- 🐛 优化 Sender 禁用状态按钮的视觉表现,统一添加透明边框处理,确保不同按钮变体在禁用时的外观一致。[#1751](https://github.com/ant-design/x/pull/1751)[Rain120](https://github.com/Rain120) 提交
26+
27+
### @ant-design/x-markdown
28+
29+
- 🆕 XMarkdown 新增 escapeRawHtml 属性,允许用户在渲染时选择是否对原始 HTML 进行转义。[#1769](https://github.com/ant-design/x/pull/1769)[Div627](https://github.com/Div627) 提交
30+
- 🐛 修复 XMarkdown 列表中遇到未闭合行内代码时的渲染,确保列表标记在特殊未闭合情况仍被保留。[#1739](https://github.com/ant-design/x/pull/1739)[Div627](https://github.com/Div627) 提交
31+
- 🐛 改进了块级 LaTeX 公式的解析,对结尾处的空白与缩进处理更宽容,提升了对不同行尾格式的兼容性,减少误判与渲染问题。[#1744](https://github.com/ant-design/x/pull/1744)[Waiter](https://github.com/Waiter) 提交
32+
- 🐛 优化深色模式 CodeHighlighter,Mermaid 插件样式问题。[#1766](https://github.com/ant-design/x/pull/1766)[menghany](https://github.com/menghany) 提交
33+
34+
### @ant-design/x-sdk
35+
36+
- 🆕 useXChat 新增 queueRequest 方法,实现 ConversationKey 和 SessionId 的初始化消息发送。[#1761](https://github.com/ant-design/x/pull/1761)[kimteayon](https://github.com/kimteayon) 提交
37+
38+
### @ant-design/x-skill
39+
40+
- 🆕 新增 skill 安装指令,同时发布 use-x-chat、x-chat-provider、x-request 三个 skill。[#1753](https://github.com/ant-design/x/pull/1768)[#1767](https://github.com/ant-design/x/pull/1767)[kimteayon](https://github.com/kimteayon) 提交
41+
42+
### 其他
43+
44+
- 🛠 修复了因依赖升级导致的构建错误问题。 [#1754](https://github.com/ant-design/x/pull/1754)[kimteayon](https://github.com/kimteayon) 提交
45+
- 🛠 解决 CodeSandbox 预览中 domhandler 的 ModuleNotFoundError 错误。[#1754](https://github.com/ant-design/x/pull/1754)[kimteayon](https://github.com/kimteayon) 提交
46+
1847
## 2.2.2
1948

2049
`2026-02-06`

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "x-mono",
3-
"version": "2.2.2-beta.8",
3+
"version": "2.3.0",
44
"private": true,
55
"scripts": {
66
"presite": "npm run prestart --workspaces",

packages/x-markdown/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ant-design/x-markdown",
3-
"version": "2.2.2-beta.8",
3+
"version": "2.3.0",
44
"scripts": {
55
"compile": "father build",
66
"tsc": "tsc --noEmit",

packages/x-sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ant-design/x-sdk",
3-
"version": "2.2.2-beta.8",
3+
"version": "2.3.0",
44
"homepage": "https://x.ant.design/x-sdks/introduce",
55
"bugs": {
66
"url": "https://github.com/ant-design/x/issues"

packages/x-skill/.claude-plugin/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "x-agent-skills",
33
"metadata": {
44
"description": "Ant Design X intelligent agent skills collection",
5-
"version": "2.2.2-beta.8",
5+
"version": "2.3.0",
66
"author": "Ant Design X Team",
77
"homepage": "https://github.com/ant-design/x",
88
"repository": {

packages/x-skill/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ant-design/x-skill",
3-
"version": "2.2.2-beta.8",
3+
"version": "2.3.0",
44
"description": "placeholder for @ant-design/x-sdk",
55
"homepage": "https://x.ant.design/x-skills/introduce",
66
"bugs": {

packages/x-skill/skills-zh/use-x-chat/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: use-x-chat
3-
version: 2.2.2-beta.8
3+
version: 2.3.0
44
description: 专注讲解如何使用 useXChat Hook,包括自定义 Provider 的集成、消息管理、错误处理等
55
---
66

packages/x-skill/skills-zh/x-chat-provider/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: x-chat-provider
3-
version: 2.2.2-beta.8
3+
version: 2.3.0
44
description: 专注于自定义 Chat Provider 的实现,帮助将任意流式接口适配为 Ant Design X 标准格式
55
---
66

packages/x-skill/skills-zh/x-request/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: x-request
3-
version: 2.2.2-beta.8
3+
version: 2.3.0
44
description: 专注讲解 XRequest 的实际配置和使用,基于官方文档提供准确的配置说明
55
---
66

0 commit comments

Comments
 (0)