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

[Snyk] Upgrade react-transition-group from 4.3.0 to 4.4.1 #17

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

snyk-bot
Copy link
Contributor

Snyk has created this PR to upgrade react-transition-group from 4.3.0 to 4.4.1.

merge advice

✨What is Merge Advice? We check thousands of dependency upgrade pull requests and CI tests every day to see which upgrades were successfully merged. After crunching this data, we give a recommendation on how safe we think the change is for you to merge without causing issues. Learn more, and share your feedback to help improve this feature. 🙏
ℹ️ Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.
  • The recommended version is 2 versions ahead of your current version.
  • The recommended version was released 22 days ago, on 2020-05-06.
Release notes
Package name: react-transition-group
  • 4.4.1 - 2020-05-06

    4.4.1 (2020-05-06)

    Bug Fixes

  • 4.4.0 - 2020-05-05

    4.4.0 (2020-05-05)

    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)
  • 4.3.0 - 2019-09-05

    4.3.0 (2019-09-05)

    Features

from react-transition-group GitHub release notes

Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open upgrade PRs.

For more information:

🧐 View latest project report

🛠 Adjust upgrade PR settings

🔕 Ignore this dependency or unsubscribe from future upgrade PRs

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant