react-native 0.82.0-nightly-20250902-9731e8ebc → 0.82.0-rc.0

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.
Files changed (34) hide show
  1. package/Libraries/Core/ReactNativeVersion.js +1 -1
  2. package/Libraries/Core/setUpPerformance.js +5 -3
  3. package/Libraries/Lists/FlatList.js +8 -8
  4. package/Libraries/Lists/ViewabilityHelper.js +1 -1
  5. package/Libraries/Lists/VirtualizedList.js +0 -1
  6. package/React/Base/RCTVersion.m +1 -1
  7. package/ReactAndroid/gradle.properties +1 -1
  8. package/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.kt +1 -1
  9. package/ReactCommon/cxxreact/ReactNativeVersion.h +1 -1
  10. package/ReactCommon/react/renderer/components/view/AccessibilityPrimitives.h +60 -2
  11. package/ReactCommon/react/renderer/components/view/accessibilityPropsConversions.h +0 -56
  12. package/ReactCommon/react/renderer/components/view/conversions.h +1 -1
  13. package/ReactCommon/react/renderer/components/view/platform/android/react/renderer/components/view/HostPlatformViewProps.cpp +40 -3
  14. package/flow/bom.js.flow +0 -157
  15. package/index.js.flow +0 -1
  16. package/package.json +8 -8
  17. package/scripts/replace-rncore-version.js +2 -4
  18. package/sdks/.hermesversion +1 -0
  19. package/sdks/hermes-engine/utils/replace_hermes_version.js +2 -4
  20. package/sdks/hermesc/osx-bin/hermes +0 -0
  21. package/sdks/hermesc/osx-bin/hermesc +0 -0
  22. package/sdks/hermesc/win64-bin/hermesc.exe +0 -0
  23. package/src/private/setup/{setUpPerformanceModern.js → setUpPerformanceObserver.js} +18 -43
  24. package/src/private/webapis/performance/EventTiming.js +15 -34
  25. package/src/private/webapis/performance/LongTasks.js +2 -35
  26. package/src/private/webapis/performance/Performance.js +6 -23
  27. package/src/private/webapis/performance/PerformanceEntry.js +8 -21
  28. package/src/private/webapis/performance/PerformanceObserver.js +1 -30
  29. package/src/private/webapis/performance/ResourceTiming.js +18 -29
  30. package/src/private/webapis/performance/UserTiming.js +28 -33
  31. package/src/private/webapis/performance/internals/RawPerformanceEntry.js +4 -3
  32. package/third-party-podspecs/replace_dependencies_version.js +2 -4
  33. package/types_generated/Libraries/Lists/VirtualizedList.d.ts +2 -2
  34. package/types_generated/index.d.ts +2 -2
@@ -29,7 +29,7 @@ export default class ReactNativeVersion {
29
29
  static major: number = 0;
30
30
  static minor: number = 82;
31
31
  static patch: number = 0;
32
- static prerelease: string | null = 'nightly-20250902-9731e8ebc';
32
+ static prerelease: string | null = 'rc.0';
33
33
 
34
34
  static getVersionString(): string {
35
35
  return `${this.major}.${this.minor}.${this.patch}${this.prerelease != null ? `-${this.prerelease}` : ''}`;
@@ -4,17 +4,19 @@
4
4
  * This source code is licensed under the MIT license found in the
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  *
7
- * @flow strict-local
7
+ * @flow strict
8
8
  * @format
9
9
  */
10
10
 
11
- import setUpPerformanceModern from '../../src/private/setup/setUpPerformanceModern';
12
11
  import NativePerformance from '../../src/private/webapis/performance/specs/NativePerformance';
13
12
 
14
13
  // In case if the native implementation of the Performance API is available, use it,
15
14
  // otherwise fall back to the legacy/default one, which only defines 'Performance.now()'
16
15
  if (NativePerformance) {
17
- setUpPerformanceModern();
16
+ const Performance =
17
+ require('../../src/private/webapis/performance/Performance').default;
18
+ // $FlowExpectedError[cannot-write]
19
+ global.performance = new Performance();
18
20
  } else {
19
21
  if (!global.performance) {
20
22
  // $FlowExpectedError[cannot-write]
@@ -13,8 +13,8 @@ import type {ViewStyleProp} from '../StyleSheet/StyleSheet';
13
13
  import type {
14
14
  ListRenderItem,
15
15
  ListRenderItemInfo,
16
- ListViewToken,
17
16
  ViewabilityConfigCallbackPair,
17
+ ViewToken,
18
18
  VirtualizedListProps,
19
19
  } from '@react-native/virtualized-lists';
20
20
 
@@ -573,7 +573,7 @@ class FlatList<ItemT = any> extends React.PureComponent<FlatListProps<ItemT>> {
573
573
  return keyExtractor(items, index);
574
574
  };
575
575
 
576
- _pushMultiColumnViewable(arr: Array<ListViewToken>, v: ListViewToken): void {
576
+ _pushMultiColumnViewable(arr: Array<ViewToken>, v: ViewToken): void {
577
577
  const numColumns = numColumnsOrDefault(this.props.numColumns);
578
578
  const keyExtractor = this.props.keyExtractor ?? defaultKeyExtractor;
579
579
  v.item.forEach((item, ii) => {
@@ -585,22 +585,22 @@ class FlatList<ItemT = any> extends React.PureComponent<FlatListProps<ItemT>> {
585
585
 
586
586
  _createOnViewableItemsChanged(
587
587
  onViewableItemsChanged: ?(info: {
588
- viewableItems: Array<ListViewToken>,
589
- changed: Array<ListViewToken>,
588
+ viewableItems: Array<ViewToken>,
589
+ changed: Array<ViewToken>,
590
590
  ...
591
591
  }) => void,
592
592
  // $FlowFixMe[missing-local-annot]
593
593
  ) {
594
594
  return (info: {
595
- viewableItems: Array<ListViewToken>,
596
- changed: Array<ListViewToken>,
595
+ viewableItems: Array<ViewToken>,
596
+ changed: Array<ViewToken>,
597
597
  ...
598
598
  }) => {
599
599
  const numColumns = numColumnsOrDefault(this.props.numColumns);
600
600
  if (onViewableItemsChanged) {
601
601
  if (numColumns > 1) {
602
- const changed: Array<ListViewToken> = [];
603
- const viewableItems: Array<ListViewToken> = [];
602
+ const changed: Array<ViewToken> = [];
603
+ const viewableItems: Array<ViewToken> = [];
604
604
  info.viewableItems.forEach(v =>
605
605
  this._pushMultiColumnViewable(viewableItems, v),
606
606
  );
@@ -11,7 +11,7 @@
11
11
  'use strict';
12
12
 
13
13
  export type {
14
- ListViewToken as ViewToken,
14
+ ViewToken,
15
15
  ViewabilityConfig,
16
16
  ViewabilityConfigCallbackPair,
17
17
  } from '@react-native/virtualized-lists';
@@ -19,7 +19,6 @@ const VirtualizedListComponent: VirtualizedListType =
19
19
  export type {
20
20
  ListRenderItemInfo,
21
21
  ListRenderItem,
22
- ListViewToken,
23
22
  Separators,
24
23
  VirtualizedListProps,
25
24
  } from '@react-native/virtualized-lists';
@@ -24,7 +24,7 @@ NSDictionary* RCTGetReactNativeVersion(void)
24
24
  RCTVersionMajor: @(0),
25
25
  RCTVersionMinor: @(82),
26
26
  RCTVersionPatch: @(0),
27
- RCTVersionPrerelease: @"nightly-20250902-9731e8ebc",
27
+ RCTVersionPrerelease: @"rc.0",
28
28
  };
29
29
  });
30
30
  return __rnVersion;
@@ -1,4 +1,4 @@
1
- VERSION_NAME=0.82.0-nightly-20250902-9731e8ebc
1
+ VERSION_NAME=0.82.0-rc.0
2
2
  react.internal.publishingGroup=com.facebook.react
3
3
 
4
4
  android.useAndroidX=true
@@ -15,6 +15,6 @@ public object ReactNativeVersion {
15
15
  "major" to 0,
16
16
  "minor" to 82,
17
17
  "patch" to 0,
18
- "prerelease" to "nightly-20250902-9731e8ebc"
18
+ "prerelease" to "rc.0"
19
19
  )
20
20
  }
@@ -22,7 +22,7 @@ constexpr struct {
22
22
  int32_t Major = 0;
23
23
  int32_t Minor = 82;
24
24
  int32_t Patch = 0;
25
- std::string_view Prerelease = "nightly-20250902-9731e8ebc";
25
+ std::string_view Prerelease = "rc.0";
26
26
  } ReactNativeVersion;
27
27
 
28
28
  } // namespace facebook::react
@@ -12,6 +12,8 @@
12
12
  #include <string>
13
13
  #include <vector>
14
14
 
15
+ #include <react/renderer/debug/DebugStringConvertible.h>
16
+
15
17
  namespace facebook::react {
16
18
 
17
19
  enum class AccessibilityTraits : uint32_t {
@@ -53,6 +55,27 @@ struct AccessibilityAction {
53
55
  std::optional<std::string> label{};
54
56
  };
55
57
 
58
+ inline std::string toString(const AccessibilityAction& accessibilityAction) {
59
+ std::string result = accessibilityAction.name;
60
+ if (accessibilityAction.label.has_value()) {
61
+ result += ": '" + accessibilityAction.label.value() + "'";
62
+ }
63
+ return result;
64
+ }
65
+
66
+ inline std::string toString(
67
+ std::vector<AccessibilityAction> accessibilityActions) {
68
+ std::string result = "[";
69
+ for (size_t i = 0; i < accessibilityActions.size(); i++) {
70
+ result += toString(accessibilityActions[i]);
71
+ if (i < accessibilityActions.size() - 1) {
72
+ result += ", ";
73
+ }
74
+ }
75
+ result += "]";
76
+ return result;
77
+ }
78
+
56
79
  inline static bool operator==(
57
80
  const AccessibilityAction& lhs,
58
81
  const AccessibilityAction& rhs) {
@@ -87,6 +110,29 @@ constexpr bool operator!=(
87
110
  return !(rhs == lhs);
88
111
  }
89
112
 
113
+ #if RN_DEBUG_STRING_CONVERTIBLE
114
+ inline std::string toString(AccessibilityState::CheckedState state) {
115
+ switch (state) {
116
+ case AccessibilityState::Unchecked:
117
+ return "Unchecked";
118
+ case AccessibilityState::Checked:
119
+ return "Checked";
120
+ case AccessibilityState::Mixed:
121
+ return "Mixed";
122
+ case AccessibilityState::None:
123
+ return "None";
124
+ }
125
+ }
126
+
127
+ inline std::string toString(const AccessibilityState& accessibilityState) {
128
+ return "{disabled:" + toString(accessibilityState.disabled) +
129
+ ",selected:" + toString(accessibilityState.selected) +
130
+ ",checked:" + toString(accessibilityState.checked) +
131
+ ",busy:" + toString(accessibilityState.busy) +
132
+ ",expanded:" + toString(accessibilityState.expanded) + "}";
133
+ }
134
+ #endif
135
+
90
136
  struct AccessibilityLabelledBy {
91
137
  std::vector<std::string> value{};
92
138
  };
@@ -136,7 +182,19 @@ enum class AccessibilityLiveRegion : uint8_t {
136
182
  Assertive,
137
183
  };
138
184
 
139
- enum class AccessibilityRole : uint8_t {
185
+ inline std::string toString(
186
+ const AccessibilityLiveRegion& accessibilityLiveRegion) {
187
+ switch (accessibilityLiveRegion) {
188
+ case AccessibilityLiveRegion::None:
189
+ return "none";
190
+ case AccessibilityLiveRegion::Polite:
191
+ return "polite";
192
+ case AccessibilityLiveRegion::Assertive:
193
+ return "assertive";
194
+ }
195
+ }
196
+
197
+ enum class AccessibilityRole {
140
198
  None,
141
199
  Button,
142
200
  Dropdownlist,
@@ -179,7 +237,7 @@ enum class AccessibilityRole : uint8_t {
179
237
  Iconmenu,
180
238
  };
181
239
 
182
- enum class Role : uint8_t {
240
+ enum class Role {
183
241
  Alert,
184
242
  Alertdialog,
185
243
  Application,
@@ -14,7 +14,6 @@
14
14
  #include <react/renderer/components/view/AccessibilityPrimitives.h>
15
15
  #include <react/renderer/core/PropsParserContext.h>
16
16
  #include <react/renderer/core/propsConversions.h>
17
- #include <react/renderer/debug/DebugStringConvertible.h>
18
17
 
19
18
  #include <unordered_map>
20
19
 
@@ -783,59 +782,4 @@ inline void fromRawValue(
783
782
  result = Role::None;
784
783
  }
785
784
 
786
- inline std::string toString(AccessibilityLiveRegion accessibilityLiveRegion) {
787
- switch (accessibilityLiveRegion) {
788
- case AccessibilityLiveRegion::None:
789
- return "none";
790
- case AccessibilityLiveRegion::Polite:
791
- return "polite";
792
- case AccessibilityLiveRegion::Assertive:
793
- return "assertive";
794
- }
795
- }
796
-
797
- #if RN_DEBUG_STRING_CONVERTIBLE
798
- inline std::string toString(AccessibilityState::CheckedState state) {
799
- switch (state) {
800
- case AccessibilityState::Unchecked:
801
- return "Unchecked";
802
- case AccessibilityState::Checked:
803
- return "Checked";
804
- case AccessibilityState::Mixed:
805
- return "Mixed";
806
- case AccessibilityState::None:
807
- return "None";
808
- }
809
- }
810
-
811
- inline std::string toString(const AccessibilityAction& accessibilityAction) {
812
- std::string result = accessibilityAction.name;
813
- if (accessibilityAction.label.has_value()) {
814
- result += ": '" + accessibilityAction.label.value() + "'";
815
- }
816
- return result;
817
- }
818
-
819
- inline std::string toString(
820
- std::vector<AccessibilityAction> accessibilityActions) {
821
- std::string result = "[";
822
- for (size_t i = 0; i < accessibilityActions.size(); i++) {
823
- result += toString(accessibilityActions[i]);
824
- if (i < accessibilityActions.size() - 1) {
825
- result += ", ";
826
- }
827
- }
828
- result += "]";
829
- return result;
830
- }
831
-
832
- inline std::string toString(const AccessibilityState& accessibilityState) {
833
- return "{disabled:" + toString(accessibilityState.disabled) +
834
- ",selected:" + toString(accessibilityState.selected) +
835
- ",checked:" + toString(accessibilityState.checked) +
836
- ",busy:" + toString(accessibilityState.busy) +
837
- ",expanded:" + toString(accessibilityState.expanded) + "}";
838
- }
839
- #endif
840
-
841
785
  } // namespace facebook::react
@@ -848,7 +848,7 @@ inline void fromRawValue(
848
848
  react_native_expect(false);
849
849
  }
850
850
 
851
- inline std::string toString(PointerEventsMode value) {
851
+ inline std::string toString(const PointerEventsMode& value) {
852
852
  switch (value) {
853
853
  case PointerEventsMode::Auto:
854
854
  return "auto";
@@ -618,7 +618,21 @@ folly::dynamic HostPlatformViewProps::getDiffProps(
618
618
  }
619
619
 
620
620
  if (pointerEvents != oldProps->pointerEvents) {
621
- result["pointerEvents"] = toString(pointerEvents);
621
+ std::string value;
622
+ switch (pointerEvents) {
623
+ case PointerEventsMode::BoxOnly:
624
+ result["pointerEvents"] = "box-only";
625
+ break;
626
+ case PointerEventsMode::BoxNone:
627
+ result["pointerEvents"] = "box-none";
628
+ break;
629
+ case PointerEventsMode::None:
630
+ result["pointerEvents"] = "none";
631
+ break;
632
+ default:
633
+ result["pointerEvents"] = "auto";
634
+ break;
635
+ }
622
636
  }
623
637
 
624
638
  if (hitSlop != oldProps->hitSlop) {
@@ -903,7 +917,17 @@ folly::dynamic HostPlatformViewProps::getDiffProps(
903
917
  }
904
918
 
905
919
  if (accessibilityLiveRegion != oldProps->accessibilityLiveRegion) {
906
- result["accessibilityLiveRegion"] = toString(accessibilityLiveRegion);
920
+ switch (accessibilityLiveRegion) {
921
+ case AccessibilityLiveRegion::Assertive:
922
+ result["accessibilityLiveRegion"] = "assertive";
923
+ break;
924
+ case AccessibilityLiveRegion::Polite:
925
+ result["accessibilityLiveRegion"] = "polite";
926
+ break;
927
+ case AccessibilityLiveRegion::None:
928
+ result["accessibilityLiveRegion"] = "none";
929
+ break;
930
+ }
907
931
  }
908
932
 
909
933
  if (accessibilityHint != oldProps->accessibilityHint) {
@@ -979,7 +1003,20 @@ folly::dynamic HostPlatformViewProps::getDiffProps(
979
1003
  }
980
1004
 
981
1005
  if (importantForAccessibility != oldProps->importantForAccessibility) {
982
- result["importantForAccessibility"] = toString(importantForAccessibility);
1006
+ switch (importantForAccessibility) {
1007
+ case ImportantForAccessibility::Auto:
1008
+ result["importantForAccessibility"] = "auto";
1009
+ break;
1010
+ case ImportantForAccessibility::Yes:
1011
+ result["importantForAccessibility"] = "yes";
1012
+ break;
1013
+ case ImportantForAccessibility::No:
1014
+ result["importantForAccessibility"] = "no";
1015
+ break;
1016
+ case ImportantForAccessibility::NoHideDescendants:
1017
+ result["importantForAccessibility"] = "noHideDescendants";
1018
+ break;
1019
+ }
983
1020
  }
984
1021
 
985
1022
  return result;
package/flow/bom.js.flow CHANGED
@@ -88,169 +88,12 @@ declare var navigator: Navigator;
88
88
  // https://developer.mozilla.org/en-US/docs/Web/API/DOMHighResTimeStamp
89
89
  declare type DOMHighResTimeStamp = number;
90
90
 
91
- type PerformanceEntryFilterOptions = {
92
- entryType: string,
93
- name: string,
94
- ...
95
- };
96
-
97
- // https://www.w3.org/TR/performance-timeline-2/
98
- declare class PerformanceEntry {
99
- duration: DOMHighResTimeStamp;
100
- entryType: string;
101
- name: string;
102
- startTime: DOMHighResTimeStamp;
103
- toJSON(): string;
104
- }
105
-
106
- // https://w3c.github.io/user-timing/#performancemark
107
- declare class PerformanceMark extends PerformanceEntry {
108
- constructor(name: string, markOptions?: PerformanceMarkOptions): void;
109
- +detail: mixed;
110
- }
111
-
112
- // https://w3c.github.io/user-timing/#performancemeasure
113
- declare class PerformanceMeasure extends PerformanceEntry {
114
- +detail: mixed;
115
- }
116
-
117
- // https://w3c.github.io/server-timing/#the-performanceservertiming-interface
118
- declare class PerformanceServerTiming {
119
- description: string;
120
- duration: DOMHighResTimeStamp;
121
- name: string;
122
- toJSON(): string;
123
- }
124
-
125
- // https://www.w3.org/TR/resource-timing-2/#sec-performanceresourcetiming
126
- // https://w3c.github.io/server-timing/#extension-to-the-performanceresourcetiming-interface
127
- declare class PerformanceResourceTiming extends PerformanceEntry {
128
- connectEnd: number;
129
- connectStart: number;
130
- decodedBodySize: number;
131
- domainLookupEnd: number;
132
- domainLookupStart: number;
133
- encodedBodySize: number;
134
- fetchStart: number;
135
- initiatorType: string;
136
- nextHopProtocol: string;
137
- redirectEnd: number;
138
- redirectStart: number;
139
- requestStart: number;
140
- responseEnd: number;
141
- responseStart: number;
142
- secureConnectionStart: number;
143
- serverTiming: Array<PerformanceServerTiming>;
144
- transferSize: number;
145
- workerStart: number;
146
- }
147
-
148
- // https://w3c.github.io/event-timing/#sec-performance-event-timing
149
- declare class PerformanceEventTiming extends PerformanceEntry {
150
- cancelable: boolean;
151
- interactionId: number;
152
- processingEnd: number;
153
- processingStart: number;
154
- target: ?Node;
155
- }
156
-
157
- // https://w3c.github.io/longtasks/#taskattributiontiming
158
- declare class TaskAttributionTiming extends PerformanceEntry {
159
- containerId: string;
160
- containerName: string;
161
- containerSrc: string;
162
- containerType: string;
163
- }
164
-
165
- // https://w3c.github.io/longtasks/#sec-PerformanceLongTaskTiming
166
- declare class PerformanceLongTaskTiming extends PerformanceEntry {
167
- attribution: $ReadOnlyArray<TaskAttributionTiming>;
168
- }
169
-
170
- // https://www.w3.org/TR/user-timing/#extensions-performance-interface
171
- declare type PerformanceMarkOptions = {
172
- detail?: mixed,
173
- startTime?: number,
174
- };
175
-
176
- declare type PerformanceMeasureOptions = {
177
- detail?: mixed,
178
- duration?: number,
179
- end?: number | string,
180
- start?: number | string,
181
- };
182
-
183
- type EventCountsForEachCallbackType =
184
- | (() => void)
185
- | ((value: number) => void)
186
- | ((value: number, key: string) => void)
187
- | ((value: number, key: string, map: Map<string, number>) => void);
188
-
189
- // https://www.w3.org/TR/event-timing/#eventcounts
190
- declare interface EventCounts {
191
- entries(): Iterator<[string, number]>;
192
-
193
- forEach(callback: EventCountsForEachCallbackType): void;
194
- get(key: string): ?number;
195
- has(key: string): boolean;
196
- keys(): Iterator<string>;
197
- size: number;
198
- values(): Iterator<number>;
199
- }
200
-
201
91
  declare class Performance {
202
- clearMarks(name?: string): void;
203
-
204
- clearMeasures(name?: string): void;
205
-
206
- eventCounts: EventCounts;
207
- getEntries: (
208
- options?: PerformanceEntryFilterOptions,
209
- ) => Array<PerformanceEntry>;
210
- getEntriesByName: (name: string, type?: string) => Array<PerformanceEntry>;
211
- getEntriesByType: (type: string) => Array<PerformanceEntry>;
212
- mark(name: string, options?: PerformanceMarkOptions): PerformanceMark;
213
- measure(
214
- name: string,
215
- startMarkOrOptions?: string | PerformanceMeasureOptions,
216
- endMark?: string,
217
- ): PerformanceMeasure;
218
92
  now: () => DOMHighResTimeStamp;
219
- toJSON(): string;
220
93
  }
221
94
 
222
95
  declare var performance: Performance;
223
96
 
224
- type PerformanceEntryList = Array<PerformanceEntry>;
225
-
226
- declare interface PerformanceObserverEntryList {
227
- getEntries(): PerformanceEntryList;
228
- getEntriesByName(name: string, type: ?string): PerformanceEntryList;
229
- getEntriesByType(type: string): PerformanceEntryList;
230
- }
231
-
232
- type PerformanceObserverInit = {
233
- buffered?: boolean,
234
- entryTypes?: Array<string>,
235
- type?: string,
236
- ...
237
- };
238
-
239
- declare class PerformanceObserver {
240
- constructor(
241
- callback: (
242
- entries: PerformanceObserverEntryList,
243
- observer: PerformanceObserver,
244
- ) => mixed,
245
- ): void;
246
-
247
- disconnect(): void;
248
- observe(options: ?PerformanceObserverInit): void;
249
- static supportedEntryTypes: Array<string>;
250
-
251
- takeRecords(): PerformanceEntryList;
252
- }
253
-
254
97
  type FormDataEntryValue = string | File;
255
98
 
256
99
  declare class FormData {
package/index.js.flow CHANGED
@@ -184,7 +184,6 @@ export {default as View} from './Libraries/Components/View/View';
184
184
  export type {
185
185
  ListRenderItemInfo,
186
186
  ListRenderItem,
187
- ListViewToken,
188
187
  Separators,
189
188
  VirtualizedListProps,
190
189
  } from './Libraries/Lists/VirtualizedList';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native",
3
- "version": "0.82.0-nightly-20250902-9731e8ebc",
3
+ "version": "0.82.0-rc.0",
4
4
  "description": "A framework for building native apps using React",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -162,13 +162,13 @@
162
162
  },
163
163
  "dependencies": {
164
164
  "@jest/create-cache-key-function": "^29.7.0",
165
- "@react-native/assets-registry": "0.82.0-nightly-20250902-9731e8ebc",
166
- "@react-native/codegen": "0.82.0-nightly-20250902-9731e8ebc",
167
- "@react-native/community-cli-plugin": "0.82.0-nightly-20250902-9731e8ebc",
168
- "@react-native/gradle-plugin": "0.82.0-nightly-20250902-9731e8ebc",
169
- "@react-native/js-polyfills": "0.82.0-nightly-20250902-9731e8ebc",
170
- "@react-native/normalize-colors": "0.82.0-nightly-20250902-9731e8ebc",
171
- "@react-native/virtualized-lists": "0.82.0-nightly-20250902-9731e8ebc",
165
+ "@react-native/assets-registry": "0.82.0-rc.0",
166
+ "@react-native/codegen": "0.82.0-rc.0",
167
+ "@react-native/community-cli-plugin": "0.82.0-rc.0",
168
+ "@react-native/gradle-plugin": "0.82.0-rc.0",
169
+ "@react-native/js-polyfills": "0.82.0-rc.0",
170
+ "@react-native/normalize-colors": "0.82.0-rc.0",
171
+ "@react-native/virtualized-lists": "0.82.0-rc.0",
172
172
  "abort-controller": "^3.0.0",
173
173
  "anser": "^1.4.9",
174
174
  "ansi-regex": "^5.0.0",
@@ -10,7 +10,7 @@
10
10
 
11
11
  'use strict';
12
12
 
13
- const {spawnSync} = require('child_process');
13
+ const {execSync} = require('child_process');
14
14
  const fs = require('fs');
15
15
  const yargs = require('yargs');
16
16
 
@@ -67,9 +67,7 @@ function replaceRNCoreConfiguration(
67
67
  fs.mkdirSync(finalLocation, {recursive: true});
68
68
 
69
69
  console.log('Extracting the tarball', tarballURLPath);
70
- spawnSync('tar', ['-xf', tarballURLPath, '-C', finalLocation], {
71
- stdio: 'inherit',
72
- });
70
+ execSync(`tar -xf ${tarballURLPath} -C ${finalLocation}`);
73
71
  }
74
72
 
75
73
  function updateLastBuildConfiguration(configuration /*: string */) {
@@ -0,0 +1 @@
1
+ hermes-2025-09-01-RNv0.82.0-265ef62ff3eb7289d17e366664ac0da82303e101
@@ -10,7 +10,7 @@
10
10
 
11
11
  'use strict';
12
12
 
13
- const {spawnSync} = require('child_process');
13
+ const {execSync} = require('child_process');
14
14
  const fs = require('fs');
15
15
  const yargs = require('yargs');
16
16
 
@@ -62,9 +62,7 @@ function replaceHermesConfiguration(configuration, version, podsRoot) {
62
62
  fs.mkdirSync(finalLocation, {recursive: true});
63
63
 
64
64
  console.log('Extracting the tarball');
65
- spawnSync('tar', ['-xf', tarballURLPath, '-C', finalLocation], {
66
- stdio: 'inherit',
67
- });
65
+ execSync(`tar -xf ${tarballURLPath} -C ${finalLocation}`);
68
66
  }
69
67
 
70
68
  function updateLastBuildConfiguration(configuration) {
Binary file
Binary file
Binary file