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

fix(deps): update weekly patch updates #1048

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 17, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@ant-design/colors 7.0.0 -> 7.0.2 age adoption passing confidence dependencies patch
@ant-design/plots 1.2.5 -> 1.2.6 age adoption passing confidence dependencies patch
@antv/algorithm (source) 0.1.25 -> 0.1.26 age adoption passing confidence dependencies patch
@antv/g6 (source) 4.8.8 -> 4.8.24 age adoption passing confidence dependencies patch
@reduxjs/toolkit (source) 1.9.3 -> 1.9.7 age adoption passing confidence dependencies patch
@rive-app/react-canvas 3.0.38 -> 3.0.57 age adoption passing confidence dependencies patch
@types/react-beautiful-dnd (source) 13.1.4 -> 13.1.8 age adoption passing confidence devDependencies patch
@types/react-helmet (source) 6.1.6 -> 6.1.11 age adoption passing confidence devDependencies patch
@types/react-scroll (source) 1.8.6 -> 1.8.10 age adoption passing confidence devDependencies patch
@types/styled-components (source) 5.1.26 -> 5.1.34 age adoption passing confidence devDependencies patch
antd (source) 4.24.8 -> 4.24.15 age adoption passing confidence dependencies patch
dayjs (source) 1.11.7 -> 1.11.10 age adoption passing confidence dependencies patch
jsdom 21.1.1 -> 21.1.2 age adoption passing confidence devDependencies patch
mongo 6.0.5 -> 6.0.12 age adoption passing confidence patch
prettier (source) 2.8.6 -> 2.8.8 age adoption passing confidence devDependencies patch
styled-components (source) 5.3.9 -> 5.3.11 age adoption passing confidence dependencies patch
use-debounce 9.0.3 -> 9.0.4 age adoption passing confidence dependencies patch

Release Notes

ant-design/ant-design-colors (@​ant-design/colors)

v7.0.2

Compare Source

v7.0.1

Compare Source

ant-design/ant-design-charts (@​ant-design/plots)

v1.2.6

Compare Source

  • 🐞 修复 graph node 更新时 marker 没有正常更新
  • 🐞 修复 minmap 多次渲染
  • 🐞 修复 minmap 更新失败
  • 🐞 修复 node 更新时 collapse icon 位置错误
antvis/algorithm (@​antv/algorithm)

v0.1.26

Compare Source

  • feat: dfs supports undirected graph data;
antvis/g6 (@​antv/g6)

v4.8.23

Compare Source

  • feat: brush-select supports selecting inside a combo with a configuration;
  • feat: activate-relations supports dehighlight a node by second clicking;
  • fix: simple timeline with invalid highlight fill problem, closes: #​5049;

v4.8.22

Compare Source

  • fix: read and clone large data for tree graph;
  • fix: download images with correct file name;

v4.8.21

  • feat: layout supports relayoutAtChangeData config to disable relayout while changeData of graph is called;

v4.8.20

  • fix: parent combo size problem, closes: #​4734;

v4.8.19

Compare Source

  • fix: custom node with image shape, setting state makes the image lost, closes: #​4707;
  • feat: timing event for graph destroy;

v4.8.17

Compare Source

  • fix: scroll delta for old version of firefox;

v4.8.16

Compare Source

  • fix: edge label is not draggable, closes: #​4612;
  • fix: error occurs while clicking back button on timebar when the slider is already on the start, closes: #​4598;
  • docs: scrollNode demo drag node problem, closes: #​4626;

v4.8.15

Compare Source

  • fix: layout umd url with fixed version instead of latest version;
  • fix: combo animate is not activated with createCombo;

v4.8.14

Compare Source

  • fix: upgrade layout for umd;

v4.8.13

Compare Source

  • fix: webpack dependency;

v4.8.12

Compare Source

  • feat: timebar supports individual container DOM;
  • fix: remove label if no longer present;

v4.8.10

Compare Source

  • fix: update layout from animate false to true;

v4.8.9

Compare Source

  • fix: type for draw function in elements, closes: #​4395;
  • fix: force2 with webworker, closes: #​4394;
  • fix: excludeInvisibles with collapse-expand behavior problem;
reduxjs/redux-toolkit (@​reduxjs/toolkit)

v1.9.7

Compare Source

This bugfix release rewrites the RTKQ hook TS types to significantly improve TS perf.

Changelog

RTKQ TS Perf

A number of users had reported that Intellisense for RTKQ API objects was extremely slow (multiple seconds) - see discussion in #​3214 . We did some perf investigation on user-provided examples, and concluded that the biggest factor to slow RTKQ TS perf was the calculation of hook names like useGetPokemonQuery, which was generating a large TS union of types.

We've rewritten that hook names type calculation to use mapped types and a couple of intersections. In a specific user-provided stress test repo, it dropped TS calculation time by 60% (2600ms to 1000ms).

There's more potential work we can do to improve things, but this seems like a major perf improvement worth shipping now.

What's Changed

Full Changelog: reduxjs/redux-toolkit@v1.9.6...v1.9.7

v1.9.6

Compare Source

This bugfix release adds a new dev-mode middleware to catch accidentally dispatching an action creator, adds a new listener middleware option around waiting for forks, adds a new option to update provided tags when updateQueryData is used, reworks internal types to better handle uses with TS declaration output, and fixes a variety of small issues.

Changelog
Action Creator Dev Check Middleware

RTK already includes dev-mode middleware that check for the common mistakes of accidentally mutating state and putting non-serializable values into state or actions.

Over the years we've also seen a semi-frequent error where users accidentally pass an action creator reference to dispatch, instead of calling it and dispatching the action it returns.

We've added another dev-mode middleware that specifically catches this error and warns about it.

Additional Options

The listener middleware's listenerApi.fork() method now has an optional autoJoin flag that can be used to keep the effect from finishing until all active forked tasks have completed.

updateQueryData now has an updateProvidedTags option that will force a recalculation of that endpoint's provided tags. It currently defaults to false, and we'll likely turn that to true in the next major.

Other Fixes

The builder.addCase method now throws an error if a type string is empty.

fetchBaseQuery now uses an alternate method to clone the original Request in order to work around an obscure Chrome bug.

The immutability middleware logic was tweaked to avoid a potential stack overflow.

Types Changes

The internal type imports have been reworked to try to fix "type portability" issues when used in combination with TS declaration outputs.

A couple additional types were exported to help with wrapping createAsyncThunk.

What's Changed

Full Changelog: reduxjs/redux-toolkit@v1.9.5...v1.9.6

v1.9.5

Compare Source

This bugfix release includes notable improvements to TS type inference when using the enhancers option in configureStore, and updates the listener middleware to only check predicates if the dispatched value is truly an action object.

What's Changed

Full Changelog: reduxjs/redux-toolkit@v1.9.4...v1.9.5

v1.9.4

Compare Source

This bugfix release includes tweaks to RTKQ options handling, tweaks for perf updates, dependency updates, and updates to our CI tooling.

Also, please check out our ongoing RTK 2.0 alpha releases! They have significant improvements to bundle size, ESM/CJS compatibility, TS typings, and reducer update performance. We're looking for real-world feedback on behavior, performance, and any issues you might run into.

Changelog

RTK Query Options Updates

Passing transformResponse as part of enhanceEndpoints can now override the TS type of the original data.

fetchBaseQuery now properly checks for a global responseHandler option.

Performance and Internals

RTK Query now uses Immer's original() to do comparisons inside of copyWithStructuralSharing, which should significantly speed up performance when applying changes from re-fetched data.

RTKQ's internal subscriptionUpdated action is now marked as batchable.

We've updated dependencies to Immer 9.0.21, Reselect 4.1.8, and Redux 4.2.1.

CI Updates

We've added a suite of example apps built with different frameworks such as CRA 4, CRA 5, Next, and Vite, as well as examples that check for compatibility in Node with CJS and ESM modes and with various TS module resolution modes.

What's Changed

Full Changelog: reduxjs/redux-toolkit@v1.9.3...v1.9.4

rive-app/rive-react (@​rive-app/react-canvas)

v3.0.57

Compare Source

25 July 2023

  • chore: move to manual npm publish workflow 4cce306
  • chore: release 3.0.57 184ba2e
  • chore: remove dryrun from release it script f6d8db3

v3.0.56

Compare Source

24 July 2023

  • chore: release 3.0.56 4496eff
  • patch: bump rive-wasm for follow-path patch 5e98586

v3.0.55

Compare Source

19 July 2023

  • chore: release 3.0.55 f19295f
  • feature: add onAdvance callback through wasm bump too 1.2.2 7054630

v3.0.54

Compare Source

26 June 2023

  • chore: release 3.0.54 62a425f
  • patch: Bump WASM runtimes for interpolation on states 4a554dd

v3.0.53

Compare Source

9 June 2023

v3.0.52

Compare Source

7 June 2023

  • chore: release 3.0.52 8a968ec
  • fix: bump WASM to fix iterator over animatables b5f00e5

v3.0.51

Compare Source

2 June 2023

  • Feature: Move canvas sizing logic into useResizeCanvas hook and clean up util hooks 2c82fa0
  • Update prop docs a24b910
  • chore: release 3.0.51 22e6dd3

v3.0.50

Compare Source

26 May 2023

  • chore: release 3.0.50 2b24949
  • feat: allow for children to be set inside the canvas for fallback content when canvas cannot be shown b56c17d

v3.0.49

Compare Source

24 May 2023

v3.0.48

Compare Source

18 May 2023

  • chore: release 3.0.48 353fbf8
  • feature: bump web runtime to support joysticks ae05ad4

v3.0.47

Compare Source

12 May 2023

  • chore: release 3.0.47 ff8bbb0
  • patch: bump wasm to 1.1.6 for flicker fix 89a6802

v3.0.46

Compare Source

2 May 2023

  • Add prop to the standalone Rive component d3bc913
  • chore: release 3.0.46 91025e6
  • patch: bump rive-wasm to allow new parameter for disabling Rive listeners ce56321

v3.0.45

Compare Source

19 April 2023

v3.0.44

Compare Source

19 April 2023

v3.0.43

Compare Source

14 April 2023

  • chore: release 3.0.43 b8ffb6b
  • patch: bump rive-wasm to take path fix 2dc925e

v3.0.42

Compare Source

13 April 2023

  • chore: release 3.0.42 639de79
  • chore: bump rive-wasm to get solo patch a9961c8

v3.0.41

Compare Source

6 April 2023

  • chore: release 3.0.41 fc082d1
  • patch: bump wasm dependency for blend state enhancements 87fa1ae

v3.0.40

Compare Source

5 April 2023

  • chore: release 3.0.40 62490a5
  • feature: Add support for touch and drag interactions on canvas fcc1a16

v3.0.39

Compare Source

30 March 2023

  • chore: release 3.0.39 29e0ceb
  • fix: bump wasm dependency for clipping issue fix 3e6a951
ant-design/ant-design (antd)

v4.24.15

Compare Source


  • 🐞 修复 Radio 的 disabled 状态被 Form 的 disabled 覆盖的问题。#​44837 @​Yuiai01
  • 💄 修复 DatePicker 的 disabled 样式在 Form hover 场景下被覆盖的问题。#​44779 @​crazyair

v4.24.14

Compare Source


v4.24.13

Compare Source


  • 🐞 修复 Anchor 在滚动时无法触发 getCurrentAnchor 的问题。#​43917
  • 🛠 Carousel 移除 lodash 依赖。2b43f73 @​taozhou-glean
  • 🐞 修复 Select 选中时移除图标未对齐错误。#​43667 @​Wxh16144
  • 🐞 让用户能够处理 Modal 中 onOk 回调中的 Promise 异常。#​43536 @​maroon1
  • 🐞 修复 ConfigProvider 表单校验信息 validateMessages 嵌套使用错误。#​43480 @​Wxh16144
  • 🐞 修复 variable.less 没有同步改动 @checkbox-border-radius 导致变量表现不一致的问题。#​43356

v4.24.12

Compare Source

  • 🐞 Fix Form submit trigger wrong onFieldsChange event even all the fields do not config rules. #​43292
  • 🐞 Fix Form.List nested Form event bubble not correct. #​43292

  • 🐞 修复 Form 在提交时,字段没有配置 rules 时仍会错误触发 onFieldsChange 事件的问题。#​43292
  • 🐞 修复 Form 嵌套 Form.List 嵌套 Form 的场景下,事件触发不正确的问题。#​43292

v4.24.11

Compare Source

  • 🆕 Drawer panel support event listener. #​42712 @​kiner-tang
  • 🐞 Fix Upload onChange sometime not sync when in React 18. #​43200
  • 🐞 Fix Notification cannot hide close icon by closeIcon={null}. #​42791
  • 🐞 Fix Drawer id was passed in incorrectly, and now is always added to the popup panel. #​43124 @​MuxinFeng
  • 🐞 Fix InputNumber with prefix abnormal height under Form.Item of hasFeedBack. #​43048
  • 🐞 Fix Popover with getPopupContainer sometime makes width too narrow. #​42697
  • 🐞 Fix Select will display the letter A under some circumstances. #​42654 @​tchen-l
  • 🐞 Fix ConfigProvider that import useless modules from rc-field-form when importing FormProvider . #​42502 @​BanShan-Alec
  • 🐞 Fix Popconfirm trigger onVisibleChange twice. #​42351
  • 🐞 Fix Form onFieldsChange missing validating status change. #​42263
  • 🐞 Fix Popover that display empty div when title and content is null. 19f8505 @​MaHui
  • 🐞 Fix Upload disabled logic. #​42143 @​Wxh16144
  • 🐞 Fix RangePicker wrong panel position under some circumstances. #​43179 @​cooljser
  • 🐞 Fix ConfigProvider makes Form component in the bundle even not use it. #​43207 @​yoyo837
  • 💄 Optimize Spin style to keep height of container the same as child element. #​42163 @​cheapCoder

  • 🆕 Drawer 组件面板支持事件监听。#​42712 @​kiner-tang
  • 🐞 修复 Upload 在 React 18 下 onChange 有时数据不正确的问题。#​43200
  • 🐞 修复 Notification 设置 closeIcon={null} 时关闭图标没有消失的问题。#​42791
  • 🐞 修复 Drawer id 传入位置不正确的问题,现在始终会添加至弹出面板上。#​43124 @​MuxinFeng
  • 🐞 修复 InputNumber 带有 prefix 时在 Form.Item hasFeedBack 内高度异常的问题。#​43048
  • 🐞 修复 Popover 设置 getPopupContainer 后,某些时候宽度会过窄的问题。#​42697
  • 🐞 修复 Select 在某些情况下会显示字母 A 的问题。#​42654 @​tchen-l
  • 🐞 修复 ConfigProvider 引入 FormProvider 时,错误引入 'rc-field-form' 其他的无关依赖的问题。#​42502 @​BanShan-Alec
  • 🐞 修复 Popconfirm 的 onVisibleChange 会重复触发的问题。#​42351
  • 🐞 修复 Form onFieldsChange 丢失一次 validating 状态变更的更新事件。#​42263
  • 🐞 修复 Popover 组件当 titlecontent 都为空时展示空气泡的问题19f8505 @​MaHui
  • 🐞 修复 Upload 禁用状态逻辑。#​42143 @​Wxh16144
  • 🐞 修复 RangePicker 在某些情况下面板打开未知不正确的问题。#​43179 @​cooljser
  • 🐞 修复使用 ConfigProvider 会导致未使用的 Form 组件也被打包的问题。#​43207 @​yoyo837
  • 💄 优化 Spin 样式,保持容器与子元素图标高度一致。#​42163 @​cheapCoder

v4.24.10

Compare Source

  • 🐞 Fix version always shows 5.2.2. #​42101
  • 🐞 Fix Popover width collapse when show on the screen edge. #​41953

  • 🐞 修复 version 总是返回 5.2.2 的问题。#​42101
  • 🐞 修复 Popover 在屏幕边缘时宽度塌缩的问题。#​41953

v4.24.9

Compare Source


  • 🆕 Slider 补充丢失的 railStyle 属性用于自定义样式。#​40942 @​c01nd01r
  • 🐞 修复 Select 在搜索时宽度变为 0px 的问题。#​41646
  • 🐞 删除 multiple 不能使用 displayRender 提示。#​40940 @​crazyair
  • 💄 Checkbox 默认使用 @border-radius-sm 小号圆角。#​40823
  • 🐞 修复 TextArea 在聚焦时丢失高亮样式的问题。#​41281 @​MuxinFeng
  • 🛠 调整 Checkbox 行为,现在未勾选时不再会添加 checked 属性。#​41888
  • TypeScript
iamkun/dayjs (dayjs)

v1.11.10

Compare Source

Bug Fixes

v1.11.9

Compare Source

Bug Fixes

v1.11.8

Compare Source

Bug Fixes

Configuration

📅 Schedule: Branch creation - "before 5am on monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@github-actions
Copy link

github-actions bot commented Apr 17, 2023

Test Results

141 tests   140 ✅  53s ⏱️
 14 suites    1 💤
  2 files      0 ❌

Results for commit 6176f86.

♻️ This comment has been updated with latest results.

@renovate renovate bot force-pushed the renovate/weekly-patch-updates branch 8 times, most recently from 7c4cdda to 1c1eeef Compare April 23, 2023 09:49
@renovate renovate bot force-pushed the renovate/weekly-patch-updates branch 9 times, most recently from dfd15f2 to 8aa0e55 Compare May 4, 2023 12:51
@renovate renovate bot force-pushed the renovate/weekly-patch-updates branch 4 times, most recently from c932cd6 to ba7598f Compare May 12, 2023 22:21
@renovate renovate bot force-pushed the renovate/weekly-patch-updates branch 2 times, most recently from f13d353 to 8559c04 Compare May 18, 2023 22:21
@renovate renovate bot force-pushed the renovate/weekly-patch-updates branch 4 times, most recently from a5d5bd5 to 0d8a081 Compare October 18, 2023 19:49
@renovate renovate bot force-pushed the renovate/weekly-patch-updates branch 2 times, most recently from 4d08a27 to 29d8bc9 Compare October 23, 2023 16:01
@renovate renovate bot force-pushed the renovate/weekly-patch-updates branch 3 times, most recently from 71a31d3 to e907dd3 Compare November 7, 2023 21:43
@renovate renovate bot force-pushed the renovate/weekly-patch-updates branch 4 times, most recently from 07f9585 to 2297062 Compare November 22, 2023 02:33
@renovate renovate bot force-pushed the renovate/weekly-patch-updates branch 4 times, most recently from 65fafb0 to 2a92d98 Compare November 29, 2023 13:29
@renovate renovate bot force-pushed the renovate/weekly-patch-updates branch 5 times, most recently from 178c9b3 to 6933ce0 Compare December 6, 2023 10:25
@renovate renovate bot force-pushed the renovate/weekly-patch-updates branch from 6933ce0 to b800989 Compare December 12, 2023 07:18
@renovate renovate bot force-pushed the renovate/weekly-patch-updates branch 3 times, most recently from 3362731 to 98572de Compare January 2, 2024 10:52
@renovate renovate bot force-pushed the renovate/weekly-patch-updates branch from 98572de to 6176f86 Compare January 4, 2024 05:19
@Peedee2002 Peedee2002 closed this Feb 4, 2024
@lhvy lhvy deleted the renovate/weekly-patch-updates branch July 27, 2024 05:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant