diff --git a/CHANGELOG.en-US.md b/CHANGELOG.en-US.md index 4ce0f8c525..3fa06cfa13 100644 --- a/CHANGELOG.en-US.md +++ b/CHANGELOG.en-US.md @@ -15,6 +15,16 @@ timeline: true --- +## 5.0.7 + +`2022-12-13` + +- 🐞 Fix Slider's Tooltip missing animation. [#39463](https://github.com/ant-design/ant-design/pull/39463) [@YinDongFang](https://github.com/YinDongFang) +- 🐞 Fix Table unexpected horizontal scroll bar when empty and bordered. [#39455](https://github.com/ant-design/ant-design/pull/39455) [@zjfresh](https://github.com/zjfresh) +- 🐞 Fix Popover arrow background color with customized `color`. [#39517](https://github.com/ant-design/ant-design/pull/39517) +- 🐞 Fix Modal hooks not pass ConfigProvider config correctly. [#39513](https://github.com/ant-design/ant-design/pull/39513) +- 🐞 Fix Radio align issue with custom size. [#39476](https://github.com/ant-design/ant-design/pull/39476) + ## 5.0.6 `2022-12-12` diff --git a/CHANGELOG.zh-CN.md b/CHANGELOG.zh-CN.md index 14ac182467..bf3490acb4 100644 --- a/CHANGELOG.zh-CN.md +++ b/CHANGELOG.zh-CN.md @@ -15,6 +15,16 @@ timeline: true --- +## 5.0.7 + +`2022-12-13` + +- 🐞 修复 Slider 组件 Tooltip 动画丢失问题。[#39463](https://github.com/ant-design/ant-design/pull/39463) [@YinDongFang](https://github.com/YinDongFang) +- 🐞 修复 Table 组件有边框且为空时出现横向滚动条的问题。[#39455](https://github.com/ant-design/ant-design/pull/39455) [@zjfresh](https://github.com/zjfresh) +- 🐞 修复 Popover 组件箭头背景色不随自定义颜色改变的问题。[#39517](https://github.com/ant-design/ant-design/pull/39517) +- 🐞 修复 Modal hooks 没有完全传递 ConfigProvider 配置的问题。[#39513](https://github.com/ant-design/ant-design/pull/39513) +- 🐞 修复 Radio 组件尺寸修改后不对齐的问题。[#39476](https://github.com/ant-design/ant-design/pull/39476) + ## 5.0.6 `2022-12-12` diff --git a/package.json b/package.json index 1de5e23802..a2beee757f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "antd", - "version": "5.0.6", + "version": "5.0.7", "description": "An enterprise-class UI design language and React components implementation", "title": "Ant Design", "keywords": [ diff --git a/scripts/post-script.js b/scripts/post-script.js index f09dd83873..8e6da06958 100644 --- a/scripts/post-script.js +++ b/scripts/post-script.js @@ -22,6 +22,7 @@ const DEPRECIATED_VERSION = { ], '4.24.0': ['https://github.com/ant-design/ant-design/issues/38371'], '5.0.4': ['https://github.com/ant-design/ant-design/issues/39284'], + '5.0.6': [], }; function matchDeprecated(version) {