-
Notifications
You must be signed in to change notification settings - Fork 0
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
chore(deps): update dependency redux-actions to v3 #117
base: main
Are you sure you want to change the base?
Conversation
Reviewer's Guide by SourceryThis pull request updates the redux-actions dependency from version 0.9.1 to 3.0.0. This is a major version update, which includes breaking changes such as ESM only and default export, and dropping CommonJS/UMD builds. Class diagram showing redux-actions module export changesclassDiagram
class ReduxActionsV0.9 {
+createAction()
+handleAction()
+handleActions()
CommonJS exports
UMD exports
}
class ReduxActionsV3 {
+createAction()
+handleAction()
+handleActions()
ESM default export only
}
ReduxActionsV0.9 --> ReduxActionsV3: Major Version Update
note for ReduxActionsV3 "Breaking: ESM only with default export"
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We have skipped reviewing this pull request. It seems to have been created by a bot (hey, renovate[bot]!). We assume it knows what it's doing!
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
69b92b2
to
9534c98
Compare
This PR contains the following updates:
^0.13.0
->^3.0.0
Release Notes
redux-utilities/redux-actions (redux-actions)
v3.0.3
Compare Source
v3.0.0
Compare Source
v2.6.5
Compare Source
combineActions
(#334)v2.6.4
Compare Source
v2.6.3
Compare Source
9ba82de
)v2.6.1
Compare Source
1a8e5cc
)v2.6.0
Compare Source
isFunction
,isPlainObject´ and
isSymbolchecks
(#312) (2802c9a
)v2.5.1
Compare Source
e6dbdee
)v2.5.0
Compare Source
lodash
andlodash-es
dependency (#307) (87ff772
)Before
After
v2.4.0
Compare Source
v2.3.2
Compare Source
ff7422b
)v2.3.1
Compare Source
e0b9c71
)v2.3.0
Compare Source
v2.2.1
Compare Source
758ad10
Rename module to be action-agnostic (@yangmillstheory)v2.2.0
Compare Source
a71aa96
ccf072c
v2.1.0
Compare Source
Resolve #220 with
b9101a3
(@JasonKid).v2.0.3
Compare Source
Make
createAction
more efficient by doing more pre-processing up front.c87508b
Thanks to @Lucretiel.
v2.0.2
Compare Source
Couple of improvements; thanks to the contributors.
41780a2
Utilize lodash-es in es builds. (#206) @jaridmargolinfeb9386
Use defaultState in handleActions with empty reducer map (#203) @webholicsv2.0.1
Compare Source
Fix a missing export causing warnings in module bundlers.
https://github.com/acdlite/redux-actions/pull/198, @krisaoe,
727d9c1
v2.0.0
Compare Source
This release adds the ability to create structured and namespaced action creators (redux-utilities/redux-actions@a4047db, @yangmillstheory).
The only backwards-incompatible change is around this behavior, and so necessitated a major version bump.
v1.2.2
: 1.2.2Compare Source
Fix #185.
redux-utilities/redux-actions@69f7be1 - @yangmillstheory @inxilpro
v1.2.1
Compare Source
Enhancements
9037379
This approximately halves the minified bundle size. Original credit goes to @lxe.
v1.2.0
Compare Source
Mostly, this release adds a new ES2015 build in the
es/
folder for tree-shaking bundlers like Webpack2 and Rollup.v1.1.0
Compare Source
We found that lots of library users were specifying
null
payload creators increateActions
andcreateAction
. Rather than force them into a strict paradigm of passing justundefined
, we decided to continue allowing this behavior. See #170, #169.Also, this adds an example of how to use
combineActions
withcreateActions
in the README, in response to #163.Fixes
null
payload creator to the identity (114115b
) - @yangmillstheoryDocumentation
combineActions
example in README (6679a29
) - @yangmillstheoryv1.0.1
Compare Source
With #141 we have made other libraries incompatible with redux-actions and it resulted to an unexpected behavior (#164, #167). If an action is not a FSA, handleAction should not handle it and just pass it to the next reducer. This fix will remove the FSA check to support Non-FSA.
Fixes
ef4acb7
) - @timchev1.0.0
Compare Source
This is our first major release. If you experience any undocumented issues, please let us know immediately in the issues or feel free to open a pull request. Any contribution is much appreciated. We try our best to ship new fix releases as fast as we can.
From now on we are checking heavily for correct usage of this library and using
invariant
for throwing errors. It is a mirror of Facebooksinvariant
in React and makes use of theprocess.env.NODE_ENV
value as well.Another big change is that the payload can only be omitted with
undefined
. That allows us to passnull
as payload, which has been requested many times by the community. We also had a long discussion on the proper usage ofnull
andundefined
for omitting values in general. You can read it in #115 and #128.If you want to have a quick chat with us, tweet us @yangmillstheory or @timche_.
BREAKING CHANGES
aaaa110
) - @timche26a9ccb
) - @yangmillstheory69f69ec
) - @yangmillstheoryf9bf59e
) - @yangmillstheoryea04ccf
) - @JaKXzEnhancements
227db63
) - @yangmillstheoryConfiguration
📅 Schedule: Branch creation - At any time (no schedule defined), 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.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.