ffs-zera
ffs-zera copied to clipboard
chore(deps): update dependency react-transition-group to v4
This PR contains the following updates:
Package | Change | Age | Adoption | Passing | Confidence |
---|---|---|---|---|---|
react-transition-group | 2.7.0 -> 4.4.5 |
Release Notes
reactjs/react-transition-group (react-transition-group)
v4.4.5
Bug Fixes
- apply entering animation synchronously when unmountOnExit or mountOnEnter is enabled (#847) (1043549)
v4.4.4
Bug Fixes
v4.4.3
Bug Fixes
v4.4.2
Bug Fixes
v4.4.1
Bug Fixes
v4.4.0
Features
- add
nodeRef
alternative instead of internalfindDOMNode
(#559) (85016bf)-
react-transition-group internally uses
findDOMNode
, which is deprecated and produces warnings in Strict Mode, so now you can optionally passnodeRef
toTransition
andCSSTransition
, it's a ref object that should point to the transitioning child:import React from "react" import { CSSTransition } from "react-transition-group" const MyComponent = () => { const nodeRef = React.useRef(null) return ( <CSSTransition nodeRef={nodeRef} in timeout={200} classNames="fade"> <div ref={nodeRef}>Fade</div> </CSSTransition> ) }
-
Bug Fixes
- set the values of constants attached to
Transition
to match the exported ones (#554)
v4.3.0
Features
4.2.2 (2019-08-02)
Bug Fixes
4.2.1 (2019-07-02)
Bug Fixes
- updated SwitchTransition component to be default export and exported from index.js (#516) (cfd0070)
v4.2.2
Bug Fixes
v4.2.1
Bug Fixes
- updated SwitchTransition component to be default export and exported from index.js (#516) (cfd0070)
v4.2.0
Features
4.1.1 (2019-06-10)
Bug Fixes
v4.1.1
Bug Fixes
v4.1.0
Features
4.0.1 (2019-05-09)
Bug Fixes
- issue with dynamically applied classes not being properly removed for reentering items (#499) (129cb11)
v4.0.1
Bug Fixes
- issue with dynamically applied classes not being properly removed for reentering items (#499) (129cb11)
v4.0.0
Features
BREAKING CHANGES
- in environments where esm is supported importing from commonjs requires explicitly adding the
.default
afterrequire()
when resolving to the esm build
v3.0.0
Features
BREAKING CHANGES
- use new style react context
// package.json
-"react": "^15.0.0",
+"react": "^16.6.0",
-"react-dom": "^15.0.0",
+"react-dom": "^16.6.0",
v2.9.0
Features
Reverts
- bump semantic release dependencies (1bdcaec)
v2.8.0
Features
2.7.1 (2019-03-25)
Bug Fixes
- revert tree-shaking support because it was a breaking change (271364c)
v2.7.1
Bug Fixes
- revert tree-shaking support because it was a breaking change (271364c)
Configuration
📅 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 is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
- [ ] If you want to rebase/retry this PR, check this box
This PR was generated by Mend Renovate. View the repository job log.