chore(deps): update dependency react-native-reanimated to ~4.6.0 - #11
Open
renovate[bot] wants to merge 1 commit into
Open
chore(deps): update dependency react-native-reanimated to ~4.6.0#11renovate[bot] wants to merge 1 commit into
renovate[bot] wants to merge 1 commit into
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
renovate
Bot
force-pushed
the
renovate/react-native-reanimated-4.x
branch
from
May 7, 2026 16:41
b6d7ea0 to
7b84d19
Compare
renovate
Bot
force-pushed
the
renovate/react-native-reanimated-4.x
branch
from
May 29, 2026 20:01
7b84d19 to
8793703
Compare
renovate
Bot
force-pushed
the
renovate/react-native-reanimated-4.x
branch
from
June 4, 2026 23:52
8793703 to
17b441f
Compare
renovate
Bot
force-pushed
the
renovate/react-native-reanimated-4.x
branch
from
June 24, 2026 20:05
17b441f to
4614d09
Compare
renovate
Bot
force-pushed
the
renovate/react-native-reanimated-4.x
branch
from
June 25, 2026 00:00
4614d09 to
c2fed17
Compare
renovate
Bot
force-pushed
the
renovate/react-native-reanimated-4.x
branch
from
June 25, 2026 00:20
c2fed17 to
92f8855
Compare
renovate
Bot
force-pushed
the
renovate/react-native-reanimated-4.x
branch
from
July 4, 2026 07:35
92f8855 to
81885a7
Compare
renovate
Bot
force-pushed
the
renovate/react-native-reanimated-4.x
branch
from
July 18, 2026 15:58
81885a7 to
657baa9
Compare
renovate
Bot
force-pushed
the
renovate/react-native-reanimated-4.x
branch
from
July 25, 2026 03:44
657baa9 to
382d57a
Compare
renovate
Bot
force-pushed
the
renovate/react-native-reanimated-4.x
branch
from
August 29, 2026 07:02
382d57a to
14eda35
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
~4.1.7→~4.6.0Release Notes
software-mansion/react-native-reanimated (react-native-reanimated)
v4.6.0: Reanimated - 4.6.0Compare Source
Key changes
React Native 0.87 support
Reanimated 4.6 supports React Native 0.83 – 0.87 and pairs with Worklets 0.12.x. See the compatibility table.
CSS animation and transition callbacks on native
onCSSAnimationStart,onCSSAnimationEnd,onCSSAnimationIteration,onCSSAnimationCancel,onCSSTransitionRun,onCSSTransitionStart,onCSSTransitionEndandonCSSTransitionCancelnow fire on iOS and Android.contrastColorutilityNew
contrastColorworklet, a port of CSScontrast-color(). It returns'white'or'black', whichever has the higher WCAG contrast ratio against the given color. It works insideuseAnimatedStyleand other worklets as well as on the JS thread. See the docs.contrastColorfunction by @tomekzaw in #10320Experimental: platform-driven CSS transitions on Android
opacityCSS transitions can now run on the Android platform withObjectAnimator, off the animation loop. This is the Android counterpart of iOS Core Animation transitions.The feature is off by default. Enable it with the
ANDROID_CSS_PLATFORM_TRANSITIONSfeature flag.Other changes
useAnimatedKeyboardcrash "Can't change insets on an animation that is cancelled" by @piaskowyk in #9670:hoveronopacity:0views on iOS by @MatiPl01 in #9872_updatePropsJScrash under strict ESM and on prop-less component refs by @MatiPl01 in #9870:hoverand:activeon SVG elements by @MatiPl01 in #9879easeeasing function by @tjzel in #10353New Contributors
Full Changelog: software-mansion/react-native-reanimated@4.5.3...4.6.0
v4.5.5: Reanimated - 4.5.5Compare Source
What's Changed
Full Changelog: software-mansion/react-native-reanimated@4.5.4...4.5.5
v4.5.4: Reanimated - 4.5.4Compare Source
What's Changed
Full Changelog: software-mansion/react-native-reanimated@4.5.3...4.5.4
v4.5.3: Reanimated - 4.5.3Compare Source
What's Changed
Full Changelog: software-mansion/react-native-reanimated@4.5.2...4.5.3
v4.5.2: Reanimated - 4.5.2Compare Source
What's Changed
Reanimated version supporting Worklets 0.11.
Full Changelog: software-mansion/react-native-reanimated@4.5.1...4.5.2
v4.5.1: Reanimated - 4.5.1Compare Source
What's Changed
useAnimatedKeyboardcrash "Can't change insets on an animation that is cancelled" (#9670) by @MatiPl01 in #9842Full Changelog: software-mansion/react-native-reanimated@4.5.0...4.5.1
v4.5.0: Reanimated - 4.5.0Compare Source
Key changes
More props supported by CSS Core Animation
Shadow (
shadowColor,shadowOpacity,shadowRadius,shadowOffset), background, and border (backgroundColor,borderColor,borderWidth,borderRadius) CSS transitions now run on iOS Core Animation.Using CSS Core Animation required enabling IOS_CSS_CORE_ANIMATION feature flag.
CSS Animations Pseudoselectors
CSS animations now support pseudo-selectors such as
:hover,:active, and:focus, with native Apple and Android backends alongside a web implementation.CSS Animations web support for SVG
Animating
react-native-svgcomponents is now available on web.SharedTransitionBoundary component
Introducing the
<SharedTransitionBoundary>component, which scopes shared element transitions to a subtree so only matching elements within the boundary animate together. Useful for isolating shared transitions between screens that would otherwise interfere.Other changes
react-native/../react-nativeresolution for aliases by @kitten in #9592_viewConfigin animated host lookup for RN < 0.86 by @MatiPl01 in #9680useHandlercontext lazily by @j-piasecki in #9334New Contributors
Full Changelog: software-mansion/react-native-reanimated@4.4.1...4.5.0
v4.4.3: Reanimated - 4.4.3Compare Source
What's Changed
Full Changelog: software-mansion/react-native-reanimated@4.4.2...4.4.3
v4.4.2: Reanimated - 4.4.2Compare Source
What's Changed
Android
useAnimatedKeyboardcrash "Can't change insets on an animation that is cancelled" by @piaskowyk in #9670strokeDasharrayby @MatiPl01 in #9719strokeDasharrayfrom the default keyframe endpoint by @MatiPl01 in #9845preserveMountedTagsagainstresolveViewthrowing by @audrius-savickas in #9649iOS
All platforms
jsPropsnot animating on native by @MatiPl01 in #9707perspectiveinterpolation NaN from the infinity default by @MatiPl01 in #9712_viewConfigin animated host lookup for RN < 0.86 by @MatiPl01 in #9680onStartinvalueSetteranimation detection by @tomekzaw in #9526Platform.OSto prevent crash in Bundle Mode by @MelloB1989 in #9525Types and build
build.gradle.ktsnot falling back to default ABIs by @tjzel in #9611-fno-pch-timestampso ccache can reuse the Android PCH by @lukmccall in #9749react-native-worklets0.10.x by @tjzel in #9699Full Changelog: software-mansion/react-native-reanimated@4.4.1...4.4.2
v4.4.1: Reanimated - 4.4.1Compare Source
What's Changed
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.