Skip to content

Bump react-transition-group from 4.3.0 to 4.4.1#35

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

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

Conversation

@dependabot-preview
Copy link

Bumps react-transition-group from 4.3.0 to 4.4.1.

Release notes

Sourced from react-transition-group's releases.

v4.4.1

4.4.1 (2020-05-06)

Bug Fixes

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.1 (2020-05-06)

Bug Fixes

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
  • 1fd4a65 chore(release): 4.4.1 [skip ci]
  • 2722bb6 fix: transition SSR (#619)
  • 46bdb6e refactor(Transition): simplify render function (#621)
  • 6ab4473 chore: install dependencies in both dirs on CI
  • ce94128 chore: Fix ESLint errors in www on CI (#620)
  • fbbcc1d test: enable React.StrictMode (#593)
  • c863158 Expand notes for v4.4.0 and add missing fix
  • 80b663e Add scroll margin to account for fixed header
  • 205c5ce Update Yarn lockfile
  • 476cb63 Change lint script to run across entire project
  • 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 7, 2020
@dependabot-preview
Copy link
Author

Superseded by #83.

@dependabot-preview dependabot-preview bot deleted the dependabot/npm_and_yarn/react-transition-group-4.4.1 branch May 31, 2021 04:41
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