fix(deps): update weekly patch updates #1048
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
7.0.0
->7.0.2
1.2.5
->1.2.6
0.1.25
->0.1.26
4.8.8
->4.8.24
1.9.3
->1.9.7
3.0.38
->3.0.57
13.1.4
->13.1.8
6.1.6
->6.1.11
1.8.6
->1.8.10
5.1.26
->5.1.34
4.24.8
->4.24.15
1.11.7
->1.11.10
21.1.1
->21.1.2
6.0.5
->6.0.12
2.8.6
->2.8.8
5.3.9
->5.3.11
9.0.3
->9.0.4
Release Notes
ant-design/ant-design-colors (@ant-design/colors)
v7.0.2
Compare Source
2750e05
v7.0.1
Compare Source
ant-design/ant-design-charts (@ant-design/plots)
v1.2.6
Compare Source
antvis/algorithm (@antv/algorithm)
v0.1.26
Compare Source
antvis/g6 (@antv/g6)
v4.8.23
Compare Source
v4.8.22
Compare Source
v4.8.21
v4.8.20
v4.8.19
Compare Source
v4.8.17
Compare Source
v4.8.16
Compare Source
v4.8.15
Compare Source
v4.8.14
Compare Source
v4.8.13
Compare Source
v4.8.12
Compare Source
v4.8.10
Compare Source
v4.8.9
Compare Source
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 optionalautoJoin
flag that can be used to keep the effect from finishing until all active forked tasks have completed.updateQueryData
now has anupdateProvidedTags
option that will force a recalculation of that endpoint's provided tags. It currently defaults tofalse
, and we'll likely turn that totrue
in the next major.Other Fixes
The
builder.addCase
method now throws an error if atype
string is empty.fetchBaseQuery
now uses an alternate method to clone the originalRequest
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 inconfigureStore
, 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 ofenhanceEndpoints
can now override the TS type of the original data.fetchBaseQuery
now properly checks for a globalresponseHandler
option.Performance and Internals
RTK Query now uses Immer's
original()
to do comparisons inside ofcopyWithStructuralSharing
, 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
arethetypeswrong
automated CLI check by @markerikson in https://github.com/reduxjs/redux-toolkit/pull/3294attw
CLI option to treat problems as non-errors by @markerikson in https://github.com/reduxjs/redux-toolkit/pull/3316responseHandler
being used infetchBaseQuery
by @praxxis in https://github.com/reduxjs/redux-toolkit/pull/3137resetApiState
by @phryneas in https://github.com/reduxjs/redux-toolkit/pull/3333subscriptionUpdated
as autobatched by @markerikson in https://github.com/reduxjs/redux-toolkit/pull/3364Full Changelog: reduxjs/redux-toolkit@v1.9.3...v1.9.4
rive-app/rive-react (@rive-app/react-canvas)
v3.0.57
Compare Source
4cce306
184ba2e
f6d8db3
v3.0.56
Compare Source
4496eff
5e98586
v3.0.55
Compare Source
f19295f
7054630
v3.0.54
Compare Source
62a425f
4a554dd
v3.0.53
Compare Source
3e6262f
e57a99b
v3.0.52
Compare Source
8a968ec
b5f00e5
v3.0.51
Compare Source
2c82fa0
a24b910
22e6dd3
v3.0.50
Compare Source
2b24949
b56c17d
v3.0.49
Compare Source
a6fe08c
cd1e141
v3.0.48
Compare Source
353fbf8
ae05ad4
v3.0.47
Compare Source
ff8bbb0
89a6802
v3.0.46
Compare Source
d3bc913
91025e6
ce56321
v3.0.45
Compare Source
6544874
4b6f541
v3.0.44
Compare Source
e06fdd1
ed90c7f
v3.0.43
Compare Source
b8ffb6b
2dc925e
v3.0.42
Compare Source
639de79
a9961c8
v3.0.41
Compare Source
fc082d1
87fa1ae
v3.0.40
Compare Source
62490a5
fcc1a16
v3.0.39
Compare Source
29e0ceb
3e6a951
ant-design/ant-design (antd)
v4.24.15
Compare Source
disabled
state problem that affected by Form. #44837 @Yuiai01disabled
状态被 Form 的disabled
覆盖的问题。#44837 @Yuiai01disabled
样式在 Form hover 场景下被覆盖的问题。#44779 @crazyairv4.24.14
Compare Source
rc-util/lib/utils/set
not existed. #44630 @varownmenu
属性时出现overlay
废弃警告的问题。#43917 @whalesinkrc-util/lib/utils/set
不存在的问题。#44630 @varownv4.24.13
Compare Source
getCurrentAnchor
when scroll. #43917lodash
dependencies. 2b43f73 @taozhou-gleanonOk
callback. #43536 @maroon1validateMessages
nesting error. #43480 @Wxh16144@checkbox-border-radius
to variable.less. #43356getCurrentAnchor
的问题。#43917lodash
依赖。2b43f73 @taozhou-gleanonOk
回调中的 Promise 异常。#43536 @maroon1validateMessages
嵌套使用错误。#43480 @Wxh16144@checkbox-border-radius
导致变量表现不一致的问题。#43356v4.24.12
Compare Source
onFieldsChange
event even all the fields do not configrules
. #43292rules
时仍会错误触发onFieldsChange
事件的问题。#43292v4.24.11
Compare Source
onChange
sometime not sync when in React 18. #43200closeIcon={null}
. #42791id
was passed in incorrectly, and now is always added to the popup panel. #43124 @MuxinFengprefix
abnormal height under Form.Item ofhasFeedBack
. #43048getPopupContainer
sometime makes width too narrow. #42697rc-field-form
when importingFormProvider
. #42502 @BanShan-AleconVisibleChange
twice. #42351onFieldsChange
missingvalidating
status change. #42263div
whentitle
andcontent
is null. 19f8505 @MaHuidisabled
logic. #42143 @Wxh16144onChange
有时数据不正确的问题。#43200closeIcon={null}
时关闭图标没有消失的问题。#42791id
传入位置不正确的问题,现在始终会添加至弹出面板上。#43124 @MuxinFengprefix
时在 Form.ItemhasFeedBack
内高度异常的问题。#43048getPopupContainer
后,某些时候宽度会过窄的问题。#42697FormProvider
时,错误引入 'rc-field-form' 其他的无关依赖的问题。#42502 @BanShan-AleconVisibleChange
会重复触发的问题。#42351onFieldsChange
丢失一次validating
状态变更的更新事件。#42263title
和content
都为空时展示空气泡的问题19f8505 @MaHuiv4.24.10
Compare Source
version
always shows5.2.2
. #42101version
总是返回5.2.2
的问题。#42101v4.24.9
Compare Source
railStyle
for custom style. #40942 @c01nd01rdisplayRender
prompt cannot be used when deletingmultiple
. #40940 @crazyairchecked
when unchecked. #41888railStyle
属性用于自定义样式。#40942 @c01nd01r0px
的问题。#41646multiple
不能使用 displayRender 提示。#40940 @crazyair@border-radius-sm
小号圆角。#40823checked
属性。#41888iamkun/dayjs (dayjs)
v1.11.10
Compare Source
Bug Fixes
ar
locale (#2418) (361be5c)v1.11.9
Compare Source
Bug Fixes
v1.11.8
Compare Source
Bug Fixes
date
parameter as optional (#2222) (b87aa0e)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.
This PR has been generated by Mend Renovate. View repository job log here.