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
parent
commit
1474dc24d4
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      CHANGELOG.en-US.md
  2. 9
      CHANGELOG.zh-CN.md
  3. 2
      package.json
  4. 1
      scripts/post-script.js

9
CHANGELOG.en-US.md

@ -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`

9
CHANGELOG.zh-CN.md

@ -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`

2
package.json

@ -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": [

1
scripts/post-script.js

@ -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) {

Loading…
Cancel
Save