react-native 0.85.0-rc.6 → 0.85.0-rc.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Libraries/Core/ReactNativeVersion.js +1 -1
- package/React/Base/RCTVersion.m +1 -1
- package/ReactAndroid/build.gradle.kts +2 -0
- package/ReactAndroid/gradle.properties +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.kt +1 -1
- package/ReactCommon/React-Fabric.podspec +1 -0
- package/ReactCommon/cxxreact/ReactNativeVersion.h +1 -1
- package/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTTurboModule.mm +3 -1
- package/package.json +9 -9
|
@@ -29,7 +29,7 @@ export default class ReactNativeVersion {
|
|
|
29
29
|
static major: number = 0;
|
|
30
30
|
static minor: number = 85;
|
|
31
31
|
static patch: number = 0;
|
|
32
|
-
static prerelease: string | null = 'rc.
|
|
32
|
+
static prerelease: string | null = 'rc.7';
|
|
33
33
|
|
|
34
34
|
static getVersionString(): string {
|
|
35
35
|
return `${this.major}.${this.minor}.${this.patch}${this.prerelease != null ? `-${this.prerelease}` : ''}`;
|
package/React/Base/RCTVersion.m
CHANGED
|
@@ -100,6 +100,8 @@ val preparePrefab by
|
|
|
100
100
|
Pair("../ReactCommon/hermes/inspector-modern/", "hermes/inspector-modern/"),
|
|
101
101
|
// fabricjni
|
|
102
102
|
Pair("src/main/jni/react/fabric", "react/fabric/"),
|
|
103
|
+
// uimanagerjni
|
|
104
|
+
Pair("src/main/jni/react/uimanager", "react/uimanager/"),
|
|
103
105
|
// glog
|
|
104
106
|
Pair(File(buildDir, "third-party-ndk/glog/exported/").absolutePath, ""),
|
|
105
107
|
// jsiinpsector
|
|
@@ -60,6 +60,7 @@ Pod::Spec.new do |s|
|
|
|
60
60
|
ss.source_files = podspec_sources("react/renderer/animated/**/*.{m,mm,cpp,h}", "react/renderer/animated/**/*.{h}")
|
|
61
61
|
ss.exclude_files = "react/renderer/animated/tests"
|
|
62
62
|
ss.header_dir = "react/renderer/animated"
|
|
63
|
+
ss.header_mappings_dir = "react/renderer/animated"
|
|
63
64
|
end
|
|
64
65
|
|
|
65
66
|
s.subspec "animations" do |ss|
|
|
@@ -461,7 +461,9 @@ void ObjCTurboModule::performVoidMethodInvocation(
|
|
|
461
461
|
@try {
|
|
462
462
|
[inv invokeWithTarget:strongModule];
|
|
463
463
|
} @catch (NSException *exception) {
|
|
464
|
-
|
|
464
|
+
// Void methods are always async, re-throw instead of converting to
|
|
465
|
+
// JSError, same as the async branch in performMethodInvocation.
|
|
466
|
+
@throw exception;
|
|
465
467
|
} @finally {
|
|
466
468
|
[retainedObjectsForInvocation removeAllObjects];
|
|
467
469
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native",
|
|
3
|
-
"version": "0.85.0-rc.
|
|
3
|
+
"version": "0.85.0-rc.7",
|
|
4
4
|
"description": "A framework for building native apps using React",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -149,7 +149,7 @@
|
|
|
149
149
|
"featureflags": "node ./scripts/featureflags/index.js"
|
|
150
150
|
},
|
|
151
151
|
"peerDependencies": {
|
|
152
|
-
"@react-native/jest-preset": "0.85.0-rc.
|
|
152
|
+
"@react-native/jest-preset": "0.85.0-rc.7",
|
|
153
153
|
"@types/react": "^19.1.1",
|
|
154
154
|
"react": "^19.2.3"
|
|
155
155
|
},
|
|
@@ -162,13 +162,13 @@
|
|
|
162
162
|
}
|
|
163
163
|
},
|
|
164
164
|
"dependencies": {
|
|
165
|
-
"@react-native/assets-registry": "0.85.0-rc.
|
|
166
|
-
"@react-native/codegen": "0.85.0-rc.
|
|
167
|
-
"@react-native/community-cli-plugin": "0.85.0-rc.
|
|
168
|
-
"@react-native/gradle-plugin": "0.85.0-rc.
|
|
169
|
-
"@react-native/js-polyfills": "0.85.0-rc.
|
|
170
|
-
"@react-native/normalize-colors": "0.85.0-rc.
|
|
171
|
-
"@react-native/virtualized-lists": "0.85.0-rc.
|
|
165
|
+
"@react-native/assets-registry": "0.85.0-rc.7",
|
|
166
|
+
"@react-native/codegen": "0.85.0-rc.7",
|
|
167
|
+
"@react-native/community-cli-plugin": "0.85.0-rc.7",
|
|
168
|
+
"@react-native/gradle-plugin": "0.85.0-rc.7",
|
|
169
|
+
"@react-native/js-polyfills": "0.85.0-rc.7",
|
|
170
|
+
"@react-native/normalize-colors": "0.85.0-rc.7",
|
|
171
|
+
"@react-native/virtualized-lists": "0.85.0-rc.7",
|
|
172
172
|
"abort-controller": "^3.0.0",
|
|
173
173
|
"anser": "^1.4.9",
|
|
174
174
|
"ansi-regex": "^5.0.0",
|