react-native 0.83.0-nightly-20251015-094794ac9 → 0.83.0-nightly-20251016-e79920c66
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/gradle.properties +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.kt +1 -1
- package/ReactApple/RCTAnimatedModuleProvider/RCTAnimatedModuleProvider.mm +20 -11
- package/ReactCommon/cxxreact/ReactNativeVersion.h +1 -1
- package/package.json +8 -8
- package/sdks/hermesc/win64-bin/hermesc.exe +0 -0
|
@@ -29,7 +29,7 @@ export default class ReactNativeVersion {
|
|
|
29
29
|
static major: number = 0;
|
|
30
30
|
static minor: number = 83;
|
|
31
31
|
static patch: number = 0;
|
|
32
|
-
static prerelease: string | null = 'nightly-
|
|
32
|
+
static prerelease: string | null = 'nightly-20251016-e79920c66';
|
|
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
|
@@ -24,7 +24,7 @@ NSDictionary* RCTGetReactNativeVersion(void)
|
|
|
24
24
|
RCTVersionMajor: @(0),
|
|
25
25
|
RCTVersionMinor: @(83),
|
|
26
26
|
RCTVersionPatch: @(0),
|
|
27
|
-
RCTVersionPrerelease: @"nightly-
|
|
27
|
+
RCTVersionPrerelease: @"nightly-20251016-e79920c66",
|
|
28
28
|
};
|
|
29
29
|
});
|
|
30
30
|
return __rnVersion;
|
|
@@ -38,23 +38,32 @@
|
|
|
38
38
|
{
|
|
39
39
|
if (facebook::react::ReactNativeFeatureFlags::cxxNativeAnimatedEnabled()) {
|
|
40
40
|
if (name == facebook::react::AnimatedModule::kModuleName) {
|
|
41
|
+
__weak RCTAnimatedModuleProvider *weakSelf = self;
|
|
41
42
|
auto provider = std::make_shared<facebook::react::NativeAnimatedNodesManagerProvider>(
|
|
42
|
-
[
|
|
43
|
-
|
|
44
|
-
if (
|
|
43
|
+
[weakSelf](std::function<void()> &&onRender) {
|
|
44
|
+
RCTAnimatedModuleProvider *strongSelf = weakSelf;
|
|
45
|
+
if (strongSelf) {
|
|
46
|
+
strongSelf->_onRender = onRender;
|
|
47
|
+
if (strongSelf->_displayLink == nil) {
|
|
45
48
|
#if TARGET_OS_OSX
|
|
46
|
-
|
|
49
|
+
strongSelf->_displayLink = [RCTPlatformDisplayLink displayLinkWithTarget:strongSelf
|
|
50
|
+
selector:@selector(_onDisplayLinkTick)];
|
|
47
51
|
#else
|
|
48
|
-
|
|
52
|
+
strongSelf->_displayLink = [CADisplayLink displayLinkWithTarget:strongSelf
|
|
53
|
+
selector:@selector(_onDisplayLinkTick)];
|
|
49
54
|
#endif
|
|
50
|
-
|
|
55
|
+
[strongSelf->_displayLink addToRunLoop:[NSRunLoop mainRunLoop] forMode:NSRunLoopCommonModes];
|
|
56
|
+
}
|
|
51
57
|
}
|
|
52
58
|
},
|
|
53
|
-
[
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
_displayLink
|
|
57
|
-
|
|
59
|
+
[weakSelf]() {
|
|
60
|
+
RCTAnimatedModuleProvider *strongSelf = weakSelf;
|
|
61
|
+
if (strongSelf) {
|
|
62
|
+
if (strongSelf->_displayLink != nil) {
|
|
63
|
+
[strongSelf->_displayLink invalidate];
|
|
64
|
+
strongSelf->_displayLink = nil;
|
|
65
|
+
strongSelf->_onRender = nullptr;
|
|
66
|
+
}
|
|
58
67
|
}
|
|
59
68
|
});
|
|
60
69
|
return std::make_shared<facebook::react::AnimatedModule>(std::move(jsInvoker), std::move(provider));
|
|
@@ -22,7 +22,7 @@ constexpr struct {
|
|
|
22
22
|
int32_t Major = 0;
|
|
23
23
|
int32_t Minor = 83;
|
|
24
24
|
int32_t Patch = 0;
|
|
25
|
-
std::string_view Prerelease = "nightly-
|
|
25
|
+
std::string_view Prerelease = "nightly-20251016-e79920c66";
|
|
26
26
|
} ReactNativeVersion;
|
|
27
27
|
|
|
28
28
|
} // namespace facebook::react
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native",
|
|
3
|
-
"version": "0.83.0-nightly-
|
|
3
|
+
"version": "0.83.0-nightly-20251016-e79920c66",
|
|
4
4
|
"description": "A framework for building native apps using React",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -159,13 +159,13 @@
|
|
|
159
159
|
},
|
|
160
160
|
"dependencies": {
|
|
161
161
|
"@jest/create-cache-key-function": "^29.7.0",
|
|
162
|
-
"@react-native/assets-registry": "0.83.0-nightly-
|
|
163
|
-
"@react-native/codegen": "0.83.0-nightly-
|
|
164
|
-
"@react-native/community-cli-plugin": "0.83.0-nightly-
|
|
165
|
-
"@react-native/gradle-plugin": "0.83.0-nightly-
|
|
166
|
-
"@react-native/js-polyfills": "0.83.0-nightly-
|
|
167
|
-
"@react-native/normalize-colors": "0.83.0-nightly-
|
|
168
|
-
"@react-native/virtualized-lists": "0.83.0-nightly-
|
|
162
|
+
"@react-native/assets-registry": "0.83.0-nightly-20251016-e79920c66",
|
|
163
|
+
"@react-native/codegen": "0.83.0-nightly-20251016-e79920c66",
|
|
164
|
+
"@react-native/community-cli-plugin": "0.83.0-nightly-20251016-e79920c66",
|
|
165
|
+
"@react-native/gradle-plugin": "0.83.0-nightly-20251016-e79920c66",
|
|
166
|
+
"@react-native/js-polyfills": "0.83.0-nightly-20251016-e79920c66",
|
|
167
|
+
"@react-native/normalize-colors": "0.83.0-nightly-20251016-e79920c66",
|
|
168
|
+
"@react-native/virtualized-lists": "0.83.0-nightly-20251016-e79920c66",
|
|
169
169
|
"abort-controller": "^3.0.0",
|
|
170
170
|
"anser": "^1.4.9",
|
|
171
171
|
"ansi-regex": "^5.0.0",
|
|
Binary file
|