Browse Source
docs: 4.22.6 changelog (#37101)
* docs: 4.22.6
* chore: changelog version
* chore: update
pull/37112/head
MadCcc
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with
17 additions and
2 deletions
-
CHANGELOG.en-US.md
-
CHANGELOG.zh-CN.md
-
package.json
-
scripts/post-script.js
|
|
@ -15,6 +15,13 @@ timeline: true |
|
|
|
|
|
|
|
--- |
|
|
|
|
|
|
|
## 4.22.6 |
|
|
|
|
|
|
|
`2022-08-17` |
|
|
|
|
|
|
|
- 🐞 Revert [#36710](https://github.com/ant-design/ant-design/pull/36710) to fix Table `onChange` argument `sorter` error in multiple columns sort. |
|
|
|
- 🐞 Fix Drawer can not close when config `opacity` on the `maskStyle`. [#37100](https://github.com/ant-design/ant-design/pull/37100) |
|
|
|
|
|
|
|
## 4.22.5 |
|
|
|
|
|
|
|
`2022-08-15` |
|
|
|
|
|
@ -15,6 +15,13 @@ timeline: true |
|
|
|
|
|
|
|
--- |
|
|
|
|
|
|
|
## 4.22.6 |
|
|
|
|
|
|
|
`2022-08-17` |
|
|
|
|
|
|
|
- 🐞 回滚 [#36710](https://github.com/ant-design/ant-design/pull/36710) 以修复 Table 多列排序时 `onChange` 中 `sorter` 参数错误的问题。 |
|
|
|
- 🐞 修复 Drawer 的 `maskStyle` 配置 `opacity` 样式时无法关闭的问题。[#37100](https://github.com/ant-design/ant-design/pull/37100) |
|
|
|
|
|
|
|
## 4.22.5 |
|
|
|
|
|
|
|
`2022-08-15` |
|
|
|
|
|
@ -1,6 +1,6 @@ |
|
|
|
{ |
|
|
|
"name": "antd", |
|
|
|
"version": "4.22.5", |
|
|
|
"version": "4.22.6", |
|
|
|
"description": "An enterprise-class UI design language and React components implementation", |
|
|
|
"title": "Ant Design", |
|
|
|
"keywords": [ |
|
|
|
|
|
@ -8,9 +8,10 @@ const { spawnSync } = require('child_process'); |
|
|
|
|
|
|
|
const DEPRECIATED_VERSION = { |
|
|
|
'>= 4.21.6 < 4.22.0': ['https://github.com/ant-design/ant-design/pull/36682'], |
|
|
|
'>=4.22.2 <=4.22.3': [ |
|
|
|
'>=4.22.2 <=4.22.5': [ |
|
|
|
'https://github.com/ant-design/ant-design/issues/36932', |
|
|
|
'https://github.com/ant-design/ant-design/pull/36800', |
|
|
|
'https://github.com/ant-design/ant-design/issues/37024', |
|
|
|
], |
|
|
|
}; |
|
|
|
|
|
|
|