ffs-zera icon indicating copy to clipboard operation
ffs-zera copied to clipboard

chore(deps): update dependency react-transition-group to v4

Open renovate[bot] opened this issue 5 years ago • 1 comments

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
react-transition-group 2.7.0 -> 4.4.5 age adoption passing confidence

Release Notes

reactjs/react-transition-group (react-transition-group)

v4.4.5

Compare Source

Bug Fixes
  • apply entering animation synchronously when unmountOnExit or mountOnEnter is enabled (#​847) (1043549)

v4.4.4

Compare Source

Bug Fixes

v4.4.3

Compare Source

Bug Fixes
  • enter animations with mountOnEnter or unmountOnExit (#​749) (51bdceb)

v4.4.2

Compare Source

Bug Fixes

v4.4.1

Compare Source

Bug Fixes

v4.4.0

Compare Source

Features
  • add nodeRef alternative instead of internal findDOMNode (#​559) (85016bf)
    • react-transition-group internally uses findDOMNode, which is deprecated and produces warnings in Strict Mode, so now you can optionally pass nodeRef to Transition and CSSTransition, 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

Compare Source

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

Compare Source

Bug Fixes

v4.2.1

Compare Source

Bug Fixes
  • updated SwitchTransition component to be default export and exported from index.js (#​516) (cfd0070)

v4.2.0

Compare Source

Features

4.1.1 (2019-06-10)

Bug Fixes

v4.1.1

Compare Source

Bug Fixes

v4.1.0

Compare Source

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

Compare Source

Bug Fixes
  • issue with dynamically applied classes not being properly removed for reentering items (#​499) (129cb11)

v4.0.0

Compare Source

Features
BREAKING CHANGES
  • in environments where esm is supported importing from commonjs requires explicitly adding the .default after require() when resolving to the esm build

v3.0.0

Compare Source

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

Compare Source

Features
Reverts
  • bump semantic release dependencies (1bdcaec)

v2.8.0

Compare Source

Features

2.7.1 (2019-03-25)

Bug Fixes
  • revert tree-shaking support because it was a breaking change (271364c)

v2.7.1

Compare Source

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.

renovate[bot] avatar Apr 16 '19 17:04 renovate[bot]