# react-transition-group changelog > A react component toolset for managing animations - Vendor: reactjs - Category: Frameworks & Libraries - Official site: https://github.com/reactjs/react-transition-group#readme - Tracked by: What's New (https://whatsnew.fyi/product/react-transition-group) - Harvested from: GitHub (reactjs/react-transition-group) - Entries below: 10 (newest first) What's New is an index, not a publisher: every entry below links to the vendor's own release notes, which are the authoritative source. Entries are labelled where they are hand-curated sample data, pre-releases, or drawn from a secondary source such as a developer blog. ## Releases ### v4.4.5 - Date: 2022-08-01 - Version: v4.4.5 - Original notes: https://github.com/reactjs/react-transition-group/releases/tag/v4.4.5 - Permalink: https://whatsnew.fyi/product/react-transition-group/releases/v4.4.5 - **fixed** — apply entering animation synchronously when unmountOnExit or mountOnEnter is enabled ##### [4.4.5](https://github.com/reactjs/react-transition-group/compare/v4.4.4...v4.4.5) (2022-08-01) ###### Bug Fixes * apply entering animation synchronously when unmountOnExit or mountOnEnter is enabled ([#847](https://github.com/reactjs/react-transition-group/issues/847)) ([1043549](https://github.com/reactjs/react-transition-group/commit/10435492f5a5675b0e80ca6a435834ce4a0f270e)) ### v4.4.4 - Date: 2022-07-30 - Version: v4.4.4 - Original notes: https://github.com/reactjs/react-transition-group/releases/tag/v4.4.4 - Permalink: https://whatsnew.fyi/product/react-transition-group/releases/v4.4.4 - **fixed** — missing build files ##### [4.4.4](https://github.com/reactjs/react-transition-group/compare/v4.4.3...v4.4.4) (2022-07-30) ###### Bug Fixes * missing build files ([#845](https://github.com/reactjs/react-transition-group/issues/845)) ([97af789](https://github.com/reactjs/react-transition-group/commit/97af7893b0a5bbf69211bc3287aee814123ddeea)) ### v4.4.3 - Date: 2022-07-30 - Version: v4.4.3 - Original notes: https://github.com/reactjs/react-transition-group/releases/tag/v4.4.3 - Permalink: https://whatsnew.fyi/product/react-transition-group/releases/v4.4.3 - **fixed** — Enter animations with mountOnEnter or unmountOnExit ##### [4.4.3](https://github.com/reactjs/react-transition-group/compare/v4.4.2...v4.4.3) (2022-07-30) ###### Bug Fixes * enter animations with mountOnEnter or unmountOnExit ([#749](https://github.com/reactjs/react-transition-group/issues/749)) ([51bdceb](https://github.com/reactjs/react-transition-group/commit/51bdceb96c8b6a79f417c32326ef1b31160edb97)) ### v4.4.2 - Date: 2021-05-29 - Version: v4.4.2 - Original notes: https://github.com/reactjs/react-transition-group/releases/tag/v4.4.2 - Permalink: https://whatsnew.fyi/product/react-transition-group/releases/v4.4.2 - **fixed** — nodeRef prop type for cross-realm elements ##### [4.4.2](https://github.com/reactjs/react-transition-group/compare/v4.4.1...v4.4.2) (2021-05-29) ###### Bug Fixes * `nodeRef` prop type for cross-realm elements ([#732](https://github.com/reactjs/react-transition-group/issues/732)) ([8710c01](https://github.com/reactjs/react-transition-group/commit/8710c01549e09f55eeefec2aadb3af0a23a00f82)) ### v4.4.1 - Date: 2020-05-06 - Version: v4.4.1 - Original notes: https://github.com/reactjs/react-transition-group/releases/tag/v4.4.1 - Permalink: https://whatsnew.fyi/product/react-transition-group/releases/v4.4.1 - **fixed** — Fix transition SSR ##### [4.4.1](https://github.com/reactjs/react-transition-group/compare/v4.4.0...v4.4.1) (2020-05-06) ###### Bug Fixes * transition SSR ([#619](https://github.com/reactjs/react-transition-group/issues/619)) ([2722bb6](https://github.com/reactjs/react-transition-group/commit/2722bb6b755943b8292f0f2bc2fdca55df5c28f0)) ### v4.4.0 - Date: 2020-05-05 - Version: v4.4.0 - Original notes: https://github.com/reactjs/react-transition-group/releases/tag/v4.4.0 - Permalink: https://whatsnew.fyi/product/react-transition-group/releases/v4.4.0 - **added** — Add `nodeRef` prop to `Transition` and `CSSTransition` as an alternative to internal `findDOMNode` - **fixed** — Set the values of constants attached to `Transition` to match the exported ones #### [4.4.0](https://github.com/reactjs/react-transition-group/compare/v4.3.0...v4.4.0) (2020-05-05) ###### Features * add `nodeRef` alternative instead of internal `findDOMNode` ([#559](https://github.com/reactjs/react-transition-group/issues/559)) ([85016bf](https://github.com/reactjs/react-transition-group/commit/85016bfddd3831e6d7bb27926f9f178d25502913)) - react-transition-group internally uses `findDOMNode`, which is deprecated and produces warnings in [Strict Mode](https://reactjs.org/docs/strict-mode.html), so now you can optionally pass `nodeRef` to `Transition` and `CSSTransition`, it's a ref object that should point to the transitioning child: ```jsx import React from "react" import { CSSTransition } from "react-transition-group" const MyComponent = () => { const nodeRef = React.useRef(null) return (
Fade
) } ``` ###### Bug Fixes * set the values of constants attached to `Transition` to match the exported ones (#554) ### v4.3.0 - Date: 2019-09-05 - Version: v4.3.0 - Original notes: https://github.com/reactjs/react-transition-group/releases/tag/v4.3.0 - Permalink: https://whatsnew.fyi/product/react-transition-group/releases/v4.3.0 - **changed** — upgrade dom-helpers #### [4.3.0](https://github.com/reactjs/react-transition-group/compare/v4.2.2...v4.3.0) (2019-09-05) ###### Features * upgrade dom-helpers ([#549](https://github.com/reactjs/react-transition-group/issues/549)) ([b017e18](https://github.com/reactjs/react-transition-group/commit/b017e18)) ### v4.2.2 - Date: 2019-08-02 - Version: v4.2.2 - Original notes: https://github.com/reactjs/react-transition-group/releases/tag/v4.2.2 - Permalink: https://whatsnew.fyi/product/react-transition-group/releases/v4.2.2 - **fixed** — Fix imports to play nicely with rollup ##### [4.2.2](https://github.com/reactjs/react-transition-group/compare/v4.2.1...v4.2.2) (2019-08-02) ###### Bug Fixes * Fix imports to play nicely with rollup ([#530](https://github.com/reactjs/react-transition-group/issues/530)) ([3d9003e](https://github.com/reactjs/react-transition-group/commit/3d9003e)) ### v4.2.1 - Date: 2019-07-02 - Version: v4.2.1 - Original notes: https://github.com/reactjs/react-transition-group/releases/tag/v4.2.1 - Permalink: https://whatsnew.fyi/product/react-transition-group/releases/v4.2.1 - **fixed** — Updated SwitchTransition component to be default export and exported from index.js ##### [4.2.1](https://github.com/reactjs/react-transition-group/compare/v4.2.0...v4.2.1) (2019-07-02) ###### Bug Fixes * updated SwitchTransition component to be default export and exported from index.js ([#516](https://github.com/reactjs/react-transition-group/issues/516)) ([cfd0070](https://github.com/reactjs/react-transition-group/commit/cfd0070)) ### v4.2.0 - Date: 2019-06-28 - Version: v4.2.0 - Original notes: https://github.com/reactjs/react-transition-group/releases/tag/v4.2.0 - Permalink: https://whatsnew.fyi/product/react-transition-group/releases/v4.2.0 - **added** — Add SwitchTransition component #### [4.2.0](https://github.com/reactjs/react-transition-group/compare/v4.1.1...v4.2.0) (2019-06-28) ###### Features * add SwitchTransition component ([#470](https://github.com/reactjs/react-transition-group/issues/470)) ([c5e379d](https://github.com/reactjs/react-transition-group/commit/c5e379d))