Skip to content

Bump react-transition-group from 4.3.0 to 4.4.0#34

Closed
dependabot-preview[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/react-transition-group-4.4.0
Closed

Bump react-transition-group from 4.3.0 to 4.4.0#34
dependabot-preview[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/react-transition-group-4.4.0

Conversation

@dependabot-preview
Copy link

Bumps react-transition-group from 4.3.0 to 4.4.0.

Release notes

Sourced from react-transition-group's releases.

v4.4.0

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)
Changelog

Sourced from react-transition-group's changelog.

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)
Commits
  • c3caa7a chore(release): 4.4.0 [skip ci]
  • 85016bf feat: add nodeRef alternative instead of internal findDOMNode (#559)
  • 13435f8 Merge pull request #504 from mmarkelov/Fix_adding_undefined_to_class
  • bf4cd7c chore: Update dev dependencies (#611)
  • cd41fca Add more details about applying classNames
  • a4df10f Make list of applied class names more readable
  • cfa6a91 Put examples within the container
  • 6243a0c build(deps): bump https-proxy-agent from 2.2.1 to 2.2.4 (#608)
  • 5c186f1 Only *-active classes should define transition
  • b58c957 Make documentation of appear prop more clear
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label May 6, 2020
@dependabot-preview
Copy link
Author

Superseded by #35.

@dependabot-preview dependabot-preview bot deleted the dependabot/npm_and_yarn/react-transition-group-4.4.0 branch May 7, 2020 04:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants