react-native 0.83.0-nightly-20251101-693e9628e → 0.83.0-nightly-20251102-d8e6a985a

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.
@@ -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-20251101-693e9628e';
32
+ static prerelease: string | null = 'nightly-20251102-d8e6a985a';
33
33
 
34
34
  static getVersionString(): string {
35
35
  return `${this.major}.${this.minor}.${this.patch}${this.prerelease != null ? `-${this.prerelease}` : ''}`;
@@ -24,7 +24,7 @@ NSDictionary* RCTGetReactNativeVersion(void)
24
24
  RCTVersionMajor: @(0),
25
25
  RCTVersionMinor: @(83),
26
26
  RCTVersionPatch: @(0),
27
- RCTVersionPrerelease: @"nightly-20251101-693e9628e",
27
+ RCTVersionPrerelease: @"nightly-20251102-d8e6a985a",
28
28
  };
29
29
  });
30
30
  return __rnVersion;
@@ -1,4 +1,4 @@
1
- VERSION_NAME=0.83.0-nightly-20251101-693e9628e
1
+ VERSION_NAME=0.83.0-nightly-20251102-d8e6a985a
2
2
  react.internal.publishingGroup=com.facebook.react
3
3
  react.internal.hermesPublishingGroup=com.facebook.hermes
4
4
 
@@ -15,6 +15,6 @@ public object ReactNativeVersion {
15
15
  "major" to 0,
16
16
  "minor" to 83,
17
17
  "patch" to 0,
18
- "prerelease" to "nightly-20251101-693e9628e"
18
+ "prerelease" to "nightly-20251102-d8e6a985a"
19
19
  )
20
20
  }
@@ -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-20251101-693e9628e";
25
+ std::string_view Prerelease = "nightly-20251102-d8e6a985a";
26
26
  } ReactNativeVersion;
27
27
 
28
28
  } // namespace facebook::react
@@ -1044,13 +1044,20 @@ void NativeAnimatedNodesManager::onRender() {
1044
1044
 
1045
1045
  {
1046
1046
  // Flush async created animated nodes
1047
- std::lock_guard<std::mutex> lock(animatedNodesCreatedAsyncMutex_);
1048
- std::lock_guard<std::mutex> lockCreateAsync(connectedAnimatedNodesMutex_);
1049
- for (auto& [tag, node] : animatedNodesCreatedAsync_) {
1050
- animatedNodes_.insert({tag, std::move(node)});
1051
- updatedNodeTags_.insert(tag);
1047
+ std::unordered_map<Tag, std::unique_ptr<AnimatedNode>>
1048
+ animatedNodesCreatedAsync;
1049
+ {
1050
+ std::lock_guard<std::mutex> lock(animatedNodesCreatedAsyncMutex_);
1051
+ std::swap(animatedNodesCreatedAsync, animatedNodesCreatedAsync_);
1052
+ }
1053
+
1054
+ if (!animatedNodesCreatedAsync.empty()) {
1055
+ std::lock_guard<std::mutex> lock(connectedAnimatedNodesMutex_);
1056
+ for (auto& [tag, node] : animatedNodesCreatedAsync) {
1057
+ animatedNodes_.insert({tag, std::move(node)});
1058
+ updatedNodeTags_.insert(tag);
1059
+ }
1052
1060
  }
1053
- animatedNodesCreatedAsync_.clear();
1054
1061
  }
1055
1062
 
1056
1063
  // Run operations scheduled from AnimatedModule
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native",
3
- "version": "0.83.0-nightly-20251101-693e9628e",
3
+ "version": "0.83.0-nightly-20251102-d8e6a985a",
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-20251101-693e9628e",
163
- "@react-native/codegen": "0.83.0-nightly-20251101-693e9628e",
164
- "@react-native/community-cli-plugin": "0.83.0-nightly-20251101-693e9628e",
165
- "@react-native/gradle-plugin": "0.83.0-nightly-20251101-693e9628e",
166
- "@react-native/js-polyfills": "0.83.0-nightly-20251101-693e9628e",
167
- "@react-native/normalize-colors": "0.83.0-nightly-20251101-693e9628e",
168
- "@react-native/virtualized-lists": "0.83.0-nightly-20251101-693e9628e",
162
+ "@react-native/assets-registry": "0.83.0-nightly-20251102-d8e6a985a",
163
+ "@react-native/codegen": "0.83.0-nightly-20251102-d8e6a985a",
164
+ "@react-native/community-cli-plugin": "0.83.0-nightly-20251102-d8e6a985a",
165
+ "@react-native/gradle-plugin": "0.83.0-nightly-20251102-d8e6a985a",
166
+ "@react-native/js-polyfills": "0.83.0-nightly-20251102-d8e6a985a",
167
+ "@react-native/normalize-colors": "0.83.0-nightly-20251102-d8e6a985a",
168
+ "@react-native/virtualized-lists": "0.83.0-nightly-20251102-d8e6a985a",
169
169
  "abort-controller": "^3.0.0",
170
170
  "anser": "^1.4.9",
171
171
  "ansi-regex": "^5.0.0",