Browse Source
📝 docs: 5.0.7 changelog (#39535 )
* 📝 docs: 5.0.7 changelog
* docs: update
* docs: update
pull/39547/head
5.0.7
MadCcc
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with
22 additions and
1 deletions
CHANGELOG.en-US.md
CHANGELOG.zh-CN.md
package.json
scripts/post-script.js
@ -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`
@ -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`
@ -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" : [
@ -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 ) {