⬆️ Upgrade dependency react-native-reanimated to v4.5.1#8
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
d2b3d4d to
f74fd8f
Compare
Contributor
Author
|
77be984 to
ed790b4
Compare
9ac67f3 to
c00d9ac
Compare
5ca65b5 to
65d2141
Compare
9211fc4 to
b7a4380
Compare
4db3c6d to
4781e9b
Compare
4781e9b to
920cdd4
Compare
920cdd4 to
83bbcd6
Compare
83bbcd6 to
a253670
Compare
a253670 to
4571b16
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.2.1→4.5.1Release Notes
software-mansion/react-native-reanimated (react-native-reanimated)
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.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
Full Changelog: software-mansion/react-native-reanimated@4.4.0...4.4.1
v4.4.0: Reanimated - 4.4.0Compare Source
Key changes
iOS CSS Core Animation
Reanimated 4.4.0 introduces a new platform-backed CSS animation engine on iOS that runs animations
directly on Core Animation layers instead of going through the JS-driven update loop. It is hidden
behind the
IOS_CSS_CORE_ANIMATIONstatic feature flag.CSSPlatformTransitionwith iOS platform implementation by @MatiPl01 in #9325Animation Backend
A new Animation Backend has been integrated behind a feature flag, which will help greatly with the flow of updating the Shadow Tree in animations.
New useTimestamp hook
A new
useTimestamphook exposes the current frame timestamp as a Shared Value that updates everyframe with the time elapsed since the first frame, with an
isActiveflag to pause and resume updates.Precompiled headers on Android
Reanimated's native build on Android now uses precompiled headers (
ReanimatedPCH.h), significantlyreducing C++ compile times for both fresh and incremental builds.
Other changes
placeholderTextColorin synchronous props by @tomekzaw in #9409shadowColorin synchronous props by @tomekzaw in #9411shadowOffsetin synchronous props by @tomekzaw in #9412outlineColor,outlineOffsetandoutlineWidthin synchronous props by @tomekzaw in #9417borderBlockColor,borderBlockStartColorandborderBlockEndColorin synchronous props by @tomekzaw in #9418CSSPlatformAnimationabstraction by @MatiPl01 in #9278CSSPlatformTransitionabstraction by @MatiPl01 in #9324EXPERIMENTAL_PLATFORM_CSS_ANIMATIONStoIOS_CSS_CORE_ANIMATIONby @MatiPl01 in #9506ShadowNodeFamilyinstead ofShadowNodeinUpdatesRegistryby @tomekzaw in #9156ShadowNodeFamily::Sharedinstead ofShadowNodeFamily *inPropsMapandChildrenMapby @tomekzaw in #9184useInterpolateConfigfunction andInterpolateConfigandColorSpacetypes by @tomekzaw in #91500.85.0stable by @MatiPl01 in #9233StaticPropsRegistrymethods and props by @MatiPl01 in #9226withInitialValuesmethod by @MatiPl01 in #9232NativeEventsManagerby @j-piasecki in #8655withTargetValuesmodifier to default layout animations by @PiotrWszolek in #8848withInitialValuesfor layout transitions by @MatiPl01 in #9258withInitialValuesandwithTargetValuesfrom layout transitions by @MatiPl01 in #9259withTargetValuesto Layout Animations docs by @PiotrWszolek in #91684.3.0by @MatiPl01 in #9284scheduleOnUIcalled from the UI thread on Android by @MatiPl01 in #9343LoopOperationinterface and operation-based scheduling primitives by @MatiPl01 in #9346REACT_NATIVE_VERSION_MINORprovided by React Native instead of custom definition by @tomekzaw in #8412EXC_BAD_ACCESSinReanimatedModuleProxy::performOperationsduringAnimationFrameBatchinator::flushby @MatiPl01 in #9308HermesExecutorRuntimeAdapterby @tomekzaw in #9356ReactAndroid::hermestoolingprefab by @tomekzaw in #9360MessageQueueThreadby @tomekzaw in #9329_IS_FABRICvariable by @tomekzaw in #9375@DoNotStripannotations by @tomekzaw in #9372SynchronousPropsBufferSerializerinto#ifdef ANDROIDby @tomekzaw in #9395pushIntandpushDoublehelper functions in synchronous props serializer by @tomekzaw in #9397AnimatedStyletypes by @MatiPl01 in #9400animatedPropsin SVG not passed in initial render by @MatiPl01 in #9419animatedPropsshould take precedence over inline props by @MatiPl01 in #9422std::stofwithstd::stodin synchronous props logic by @tomekzaw in #9424LayoutAnimationsManager::transferSharedConfigby @tomekzaw in #9429constexprin feature flag check in synchronous props buffer preallocation on Android by @tomekzaw in #9440AnimationStyleInterpolatorFactoryallowing interpolated properties subset modification by @MatiPl01 in #9276CSSLoopAnimationabstraction for reanimated-loop updated CSS animation properties by @MatiPl01 in #9277CSSLoopTransitionabstraction for reanimated-loop updated CSS animation properties by @MatiPl01 in #9316CSSTransitionimplementation cleanup by @MatiPl01 in #9320EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTSfeature flag by @MatiPl01 in #9501beginTimeto layer-local clock by @MatiPl01 in #9507EXPERIMENTAL_CSS_ANIMATIONS_FOR_SVG_COMPONENTSwith default true by @MatiPl01 in #9510IOS_CSS_CORE_ANIMATIONfeature flag to docs by @MatiPl01 in #9505New Contributors
Full Changelog: software-mansion/react-native-reanimated@4.3.1...4.4.0
v4.3.2: Reanimated - 4.3.2Compare Source
What's Changed
Android
StaticPropsRegistryagainst cross-thread access by @MatiPl01 in #9495useAnimatedKeyboardcrash "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
animationDelayby @MatiPl01 in0b00aa4perspectiveinterpolation NaN from the infinity default by @MatiPl01 in #9712jsPropsnot animating on native by @MatiPl01 in #9707Configuration
📅 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.