Browse Source
docs: changelog 5.4.2 (#41756)
* docs: changelog 5.4.2
* chore: add bug verision
pull/41798/head
5.4.2
MadCcc
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with
20 additions and
1 deletions
-
CHANGELOG.en-US.md
-
CHANGELOG.zh-CN.md
-
package.json
-
scripts/post-script.js
|
@ -15,6 +15,15 @@ timeline: true |
|
|
|
|
|
|
|
|
--- |
|
|
--- |
|
|
|
|
|
|
|
|
|
|
|
## 5.4.2 |
|
|
|
|
|
|
|
|
|
|
|
`2023-04-11` |
|
|
|
|
|
|
|
|
|
|
|
- 🐞 Fix unexpected deprecated warning in DatePicker. [#41753](https://github.com/ant-design/ant-design/pull/41753) [@kiner-tang](https://github.com/kiner-tang) |
|
|
|
|
|
- 🌐 Add missing translations for `de_DE`. [#41747](https://github.com/ant-design/ant-design/pull/41747) [@eldarcodes](https://github.com/eldarcodes) |
|
|
|
|
|
- TypeScript |
|
|
|
|
|
- 🤖 Optimize type of TimePicker `hourStep`. [1fc3675](https://github.com/ant-design/ant-design/commit/1fc3675) [@Wuxh](https://github.com/Wuxh) |
|
|
|
|
|
|
|
|
## 5.4.1 |
|
|
## 5.4.1 |
|
|
|
|
|
|
|
|
`2023-04-11` |
|
|
`2023-04-11` |
|
|
|
@ -15,6 +15,15 @@ timeline: true |
|
|
|
|
|
|
|
|
--- |
|
|
--- |
|
|
|
|
|
|
|
|
|
|
|
## 5.4.2 |
|
|
|
|
|
|
|
|
|
|
|
`2023-04-11` |
|
|
|
|
|
|
|
|
|
|
|
- 🐞 修复 DatePicker 组件异常显示废弃警告的问题。[#41753](https://github.com/ant-design/ant-design/pull/41753) [@kiner-tang](https://github.com/kiner-tang) |
|
|
|
|
|
- 🌐 补充 `de_DE` 遗漏的国际化。[#41747](https://github.com/ant-design/ant-design/pull/41747) [@eldarcodes](https://github.com/eldarcodes) |
|
|
|
|
|
- TypeScript |
|
|
|
|
|
- 🤖 优化 TimePicker `hourStep` 的类型。[1fc3675](https://github.com/ant-design/ant-design/commit/1fc3675) [@Wuxh](https://github.com/Wuxh) |
|
|
|
|
|
|
|
|
## 5.4.1 |
|
|
## 5.4.1 |
|
|
|
|
|
|
|
|
`2023-04-11` |
|
|
`2023-04-11` |
|
|
|
@ -1,6 +1,6 @@ |
|
|
{ |
|
|
{ |
|
|
"name": "antd", |
|
|
"name": "antd", |
|
|
"version": "5.4.1", |
|
|
"version": "5.4.2", |
|
|
"description": "An enterprise-class UI design language and React components implementation", |
|
|
"description": "An enterprise-class UI design language and React components implementation", |
|
|
"title": "Ant Design", |
|
|
"title": "Ant Design", |
|
|
"keywords": [ |
|
|
"keywords": [ |
|
|
|
@ -32,6 +32,7 @@ const DEPRECIATED_VERSION = { |
|
|
'>= 5.2.3 <= 5.3.0': [ |
|
|
'>= 5.2.3 <= 5.3.0': [ |
|
|
'https://github.com/ant-design/ant-design/pull/40719#issuecomment-1453418135', |
|
|
'https://github.com/ant-design/ant-design/pull/40719#issuecomment-1453418135', |
|
|
], |
|
|
], |
|
|
|
|
|
'5.4.1': ['https://github.com/ant-design/ant-design/issues/41751'], |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
function matchDeprecated(version) { |
|
|
function matchDeprecated(version) { |
|
|