From 03dcaf740cc805c8a2a261e236c006ecbe7a838b Mon Sep 17 00:00:00 2001 From: MadCcc <1075746765@qq.com> Date: Wed, 17 Aug 2022 12:00:23 +0800 Subject: [PATCH] docs: 4.22.6 changelog (#37101) * docs: 4.22.6 * chore: changelog version * chore: update --- CHANGELOG.en-US.md | 7 +++++++ CHANGELOG.zh-CN.md | 7 +++++++ package.json | 2 +- scripts/post-script.js | 3 ++- 4 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.en-US.md b/CHANGELOG.en-US.md index b2f87e5011..7693f5db62 100644 --- a/CHANGELOG.en-US.md +++ b/CHANGELOG.en-US.md @@ -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` diff --git a/CHANGELOG.zh-CN.md b/CHANGELOG.zh-CN.md index 7a1cd31788..92e8603d73 100644 --- a/CHANGELOG.zh-CN.md +++ b/CHANGELOG.zh-CN.md @@ -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` diff --git a/package.json b/package.json index 5053306903..d2af40f106 100644 --- a/package.json +++ b/package.json @@ -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": [ diff --git a/scripts/post-script.js b/scripts/post-script.js index 0dcf3c5c2e..889194fe08 100644 --- a/scripts/post-script.js +++ b/scripts/post-script.js @@ -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', ], };