Skip to content

Commit eeaff6d

Browse files
committed
Bump Reanimated
1 parent 5587435 commit eeaff6d

9 files changed

Lines changed: 706 additions & 611 deletions

File tree

apps/basic-example/ios/Podfile.lock

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1807,7 +1807,7 @@ PODS:
18071807
- ReactCommon/turbomodule/core
18081808
- ReactNativeDependencies
18091809
- Yoga
1810-
- RNReanimated (4.2.2):
1810+
- RNReanimated (4.3.0):
18111811
- hermes-engine
18121812
- RCTRequired
18131813
- RCTTypeSafety
@@ -1829,10 +1829,11 @@ PODS:
18291829
- ReactCommon/turbomodule/bridging
18301830
- ReactCommon/turbomodule/core
18311831
- ReactNativeDependencies
1832-
- RNReanimated/reanimated (= 4.2.2)
1832+
- RNReanimated/apple (= 4.3.0)
1833+
- RNReanimated/common (= 4.3.0)
18331834
- RNWorklets
18341835
- Yoga
1835-
- RNReanimated/reanimated (4.2.2):
1836+
- RNReanimated/apple (4.3.0):
18361837
- hermes-engine
18371838
- RCTRequired
18381839
- RCTTypeSafety
@@ -1854,10 +1855,9 @@ PODS:
18541855
- ReactCommon/turbomodule/bridging
18551856
- ReactCommon/turbomodule/core
18561857
- ReactNativeDependencies
1857-
- RNReanimated/reanimated/apple (= 4.2.2)
18581858
- RNWorklets
18591859
- Yoga
1860-
- RNReanimated/reanimated/apple (4.2.2):
1860+
- RNReanimated/common (4.3.0):
18611861
- hermes-engine
18621862
- RCTRequired
18631863
- RCTTypeSafety
@@ -1881,7 +1881,7 @@ PODS:
18811881
- ReactNativeDependencies
18821882
- RNWorklets
18831883
- Yoga
1884-
- RNWorklets (0.7.4):
1884+
- RNWorklets (0.8.1):
18851885
- hermes-engine
18861886
- RCTRequired
18871887
- RCTTypeSafety
@@ -1903,9 +1903,10 @@ PODS:
19031903
- ReactCommon/turbomodule/bridging
19041904
- ReactCommon/turbomodule/core
19051905
- ReactNativeDependencies
1906-
- RNWorklets/worklets (= 0.7.4)
1906+
- RNWorklets/apple (= 0.8.1)
1907+
- RNWorklets/common (= 0.8.1)
19071908
- Yoga
1908-
- RNWorklets/worklets (0.7.4):
1909+
- RNWorklets/apple (0.8.1):
19091910
- hermes-engine
19101911
- RCTRequired
19111912
- RCTTypeSafety
@@ -1927,9 +1928,8 @@ PODS:
19271928
- ReactCommon/turbomodule/bridging
19281929
- ReactCommon/turbomodule/core
19291930
- ReactNativeDependencies
1930-
- RNWorklets/worklets/apple (= 0.7.4)
19311931
- Yoga
1932-
- RNWorklets/worklets/apple (0.7.4):
1932+
- RNWorklets/common (0.8.1):
19331933
- hermes-engine
19341934
- RCTRequired
19351935
- RCTTypeSafety
@@ -2262,8 +2262,8 @@ SPEC CHECKSUMS:
22622262
ReactCommon: 92b53b0bd7f7d86154dc9f512c1ea5dee717cc72
22632263
ReactNativeDependencies: cf9de3b9e7ce76047f11476f4c62a82a620a08b6
22642264
RNGestureHandler: 2e53f5ed97c5dcfc9ac99594691f8729b306418d
2265-
RNReanimated: 5f55bdf64aa36d64f1bc526acfff79f016b57f4d
2266-
RNWorklets: 8497c4bd8c9eae405a60c1b3823856aee2ffe95c
2265+
RNReanimated: c05b534f68caa202da4dcc3fd619eab48f67f7bd
2266+
RNWorklets: 9df54090e67c12b662f1eb1dc98132adafcfa666
22672267
Yoga: 772166513f9cd2d61a6251d0dacbbfaa5b537479
22682268

22692269
PODFILE CHECKSUM: ecce038d8e4749ee17b7dea28be0590cdc8b4836

apps/basic-example/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
"react": "19.2.3",
2121
"react-native": "0.84.0",
2222
"react-native-gesture-handler": "workspace:*",
23-
"react-native-reanimated": "^4.2.2",
24-
"react-native-worklets": "^0.7.4"
23+
"react-native-reanimated": "^4.3.0",
24+
"react-native-worklets": "^0.8.1"
2525
},
2626
"devDependencies": {
2727
"@babel/core": "^7.25.2",

apps/common-app/src/ListWithHeader/ListWithHeader.tsx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,9 @@ interface ScrollComponentWithOffsetProps extends ScrollViewProps {
116116

117117
const ScrollComponentWithOffset = ({
118118
ref,
119+
scrollOffset,
120+
animatedScrollEnabled,
121+
dragGesture,
119122
...props
120123
}: ScrollComponentWithOffsetProps) => {
121124
const scrollRef = useAnimatedRef<Animated.ScrollView>();
@@ -126,7 +129,7 @@ const ScrollComponentWithOffset = ({
126129
return scrollViewOffset.value;
127130
},
128131
(offset) => {
129-
props.scrollOffset.value = offset;
132+
scrollOffset.value = offset;
130133
}
131134
);
132135

@@ -138,13 +141,13 @@ const ScrollComponentWithOffset = ({
138141

139142
const scrollProps = useAnimatedProps(() => {
140143
return {
141-
scrollEnabled: props.animatedScrollEnabled.value,
144+
scrollEnabled: animatedScrollEnabled.value,
142145
};
143146
});
144147

145148
const scrollGesture = Gesture.Native()
146149
.disallowInterruption(true)
147-
.simultaneousWithExternalGesture(props.dragGesture);
150+
.simultaneousWithExternalGesture(dragGesture);
148151

149152
return (
150153
<GestureDetector gesture={scrollGesture}>

apps/expo-example/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@
2626
"react-dom": "19.1.0",
2727
"react-native": "0.81.4",
2828
"react-native-gesture-handler": "workspace:*",
29-
"react-native-reanimated": "^4.2.1",
29+
"react-native-reanimated": "^4.3.0",
3030
"react-native-safe-area-context": "~5.6.0",
3131
"react-native-screens": "~4.16.0",
3232
"react-native-svg": "15.12.1",
3333
"react-native-web": "^0.21.0",
34-
"react-native-worklets": "^0.7.1"
34+
"react-native-worklets": "^0.8.1"
3535
},
3636
"devDependencies": {
3737
"@babel/core": "^7.25.2",

apps/macos-example/macos/MacOSExample.xcodeproj/project.pbxproj

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -320,15 +320,11 @@
320320
};
321321
D01A669245645FE4195DB892 /* [CP-User] Generate metadata for clangd */ = {
322322
isa = PBXShellScriptBuildPhase;
323-
alwaysOutOfDate = 1;
323+
alwaysOutOfDate = true;
324324
buildActionMask = 2147483647;
325325
files = (
326326
);
327-
inputPaths = (
328-
);
329327
name = "[CP-User] Generate metadata for clangd";
330-
outputPaths = (
331-
);
332328
runOnlyForDeploymentPostprocessing = 0;
333329
shellPath = /bin/bash;
334330
shellScript = "../../../scripts/clangd-generate-xcode-metadata.sh";
@@ -525,7 +521,10 @@
525521
);
526522
MTL_ENABLE_DEBUG_INFO = YES;
527523
ONLY_ACTIVE_ARCH = YES;
528-
OTHER_LDFLAGS = "$(inherited) ";
524+
OTHER_LDFLAGS = (
525+
"$(inherited)",
526+
" ",
527+
);
529528
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
530529
SDKROOT = iphoneos;
531530
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG";
@@ -584,7 +583,10 @@
584583
"\"$(inherited)\"",
585584
);
586585
MTL_ENABLE_DEBUG_INFO = NO;
587-
OTHER_LDFLAGS = "$(inherited) ";
586+
OTHER_LDFLAGS = (
587+
"$(inherited)",
588+
" ",
589+
);
588590
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
589591
SDKROOT = iphoneos;
590592
USE_HERMES = true;

apps/macos-example/macos/Podfile.lock

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2397,7 +2397,7 @@ PODS:
23972397
- ReactCommon/turbomodule/core
23982398
- SocketRocket
23992399
- Yoga
2400-
- RNReanimated (4.2.2):
2400+
- RNReanimated (4.3.0):
24012401
- boost
24022402
- DoubleConversion
24032403
- fast_float
@@ -2424,11 +2424,12 @@ PODS:
24242424
- ReactCodegen
24252425
- ReactCommon/turbomodule/bridging
24262426
- ReactCommon/turbomodule/core
2427-
- RNReanimated/reanimated (= 4.2.2)
2427+
- RNReanimated/apple (= 4.3.0)
2428+
- RNReanimated/common (= 4.3.0)
24282429
- RNWorklets
24292430
- SocketRocket
24302431
- Yoga
2431-
- RNReanimated/reanimated (4.2.2):
2432+
- RNReanimated/apple (4.3.0):
24322433
- boost
24332434
- DoubleConversion
24342435
- fast_float
@@ -2455,11 +2456,10 @@ PODS:
24552456
- ReactCodegen
24562457
- ReactCommon/turbomodule/bridging
24572458
- ReactCommon/turbomodule/core
2458-
- RNReanimated/reanimated/apple (= 4.2.2)
24592459
- RNWorklets
24602460
- SocketRocket
24612461
- Yoga
2462-
- RNReanimated/reanimated/apple (4.2.2):
2462+
- RNReanimated/common (4.3.0):
24632463
- boost
24642464
- DoubleConversion
24652465
- fast_float
@@ -2489,7 +2489,7 @@ PODS:
24892489
- RNWorklets
24902490
- SocketRocket
24912491
- Yoga
2492-
- RNSVG (15.15.3):
2492+
- RNSVG (15.15.4):
24932493
- boost
24942494
- DoubleConversion
24952495
- fast_float
@@ -2515,10 +2515,10 @@ PODS:
25152515
- ReactCodegen
25162516
- ReactCommon/turbomodule/bridging
25172517
- ReactCommon/turbomodule/core
2518-
- RNSVG/common (= 15.15.3)
2518+
- RNSVG/common (= 15.15.4)
25192519
- SocketRocket
25202520
- Yoga
2521-
- RNSVG/common (15.15.3):
2521+
- RNSVG/common (15.15.4):
25222522
- boost
25232523
- DoubleConversion
25242524
- fast_float
@@ -2546,7 +2546,7 @@ PODS:
25462546
- ReactCommon/turbomodule/core
25472547
- SocketRocket
25482548
- Yoga
2549-
- RNWorklets (0.7.4):
2549+
- RNWorklets (0.8.1):
25502550
- boost
25512551
- DoubleConversion
25522552
- fast_float
@@ -2573,10 +2573,11 @@ PODS:
25732573
- ReactCodegen
25742574
- ReactCommon/turbomodule/bridging
25752575
- ReactCommon/turbomodule/core
2576-
- RNWorklets/worklets (= 0.7.4)
2576+
- RNWorklets/apple (= 0.8.1)
2577+
- RNWorklets/common (= 0.8.1)
25772578
- SocketRocket
25782579
- Yoga
2579-
- RNWorklets/worklets (0.7.4):
2580+
- RNWorklets/apple (0.8.1):
25802581
- boost
25812582
- DoubleConversion
25822583
- fast_float
@@ -2603,10 +2604,9 @@ PODS:
26032604
- ReactCodegen
26042605
- ReactCommon/turbomodule/bridging
26052606
- ReactCommon/turbomodule/core
2606-
- RNWorklets/worklets/apple (= 0.7.4)
26072607
- SocketRocket
26082608
- Yoga
2609-
- RNWorklets/worklets/apple (0.7.4):
2609+
- RNWorklets/common (0.8.1):
26102610
- boost
26112611
- DoubleConversion
26122612
- fast_float
@@ -2954,9 +2954,9 @@ SPEC CHECKSUMS:
29542954
ReactCommon: 9f8189efbc1aa52926df2791a2e47b3340353849
29552955
RNCAsyncStorage: 7e57f4fe4332cbf21bf6bdbffaf9fd34c9268abd
29562956
RNGestureHandler: b56413eaa25d0177fb810d738f93ed5d725fa0ae
2957-
RNReanimated: 28141b41781ded169829afdb6fd80f3498de254e
2958-
RNSVG: c4d5a438a1c96f7ed7dc66349a5b7e97616fd701
2959-
RNWorklets: ca03ce776c15a592ef0700386071466810c41ea0
2957+
RNReanimated: 4bde1757024259a81a298ee9ed4b33c0fb5923a5
2958+
RNSVG: 681be694d501c0af971615811d4f2ea9baf58966
2959+
RNWorklets: 68ab13976d7eba39fb2f0844994a51380e76046d
29602960
SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748
29612961
Yoga: 6048a55441c73f8e3916a8eac6b83886708c77f9
29622962

apps/macos-example/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
"react-native": "0.81.2",
2323
"react-native-gesture-handler": "workspace:*",
2424
"react-native-macos": "0.81.2",
25-
"react-native-reanimated": "^4.2.1",
25+
"react-native-reanimated": "^4.3.0",
2626
"react-native-safe-area-context": "^5.5.2",
2727
"react-native-svg": "^15.15.3",
28-
"react-native-worklets": "^0.7.4"
28+
"react-native-worklets": "^0.8.1"
2929
},
3030
"devDependencies": {
3131
"@babel/core": "^7.25.2",

packages/react-native-gesture-handler/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,8 @@
9696
"react": "19.2.3",
9797
"react-native": "0.84.0",
9898
"react-native-builder-bob": "^0.40.13",
99-
"react-native-reanimated": "^3.18.0",
99+
"react-native-reanimated": "^4.3.0",
100+
"react-native-worklets": "^0.8.1",
100101
"react-test-renderer": "19.2.3",
101102
"typescript": "~5.8.3"
102103
},

0 commit comments

Comments
 (0)