Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Snyk] Upgrade antd from 4.0.2 to 4.1.0 #121

Merged
merged 1 commit into from
Apr 1, 2020

Conversation

snyk-bot
Copy link
Contributor

Snyk has created this PR to upgrade antd from 4.0.2 to 4.1.0.

ℹ️ Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.
  • The recommended version is 3 versions ahead of your current version.
  • The recommended version was released 2 days ago, on 2020-03-29.
Release notes
Package name: antd
  • 4.1.0 - 2020-03-29
    • 🔥 Support compact mode theme. #22126 @AshoneA
    • 🔥 New Space component to resolve inline component margin style. #22363
    • 🔥 DatePicker support quarter picker. #22468
    • 🆕 Tree/TreeSelect/Select support virtual prop to disable virtual scroll. #21955
    • 🆕 Improve Pagination switch experience. #22711
      • Pagination will show size changer when total > 50.
      • Unify Pagination items to fixed length.
      • Change default size options to 10, 20, 50, 100.
    • Table
      • 🆕 Table pagination position add more option. #22647 @hengkx
      • 🆕 Table selection column support renderCell. #21711
      • 🆕 Table sorter adding hint tooltip and a new prop showSorterTooltip. #21631 @AshoneA
    • 🆕 Tag component support icon prop. #22418 @vtsybulin
    • 🆕 Grid add useBreakpoint hook. #22226
    • 🆕 Card support tabProps. #22207
    • 🆕 Pagination add autoResize prop. #21959 @wendellhu95
    • 🆕 Add render props support for Popover/Popconfirm. #22034 @nossbigg
    • 🆕 TimePicker.RangePicker support order prop. #21948
    • 🆕 Carousel dots support object to pass className. #21848
    • 🆕 Form validateMessages support ${label} variable. #21835
    • 🆕 Expose all Dropdown props in Breadcrumb.Item. #20763 @paranoidjk
    • ⌨️ Improve Tabs Accessibility. #22287
      • Add Tabs keyboard prop.
      • Tabs extraContent don't trigger keyboard navigation now.
    • 🛠 Warning Form.Item with defaultValue when it's controlled. #22571
    • 🛠 Menu.Item Tooltip could be hidden by falsy title prop. #22202
    • 🛠 Typography onExpand function support event parameter. #22092 @BlazPocrnja
    • 🛠 Simplify Popconfirm and Popover dom structure. #22052
    • 🐞 Fix Autocomplete display null when value is null. #21955
    • 🐞 Adjust Drawer close button without title style to avoid overlap with scroll bar. #22710
    • 🐞 Fix Calendar style details. #22676
    • Table
      • 🐞 Fix Table fixed column shadow style in Safari. #22680
      • 🐞 Fix Table style affect nest table element. #22643
      • 🐞 Fix Table emptyText is not centered and show pagination when empty data. #22548 @hengkx
      • 🐞 Fix Table rowSelection event bubbling with onRow. #22566 @hengkx
    • 🐞 Fix Input with suffix only align style issue. #22603
    • 🐞 Fix Alert cannot work with Tooltip/Popover. #22594
    • 🐞 Fix nest dynamic Form.Item get react unmounted update warning. #22575
    • 💄 Adjust Tag processing status color. #22303
    • 💄 Remove Select dropdown group title mouse click style. #22581
    • 💄 Redesign Table filter menu buttons and fix Dropdown edge padding style. #22072
    • 💄 Move @form-item-label-height from form styles to theme variables. #22600 @slavakam
    • 💄 Add less variables @link-focus-decoration and @link-focus-outline. #22511
    • 💄 add separator cursor disabled of DatePicker. #22563
    • RTL
      • 💄 Optimize Checkbox inner RTL style issue. #22627
      • 🐞 Optimize Upload picture-card RTL style issue. #22630
      • 🐞 Fix Badge RTL number style issue. #22665
      • 🐞 Fix Select RTL style issue when select multiple options can be cleared. #22596
      • 🐞 Fix Progress RTL style issue. #22558
      • 🐞 Fix Badge RTL style issue. #22551
      • 🐞 Fix Input RTL style issue. #22525
      • 🐞 Fix Steps RTL style issue. #22523
      • 💄 Optimize Tabs RTL icon style issue. #22653
      • 💄 Optimize Input.Group RTL style issue. #22624
      • 💄 Optimize Timeline label mode RTL style issue. #22652
      • 💄 Optimization Select dropdown group RTL style issue. #22584
      • 💄 Optimization Dropdown.Button RTL style issue. #22519
    • Typescript
      • 🛠 replace deprecated React.SFC with React.FC. #22691 @Rustin-Liu
      • 🐞 Fix Form.Item children definition. #22662

    • 🔥 支持紧凑模式主题。#22126 @AshoneA
    • 🔥 新的 Space 组件以支持内联组件的间距样式。#22363
    • 🔥 DatePicker 支持季度选择器。#22468
    • 🆕 Tree/TreeSelect/Select 支持 virtual 属性以关闭虚拟滚动。#21955
    • 🆕 改进 Pagination 使用体验。#22711
      • Pagination 当 total > 50 时默认显示切换页数选择器。
      • 统一 Pagination 十页以内的页码个数使其宽度更统一。
      • Pagination 调整默认页数选项为 10, 20, 50, 100
    • Table
      • 🆕 Table 分页位置增加更多选项。#22647 @hengkx
      • 🆕 Table 选择列支持 renderCell#21711
      • 🆕 Table 排序增加下次排序的提示,并增加 showSorterTooltip 属性开关。#21631 @AshoneA
    • 🆕 Tag 支持 icon 属性。#22418 @vtsybulin
    • 🆕 Grid 添加 useBreakpoint hook. #22226
    • 🆕 Card 支持 tabProps#22207
    • 🆕 Menu.Item 上的 Tooltip 现在可以使用 title={null} 来禁用。#22202
    • 🆕 Pagination supports autoResize prop。#21959 @wendellhu95
    • 🆕 Popover/Popconfirm 添加 render props 支持。#22034 @nossbigg
    • 🆕 TimePicker.RangePicker 支持 order 属性用于设置排序行为。#21948
    • 🆕 Carousel dots 支持对象传递 className#21848
    • 🆕 Form validateMessages 支持 ${label} 变量。#21835
    • 🆕 暴露 Breadcrumb.Item 组件的所有 Dropdown 的可配置属性。#20763 @paranoidjk
    • ⌨️ 增强 Tabs 可访问性。#22287
      • 新增 Tabs keyboard 属性用于开关键盘切换功能。
      • Tabs extraContent 里的元素不再触发键盘切换功能。
    • 🛠 添加 Form.Item 在受控时使用 defaultValue 的警告信息。#22571
    • 🛠 Typography onExpand 添加事件参数。#22092 @BlazPocrnja
    • 🛠 简化 Popconfirm 和 Popover 的 dom 结构。#22052
    • 🐞 修复 Autocomplete valuenull 时,值展示 null 的问题。#21955
    • 🐞 调整 Drawer 无 title 时关闭按钮样式以避免遮挡滚动条。#22710
    • 🐞 修复 Calendar 的一些样式细节问题。#22676
    • Table
      • 🐞 修复 Table 在 Safari 下固定列的阴影样式问题。#22680
      • 🐞 修复 Table 样式影响内嵌 table 的问题。#22643
      • 🐞 修复 Table 同时设置 rowSelectiononRow 事件冒泡问题。#22566 @hengkx
      • 🐞 修复 Table 空文本没有居中的问题与空数据依然展示了分页的问题。#22548 @hengkx
    • 🐞 修复 Input 只配置 suffix 时的样式对齐问题。#22603
    • 🐞 修复 Alert 无法和 Tooltip/Popover 一起使用的问题。#22594
    • 🐞 修复嵌套动态 Form.Item 会被 react 警告更新移除节点的信息。#22575
    • 💄 调整 Tag processing 状态颜色。#22303
    • 💄 移除 Select 下拉组标题的鼠标可点击样式。#22581
    • 💄 迁移 @form-item-label-height less 变量到主题变量中。#22600 @slavakam
    • 💄 优化 Table 筛选菜单按钮的样式并修复 Dropdown 二级菜单的上下边距。#22072
    • 💄 新增 less 变量 @link-focus-decoration@link-focus-outline#22511
    • 💄 新增 DatePicker disabled 时,分隔符鼠标禁用样式。#22563
    • RTL
      • 💄 优化 CheckBox inner RTL 样式问题。#22627
      • 🐞 优化 Upload picture-card RTL 样式问题。#22630
      • 🐞 修复 Badge RTL 数字显示样式问题。#22665
      • 🐞 修复 Select RTL 多选可清空时,选项样式问题。#22596
      • 🐞 修复 Progress RTL 样式问题。#22558
      • 🐞 修复 Badge RTL 样式问题。#22551
      • 🐞 修复 Input RTL 样式问题。#22525
      • 🐞 修复 Steps RTL 样式问题。#22523
      • 💄 优化 Tabs RTL 按钮样式问题。#22653
      • 💄 优化 Input.Group RTL 样式问题。#22624
      • 💄 优化 Timeline label RTL 样式问题。#22652
      • 💄 优化 Select group RTL 样式问题。#22584
      • 💄 优化 Dropdown.Button RTL 样式问题。#22519
    • Typescript
      • 🛠 替换废弃的 React.SFCReact.FC#22691 @Rustin-Liu
      • 🐞 修复 Form.Item children 的类型定义。#22662
  • 4.0.4 - 2020-03-23
    • 🐞 Fix AutoComplete clear icon overlap issue on search icon. #22310
    • 🐞 Fix Button align issue when is disabled and wrapped by Tooltip. #22461
    • 🐞 Fix Cascader search need to press down arrow twice to select item. #22216 @Kermit-Xuan
    • 🐞 Fix Carousel cannot works on Snowpack. #22507
    • 🐞 Fix ConfigProvider componentSize not works on DatePicker.RangePicker. #22486
    • 🐞 Fix Descriptions cannot fit to small container width. #22407
    • ⚡️ Optimization Form.Item with multiple noStyle children Form.Item message collection performance. #22410
    • 🐞 Fix Grid broken style using Col without span. #22455
    • 💄 Add InputNumber RTL style. #22434
    • Menu
      • 🛠 Menu inherit line-height from header. #16142 @sheerun
      • 🐞 Fix Menu unexpected scrollbar when show and hide. #22248
    • 🐞 Fix Progress Dashboard won't allow gapDeg to be 0. #22462 @thisrabbit
    • 🛠 Adjust Radio.Group logic that value is undefined should be uncontrolled mode. #22245
    • ⚡️ Reduce Row unnecessary render when gutter is array. #22475 @dolfje
    • 💄 Tweak RangePicker arrow shadow style. #22406
    • 🐞 Fix Select dropdown menu vertical padding. #22251
    • 🐞 Fix Slider tooltip crash when with nullable value. #22482
    • Table
      • 🐞 Fix Table ColumnGroup with controlled sorterOrder not working issue. #22450
      • 🐞 Fix Table border radius style. #22413 @akshatmittal
      • 🐞 Fix Table fixed column height issue. #22367
      • 🐞Fix Table row expand icon show error in ipad. #22334 @BugHiding
      • 🛠 Table column.filter support boolean value. #22277 @xudongdev
      • 🐞 Fix Table filter no working when only set onFilter. #22317
    • 🐞 Fix TreeSelect treeIcon not working. #22437
    • 🐞 Refactor DirectoryTree to fix deprecated warning. #22318
    • 🐞 Fix Typography nest list style issue. #22284
    • 🐞 Adjust Upload onChange return fileList is immutable data to avoid render issue. #22322
    • 🌎 Localization
    • Typescript

    • 🐞 修复 AutoComplete 下使用 Search 时清除图标和搜索图标重叠样式异常的问题。#22310
    • 🐞 修复 Button 为 disabled 时被 Tooltip 包裹时的对齐问题。#22461
    • 🐞 修复 Cascader 搜索时需要按两次向下箭头才能选中问题。#22216 @Kermit-Xuan
    • 🐞 修复 Carousel 无法使用 Snowpack 构建的问题。#22507
    • 🐞 修复 ConfigProvider componentSize 对 DatePicker.RangePicker 无效的问题。#22486
    • 🐞 修复 Descriptions 在小尺寸下无法自适应的问题。#22407
    • 🐞 修复 Grid 下使用不带 span 的 Col 时样式错乱的问题。#22455
    • ⚡️ 优化 Form.Item 有多个 noStyle 子 Form.Item 时信息收集性能。#22410
    • 💄 增加 InputNumber RTL 模式样式。#22434
    • Menu
      • 🛠 Menu 继承标题的 line-height#16142 @sheerun
      • 🐞 修复 Menu 子菜单展开/收起时会出现滚动条的问题。#22248
    • 🐞 修复 Progress 仪表盘状进度条传入 gapDeg0 时仍然有缺口的问题。#22462 @thisrabbit
    • 🛠 调整 Radio.Group 逻辑,valueundefined 时为非受控状态。#22245
    • 💄 微调 RangePicker 箭头阴影样式。#22406
    • ⚡️ 减少 Row 在 gutter 是数组时非必要的额外渲染。#22475 @dolfje
    • 🐞 修复 Select 下拉菜单的上下 padding。#22251
    • 🐞 修复 Slider 使用 nullable 值时弹出提示会崩溃的问题。#22482
    • Table
      • 🐞 修复 Table ColumnGroup 使用受控 sorterOrder 无效的问题。#22450
      • 🐞 修复 Table 边框圆角样式问题。#22413 @akshatmittal
      • 🐞 修复 Table 固定列高度样式问题。#22367
      • 🐞 修复 Table 展开行按钮在 ipad 下的样式问题。#22334 @BugHiding
      • 🐞 修复 Table 在只设置 onFilter 时过滤无效的问题。#22317
      • 🛠 Table column.filter 的 value 定义可以支持 boolean#22277 @xudongdev
    • 🐞 重构 DirectoryTree 以修复废弃 API 警告信息。#22318
    • 🐞 修复 TreeSelect treeIcon 无效的问题。#22437
    • 🐞 修复 Typography 嵌套列表的样式问题。#22284
    • 🐞 调整 Upload onChange 返回参数 fileList 为不可变数据以解决渲染问题。#22322
    • 🌎 国际化
    • Typescript
      • 🐞 移除 Table getCheckboxPropschecked 类型定义。#22391 @geekrainy
  • 4.0.3 - 2020-03-15
    • Menu
      • 🐞 Fix Menu horizontal Item with nest Icon miss margin style. #22021
      • 🐞 Fix Menu item wrong title when setting getPopupContainer. #22182
      • 💄 Optimize the style of Icon in Menu. #22090 @x1mrdonut1x
      • 🐞 Fix Avatar in horizontal Menu margin issue. #22038 #22033
    • Slider
      • 🐞 Fix an issue where the position of 'slider handle' is incorrect in the vertical case of Slider. #22135 @wendellhu95
      • 💄 Fix Slider missing focus style. #22161
    • Table
      • 🐞 Fix ConfigProvider not work on Table filter dropdown. #22133
      • 🐞 Fix Table nest tree column expandable style issue with fixed column. #22131
      • 🐞 Fix an issue where Table filtering throws cannot read property 'map' of undefined. #22096 @yoyo837
      • 🐞 Fix Table expandable column not fixed when selection column is fixed. #22087
      • 🐞 Fix Table filter menu reset not working. #22079 @shaodahong
      • 🐞 Fix Table filter sub menu max height with many items. #22230
    • Form
    • 🐞 Fixed the problem of using custom icons to wrap in Input.Group. #22197 @xrkffgg
    • 💄 Adjust Select single padding style to avoid tweak with dropdown. #22167
    • 💄 Fix Calendar header select ellipsis bug. #22148
    • 💄 Fixed Dropdown content and icons overlapping. #22098 @xrkffgg
    • 🐞 Fix Select ellipsis bug in Firefox. #22101
    • 🐞 Remove PageHeader unnecessary overflow: hidden style,Optimize PageHeader extra buttons responsive design. #22030
    • 🐞 Fix TextArea autoSize don't scroll bottom in Firefox. #22014
    • 🇫🇷 The full fr_FR internationalized text. #22122 @PaulJln
    • RTL
      • 💄 Optimize the style of Pagination in RTL mode. #22155 @xrkffgg
      • 💄 Fixed the icon style with Cascader RTL. #22191 @xrkffgg
      • 💄 Optimize the Checkbox.Group style in RTL mode. #22186 @xrkffgg
      • 💄 Optimize Radio.Button style issues in RTL mode. #22066 @xrkffgg
      • 🐞 Optimize table-pinned style issues that are listed under RTL. #21914 @saeedrahimi
      • 💄 Adjust the direction of the Dropdown icon in RTL mode. #22104 @xrkffgg
      • 💄 Optimize the Breadcrumb style in RTL mode. #22159 @xrkffgg
      • 💄 Optimize the style of the Steps component in RTL mode. #22175 @xrkffgg
      • 💄 Optimize styles in RTL mode with form feedback. #22222
    • TypeScript
      • 🔷 Update the operation type definition of FormList. #22058 @kagawagao
      • 🔷 Update the definition of the trigger parameter for components such as Tooltip. #22043 @wendellhu95

    • Menu
      • 🐞 修复 Menu 水平 Item 使用嵌套结构 Icon 会丢失 margin 的问题。#22021
      • 💄 优化 Menu 中 Icon 的样式。#22090 @x1mrdonut1x
      • 🐞 修复 Menu 收起模式下设置 getPopupContainer 时标题显示错误的问题。#22182
      • 🐞 修复 Avatar 在水平 Menu 中的 margin 样式问题。#22038 #22033
    • Slider
      • 🐞 修复 Slider 垂直情况下拖动节点的位置错误的问题。#22135 @wendellhu95
      • 💄 修复 Slider 丢失的 focus 样式。#22161
    • Table
      • 🐞 修复 Table 筛选功能抛出 Cannot read property 'map' of undefined 的问题。#22096 @yoyo837
      • 🐞 修复 ConfigProvider 没有作用在 Table 过滤弹框上的问题。#22133
      • 🐞 修复 Table 树形结构下展开与固定列配合的样式问题。#22131
      • 🐞 修复 Table 选择列固定时展开列不固定的问题。#22087
      • 🐞 修复 Table 过滤菜单重置失效的问题。#22079 @shaodahong
      • 🐞 修复 Table 筛选子菜单高度溢出屏幕的问题。#22230
    • Form
    • 🐞 修复 Input.Group 中使用 自定义图标换行的问题。#22197 @xrkffgg
    • 💄 修复 Calendar 年月选择菜单内容被省略的问题。#22148
    • 💄 调整 Select 单选框 padding 样式以防止下拉框内容的抖动。#22167
    • 💄 修复 Dropdown 内容和图标重叠问题。#22098 @xrkffgg
    • 🐞 修复 Select 在 Firefox 下异常省略的问题。#22101
    • 🐞 移除 PageHeader 中不必要的 overflow: hidden 样式以修复弹层隐藏问题,优化 PageHeader 右侧按钮的响应式表现。#22030
    • 🐞 修复 Radio 组无法正确换行的问题。#22229
    • 🐞 修复 TextArea autoSize 时在 Firefox 下不会自动滚动到底的问题。#22014
    • 🇫🇷 补全的 fr_FR 国际化文本。#22122 @PaulJln
    • RTL
      • 💄 优化 Pagination 在 RTL 模式下的样式。#22155 @xrkffgg
      • 💄 修复 Cascader RTL 模式下 icon 样式的错误的问题。#22191 @xrkffgg
      • 💄 优化 Checkbox.Group 在 RTL 模式下样式。#22186 @xrkffgg
      • 💄 优化 Radio.Button 在 RTL 模式下样式问题。#22066 @xrkffgg
      • 🐞 优化 Table 固定列在 RTL 下的样式问题。#21914 @saeedrahimi
      • 💄 调整 Dropdown 在 RTL 模式的下拉图标方向。#22104 @xrkffgg
      • 💄 优化 Breadcrumb 在 RTL 模式下样式。#22159 @xrkffgg
      • 💄 优化 Steps 组件在 RTL 模式下的样式。#22175 @xrkffgg
      • 💄 优化表单反馈下在 RTL 模式下的样式。#22222
    • TypeScript
  • 4.0.2 - 2020-03-08
    • Form
      • 🐞 Fix nest Form.Item dynamic remove will warning in React. #21896
      • ⚡️ Form useForm now return same instance for perfermance. #21927
      • ⚡️ Refactor Form.Item render logic that will only render once when children is a pure component. #21991
      • ⚡️ FormContext use a memoized value to avoid trigger FormItem's unintentional renders. #21980 @qiqiboy
    • Table
      • 🐞 Fix Table dropdown popup at abnormal direction. #21905
      • 🐞 Fix Table expandIconColumnIndex display order with rowSelection. #21915
      • 🐞 Fix Table size="small" header background color is not same as other size. #21942
      • 🐞 Fix Table className and style works on wrong node. #21974
    • Select
      • 🐞 Fix Select align issue with empty string value. #21880
      • 🐞 Fix small size Select tag text not align middle. #21940 @xrkffgg
    • Menu
      • 🐞 Fix Menu bottom margin is missing. #21867
      • 🐞 Fix horizontal Menu extra margin of Menu.Item with only icon. #21925
      • 🐞 Fix Menu popup menu overflow issue when contains too many items. #21930
    • 🐞 Fix Badge animation when switch between 10 and 11. #21834 @wendellhu95
    • 🐞 Fix Radio.Button inside Tooltip throws Function components cannot be given refs warning. #21895 @AshoneA
    • 🐞 Fix Descriptions miss style when content is falsy. #21901
    • 🐞 Fix DatePicker cursor style on seperator. #21937 @xrkffgg
    • 🐞 Fix ConfigProvider prefixCls not working on Input.Password. #21953 @tdida
    • 🐞 Fix Carousel dots not align center. #21960 @liusiasi
    • 🐞 Fix Input.Search border style in rtl mode. #21946 @xrkffgg
    • Less
      • 🆕 Add @outline-fade variable. #20227 @Satloff
      • 🆕 Add @form-item-label-height variable. #21912
    • TypeScript
      • 🌟 Improve Form.Item renderProps definite. #21911

    • Form
      • 🐞 修复嵌套 Form.Item 移除会导致 React 报警告的问题。#21896
      • ⚡️ Form.useForm 现在将返回相同的实例以优化重复渲染的问题。#21927
      • ⚡️ 重构 Form.Item 渲染逻辑以使其子元素为纯组件时值变更只会渲染一次。#21991
      • ⚡️ FormContext 使用 memoized 值避免 Form.Item 产生额外的渲染。#21980 @qiqiboy
    • Table
      • 🐞 修复 Table 内浮层组件弹出方向异常的问题。#21905
      • 🐞 修复 Table classNamestyle 作用在了错误的元素上的问题。#21974
      • 🐞 修复 Table expandIconColumnIndexrowSelection 共用时的展示顺序问题。#21915
      • 🐞 修复 Table size="small" 时表头颜色和其他尺寸不一致的问题。#21942
    • Select
      • 🐞 修复 Select 在空字符串值时的样式对齐问题。#21880
      • 🐞 修复小号 Select 在多选模式下 tag 文字不居中的问题。#21940 @xrkffgg
    • Menu
      • 🐞 修复 Menu 弹出菜单底部边距丢失的问题。#21867
      • 🐞 修复 Menu 水平模式下 Menu.Item 只有一个 Icon 时仍然有额外 margin 的问题。#21925
      • 🐞 修复 Menu 弹出菜单超出屏幕高度的问题。#21930
    • 🐞 修复 Badge 数字在 10 和 11 切换时的动画错误。#21834 @wendellhu95
    • 🐞 修复 Radio.Button 上使用 Tooltip 会报 Function components cannot be given refs 警告。#21895
    • 🐞 修复 Descriptions 内容为 falsy 值时样式丢失的问题。#21901
    • 🐞 修复 DatePicker 在分隔符上的鼠标手型。#21937 @xrkffgg
    • 🐞 修复 ConfigProvider prefixCls 在 Input.Password 上不生效的问题。#21953 @tdida
    • 🐞 修复 Carousel dots 控件不居中的问题。#21960 @liusiasi
    • 🐞 修复 Input.Search 边框高亮样式在 rtl 模式下丢失的问题。#21946 @xrkffgg
    • Less
      • 🆕 新增 @outline-fade 变量。#20227 @Satloff
      • 🆕 新增 @form-item-label-height 变量。#21912
    • TypeScript
      • 🌟 增强 Form.Item renderProps 定义。#21911
from antd GitHub release notes
Commit messages
Package name: antd
  • d3d7cf8 docs: ✨ add 4.1.0 changelog (#22721)
  • a99dde8 ✅ fix ci
  • ff95260 📖 update pagination doc
  • 2a9d6cd ✅ improve breadcrumb test coverage (#22719)
  • 7212a97 chore: Merge feature
  • db3a81a feat: 🔢 improve default pagination switch experience (#22711)
  • 779cef4 fix: typo (#22715)
  • 7a64d5b fix:document on Select (#22714)
  • b916f7c docs: Update AutoComplete docs
  • d0dee05 style: optimize upload rtl style (#22630)
  • 973c649 Merge pull request #22713 from ant-design/feature-merge-master
  • 7bbbcb7 biger size
  • f8c5d95 ignore styleint line rule
  • 1ec7b2c merge master
  • 702cb61 chore: Fix jest filter
  • d95dc83 fix: Drawer close btn style (#22710)
  • ecf4e47 docs: Update icons doc (#22709)
  • dda45e4 feat: support compact theme (#22126)
  • 2cb516b fix: narrow down types of string literals in a few defaultProps declarations (#22686)
  • 7cea7dd 🆙 @ant-design/colors
  • 56aabf3 chore: make bundle size smaller (#22693)
  • 2cfad04 Merge pull request #22694 from ant-design/feature-merge-master
  • 9132042 merge master
  • c806a83 fix: set codesandbox referrer to no-referrer (#22688)

Compare


Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open upgrade PRs.

For more information:

🧐 View latest project report

🛠 Adjust upgrade PR settings

🔕 Ignore this dependency or unsubscribe from future upgrade PRs

@netlify
Copy link

netlify bot commented Mar 31, 2020

Deploy preview for footsteps-app ready!

Built with commit f2b3321

https://deploy-preview-121--footsteps-app.netlify.com

@xlogix xlogix merged commit 85100c4 into master Apr 1, 2020
@xlogix xlogix deleted the snyk-upgrade-d797be631050eed8652bc3941c92e2c5 branch April 7, 2020 19:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants