Skip to content

Commit 0f56737

Browse files
committed
Release 3.9.0-rc.1
1 parent d0315ff commit 0f56737

File tree

5 files changed

+33
-48
lines changed

5 files changed

+33
-48
lines changed

Example/package.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
"version": "0.0.1",
44
"private": true,
55
"scripts": {
6+
"build": "yarn patch-package",
67
"android": "react-native run-android",
78
"ios": "react-native run-ios",
89
"lint": "eslint --max-warnings=0 .",
910
"start": "react-native start",
10-
"test": "jest",
11-
"postinstall": "patch-package"
11+
"test": "jest"
1212
},
1313
"dependencies": {
1414
"@react-native-async-storage/async-storage": "^1.21.0",
@@ -18,22 +18,22 @@
1818
"@react-navigation/native": "^6.1.9",
1919
"@react-navigation/native-stack": "^6.9.17",
2020
"react": "18.2.0",
21-
"react-native": "0.74.0-rc.4",
22-
"react-native-gesture-handler": "git+https://github.com/software-mansion/react-native-gesture-handler.git#6808ca355af71ca2f1f6653b50e389c8b564c8ba",
21+
"react-native": "0.74.0-rc.9",
22+
"react-native-gesture-handler": "^2.16.0",
2323
"react-native-pager-view": "^6.2.3",
2424
"react-native-reanimated": "link:../",
2525
"react-native-safe-area-context": "4.10.0-rc.1",
26-
"react-native-screens": "git+https://github.com/software-mansion/react-native-screens.git#ddf267a4ce157dc60fa0bb94e8096c4d99f7e878",
26+
"react-native-screens": "3.31.0-rc.1",
2727
"react-native-svg": "^15.2.0-rc.0"
2828
},
2929
"devDependencies": {
3030
"@babel/core": "^7.20.0",
3131
"@babel/preset-env": "^7.20.0",
3232
"@babel/runtime": "^7.20.0",
33-
"@react-native/babel-preset": "0.74.75",
34-
"@react-native/eslint-config": "0.74.75",
35-
"@react-native/metro-config": "0.74.75",
36-
"@react-native/typescript-config": "0.74.75",
33+
"@react-native/babel-preset": "0.74.80",
34+
"@react-native/eslint-config": "0.74.80",
35+
"@react-native/metro-config": "0.74.80",
36+
"@react-native/typescript-config": "0.74.80",
3737
"@types/jest": "^29.2.1",
3838
"@types/react": "^18.2.6",
3939
"@types/react-test-renderer": "^18.0.0",

FabricExample/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -17,22 +17,22 @@
1717
"@react-navigation/native": "^6.1.9",
1818
"@react-navigation/native-stack": "^6.9.17",
1919
"react": "18.2.0",
20-
"react-native": "0.74.0-rc.4",
21-
"react-native-gesture-handler": "git+https://github.com/software-mansion/react-native-gesture-handler.git#6808ca355af71ca2f1f6653b50e389c8b564c8ba",
20+
"react-native": "0.74.0-rc.9",
21+
"react-native-gesture-handler": "^2.16.0",
2222
"react-native-pager-view": "^6.2.3",
2323
"react-native-reanimated": "link:../",
2424
"react-native-safe-area-context": "4.10.0-rc.1",
25-
"react-native-screens": "git+https://github.com/software-mansion/react-native-screens.git#ddf267a4ce157dc60fa0bb94e8096c4d99f7e878",
25+
"react-native-screens": "3.31.0-rc.1",
2626
"react-native-svg": "^15.2.0-rc.0"
2727
},
2828
"devDependencies": {
2929
"@babel/core": "^7.20.0",
3030
"@babel/preset-env": "^7.20.0",
3131
"@babel/runtime": "^7.20.0",
32-
"@react-native/babel-preset": "0.74.75",
33-
"@react-native/eslint-config": "0.74.75",
34-
"@react-native/metro-config": "0.74.75",
35-
"@react-native/typescript-config": "0.74.75",
32+
"@react-native/babel-preset": "0.74.80",
33+
"@react-native/eslint-config": "0.74.80",
34+
"@react-native/metro-config": "0.74.80",
35+
"@react-native/typescript-config": "0.74.80",
3636
"@types/react": "^18.2.6",
3737
"@types/react-test-renderer": "^18.0.0",
3838
"babel-jest": "^29.6.3",

apple/REAModule.mm

+8-26
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ @implementation REAModule {
5959
SingleInstanceChecker<REAModule> singleInstanceChecker_;
6060
#endif // NDEBUG
6161
bool hasListeners;
62+
bool _isBridgeless;
6263
}
6364

6465
@synthesize moduleRegistry = _moduleRegistry;
@@ -158,47 +159,33 @@ - (void)handleJavaScriptDidLoadNotification:(NSNotification *)notification
158159

159160
/*
160161
* Taken from RCTNativeAnimatedTurboModule:
161-
* In bridgeless mode, `setBridge` is never called during initialization. Instead this selector is invoked via
162-
* BridgelessTurboModuleSetup.
162+
* This selector is invoked via BridgelessTurboModuleSetup.
163163
*/
164164
- (void)setSurfacePresenter:(id<RCTSurfacePresenterStub>)surfacePresenter
165165
{
166166
_surfacePresenter = surfacePresenter;
167+
_isBridgeless = true;
167168
}
168169

169170
- (void)setBridge:(RCTBridge *)bridge
170171
{
171-
// This method isn't called on Bridgeless mode.
172172
[super setBridge:bridge];
173-
174-
[bridge.uiManager.observerCoordinator addObserver:self];
175-
176173
// only within the first loading `self.bridge.surfacePresenter` exists
177174
// during the reload `self.bridge.surfacePresenter` is null
178-
_surfacePresenter = self.bridge.surfacePresenter;
175+
if (self.bridge.surfacePresenter) {
176+
_surfacePresenter = self.bridge.surfacePresenter;
177+
}
179178

180-
#ifndef NDEBUG
181179
[self setReaSurfacePresenter];
182-
#endif // NDEBUG
183180

184-
[self setNodesManager:self.bridge];
185-
}
181+
_nodesManager = [[REANodesManager alloc] initWithModule:self bridge:bridge surfacePresenter:_surfacePresenter];
186182

187-
- (void)initialize
188-
{
189183
[[NSNotificationCenter defaultCenter] addObserver:self
190184
selector:@selector(handleJavaScriptDidLoadNotification:)
191185
name:RCTJavaScriptDidLoadNotification
192186
object:nil];
193187

194188
[[self.moduleRegistry moduleForName:"EventDispatcher"] addDispatchObserver:self];
195-
196-
// [bridge.uiManager.observerCoordinator addObserver:self]; // TODO: Check if it's needed on new arch.
197-
#ifndef NDEBUG
198-
[self setReaSurfacePresenter];
199-
#endif // NDEBUG
200-
201-
[self setNodesManager:nil];
202189
}
203190

204191
#ifndef NDEBUG
@@ -213,11 +200,6 @@ - (void)setReaSurfacePresenter
213200
}
214201
#endif // NDEBUG
215202

216-
- (void)setNodesManager:(RCTBridge *)bridge
217-
{
218-
_nodesManager = [[REANodesManager alloc] initWithModule:self bridge:bridge surfacePresenter:_surfacePresenter];
219-
}
220-
221203
#else // RCT_NEW_ARCH_ENABLED
222204

223205
- (void)setBridge:(RCTBridge *)bridge
@@ -295,7 +277,7 @@ - (void)sendEventWithName:(NSString *)eventName body:(id)body
295277

296278
RCT_EXPORT_BLOCKING_SYNCHRONOUS_METHOD(installTurboModule : (nonnull NSString *)valueUnpackerCode)
297279
{
298-
if (!self.bridge) {
280+
if (_isBridgeless) {
299281
#if REACT_NATIVE_MINOR_VERSION >= 74 && defined(RCT_NEW_ARCH_ENABLED)
300282
RCTCxxBridge *cxxBridge = (RCTCxxBridge *)[RCTBridge currentBridge];
301283
auto &rnRuntime = *(jsi::Runtime *)cxxBridge.runtime;

package.json

+8-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-reanimated",
3-
"version": "3.9.0-rc.0",
3+
"version": "3.9.0-rc.1",
44
"description": "More powerful alternative to Animated library for React Native.",
55
"scripts": {
66
"test": "yarn run format:js && yarn run lint:js && yarn run test:unit",
@@ -101,7 +101,10 @@
101101
"@babel/core": "^7.20.0",
102102
"@babel/preset-env": "^7.20.0",
103103
"@babel/types": "^7.20.0",
104-
"@react-native/eslint-config": "^0.72.2",
104+
"@react-native/babel-preset": "0.74.80",
105+
"@react-native/eslint-config": "0.74.80",
106+
"@react-native/metro-config": "0.74.80",
107+
"@react-native/typescript-config": "0.74.80",
105108
"@testing-library/jest-native": "^4.0.4",
106109
"@testing-library/react-hooks": "^8.0.0",
107110
"@testing-library/react-native": "^7.1.0",
@@ -137,13 +140,13 @@
137140
"eslint-plugin-tsdoc": "^0.2.17",
138141
"husky": "^7.0.4",
139142
"jest": "^29.0.0",
140-
"lint-staged": "^11.2.0",
143+
"lint-staged": "^15.2.2",
141144
"madge": "^5.0.1",
142145
"prettier": "^2.5.1",
143146
"react": "18.2.0",
144-
"react-native": "0.74.0-rc.4",
147+
"react-native": "0.74.0-rc.9",
145148
"react-native-builder-bob": "^0.18.3",
146-
"react-native-gesture-handler": "git+https://github.com/software-mansion/react-native-gesture-handler.git#6808ca355af71ca2f1f6653b50e389c8b564c8ba",
149+
"react-native-gesture-handler": "^2.16.0",
147150
"react-native-web": "~0.18.12",
148151
"react-test-renderer": "18.2.0",
149152
"shelljs": "^0.8.5",

src/reanimated2/platform-specific/jsVersion.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
* with the version used to build the native part of the library in runtime.
55
* Remember to keep this in sync with the version declared in `package.json`
66
*/
7-
export const jsVersion = '3.9.0-rc.0';
7+
export const jsVersion = '3.9.0-rc.1';

0 commit comments

Comments
 (0)