react-native-tvos 0.86.0-1 → 0.86.2-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 (145) hide show
  1. package/Libraries/ActionSheetIOS/React-RCTActionSheet.podspec +1 -1
  2. package/Libraries/Animated/components/AnimatedScrollView.js +1 -1
  3. package/Libraries/AppDelegate/React-RCTAppDelegate.podspec +1 -1
  4. package/Libraries/Blob/React-RCTBlob.podspec +1 -1
  5. package/Libraries/Components/Button.js +2 -2
  6. package/Libraries/Components/TextInput/AndroidTextInputNativeComponent.js +1 -1
  7. package/Libraries/Components/TextInput/TextInput.flow.js +1 -1
  8. package/Libraries/Components/Touchable/Touchable.d.ts +1 -1
  9. package/Libraries/Components/View/ViewAccessibility.d.ts +1 -1
  10. package/Libraries/Components/View/ViewAccessibility.js +1 -1
  11. package/Libraries/Core/ReactNativeVersion.js +2 -2
  12. package/Libraries/Core/Timers/JSTimers.js +1 -1
  13. package/Libraries/Core/setUpNavigator.js +1 -1
  14. package/Libraries/EventEmitter/RCTNativeAppEventEmitter.d.ts +1 -1
  15. package/Libraries/FBLazyVector/FBLazyVector.podspec +1 -1
  16. package/Libraries/Image/ImageSource.d.ts +1 -1
  17. package/Libraries/Image/RCTImageLoader.mm +1 -1
  18. package/Libraries/Image/React-RCTImage.podspec +1 -1
  19. package/Libraries/Interaction/PanResponder.js +1 -1
  20. package/Libraries/LinkingIOS/React-RCTLinking.podspec +1 -1
  21. package/Libraries/LogBox/UI/LogBoxButton.js +0 -2
  22. package/Libraries/NativeAnimation/React-RCTAnimation.podspec +1 -1
  23. package/Libraries/Network/React-RCTNetwork.podspec +1 -1
  24. package/Libraries/PushNotificationIOS/React-RCTPushNotification.podspec +1 -1
  25. package/Libraries/Renderer/README.md +2 -2
  26. package/Libraries/Required/RCTRequired.podspec +1 -1
  27. package/Libraries/Settings/React-RCTSettings.podspec +1 -1
  28. package/Libraries/Text/React-RCTText.podspec +1 -1
  29. package/Libraries/TypeSafety/RCTTypeSafety.podspec +1 -1
  30. package/Libraries/Utilities/PolyfillFunctions.js +1 -1
  31. package/Libraries/Vibration/React-RCTVibration.podspec +1 -1
  32. package/README-core.md +6 -6
  33. package/React/Base/RCTVersion.m +2 -2
  34. package/React/CoreModules/React-CoreModules.podspec +1 -1
  35. package/React/Fabric/Mounting/ComponentViews/ScrollView/RCTScrollViewComponentView.mm +14 -2
  36. package/React/Fabric/Mounting/ComponentViews/TextInput/RCTTextInputComponentView.mm +12 -1
  37. package/React/Fabric/Mounting/ComponentViews/View/RCTViewComponentView.mm +13 -17
  38. package/React/React-RCTFBReactNativeSpec.podspec +1 -1
  39. package/React/React-RCTFabric.podspec +1 -1
  40. package/React/Runtime/React-RCTRuntime.podspec +1 -1
  41. package/React/Views/ScrollView/RCTScrollView.m +1 -1
  42. package/React-Core.podspec +1 -1
  43. package/React.podspec +1 -1
  44. package/ReactAndroid/build.gradle.kts +1 -1
  45. package/ReactAndroid/gradle.properties +1 -1
  46. package/ReactAndroid/publish.gradle +5 -5
  47. package/ReactAndroid/src/main/java/com/facebook/react/ReactInstanceManager.java +5 -4
  48. package/ReactAndroid/src/main/java/com/facebook/react/devsupport/CxxInspectorPackagerConnection.kt +1 -1
  49. package/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/SurfaceMountingManager.kt +39 -11
  50. package/ReactAndroid/src/main/java/com/facebook/react/modules/core/JavaTimerManager.kt +2 -2
  51. package/ReactAndroid/src/main/java/com/facebook/react/modules/core/ReactAndroidHWInputDeviceHelper.java +1 -0
  52. package/ReactAndroid/src/main/java/com/facebook/react/modules/intent/IntentModule.kt +1 -1
  53. package/ReactAndroid/src/main/java/com/facebook/react/modules/network/NetworkingModule.kt +2 -2
  54. package/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.kt +2 -2
  55. package/ReactAndroid/src/main/java/com/facebook/react/runtime/ReactInstance.kt +1 -1
  56. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/BaseViewManager.java +1 -1
  57. package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactNestedScrollViewManager.kt +1 -1
  58. package/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactScrollViewManager.kt +1 -1
  59. package/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactTextView.java +1 -1
  60. package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactEditText.kt +2 -2
  61. package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactTextInputManager.kt +2 -2
  62. package/ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactTextSelectionWatcher.kt +1 -1
  63. package/ReactAndroid/src/main/java/com/facebook/react/views/view/ReactViewGroup.kt +4 -4
  64. package/ReactAndroid/src/main/java/com/facebook/react/views/view/ReactViewManager.kt +1 -1
  65. package/ReactApple/Libraries/RCTFoundation/RCTDeprecation/RCTDeprecation.podspec +1 -1
  66. package/ReactApple/RCTSwiftUI/RCTSwiftUI.podspec +1 -1
  67. package/ReactApple/RCTSwiftUIWrapper/RCTSwiftUIWrapper.podspec +1 -1
  68. package/ReactCommon/React-Fabric.podspec +1 -1
  69. package/ReactCommon/React-FabricComponents.podspec +1 -1
  70. package/ReactCommon/React-FabricImage.podspec +1 -1
  71. package/ReactCommon/React-Mapbuffer.podspec +1 -1
  72. package/ReactCommon/ReactCommon.podspec +1 -1
  73. package/ReactCommon/callinvoker/React-callinvoker.podspec +1 -1
  74. package/ReactCommon/cxxreact/React-cxxreact.podspec +1 -1
  75. package/ReactCommon/cxxreact/ReactNativeVersion.h +3 -3
  76. package/ReactCommon/hermes/React-hermes.podspec +1 -1
  77. package/ReactCommon/hermes/executor/React-jsitracing.podspec +1 -1
  78. package/ReactCommon/jserrorhandler/React-jserrorhandler.podspec +1 -1
  79. package/ReactCommon/jsi/React-jsi.podspec +1 -1
  80. package/ReactCommon/jsiexecutor/React-jsiexecutor.podspec +1 -1
  81. package/ReactCommon/jsinspector-modern/React-jsinspector.podspec +1 -1
  82. package/ReactCommon/jsinspector-modern/cdp/React-jsinspectorcdp.podspec +1 -1
  83. package/ReactCommon/jsinspector-modern/network/React-jsinspectornetwork.podspec +1 -1
  84. package/ReactCommon/jsinspector-modern/tracing/React-jsinspectortracing.podspec +1 -1
  85. package/ReactCommon/jsitooling/React-jsitooling.podspec +1 -1
  86. package/ReactCommon/logger/React-logger.podspec +1 -1
  87. package/ReactCommon/oscompat/React-oscompat.podspec +1 -1
  88. package/ReactCommon/react/debug/React-debug.podspec +1 -1
  89. package/ReactCommon/react/debug/redbox/JscSafeUrl.h +1 -1
  90. package/ReactCommon/react/featureflags/React-featureflags.podspec +1 -1
  91. package/ReactCommon/react/nativemodule/core/platform/android/ReactCommon/JavaTurboModule.cpp +1 -1
  92. package/ReactCommon/react/nativemodule/core/platform/ios/React-NativeModulesApple.podspec +1 -1
  93. package/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTInteropTurboModule.mm +1 -1
  94. package/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTTurboModule.mm +1 -1
  95. package/ReactCommon/react/nativemodule/defaults/React-defaultsnativemodule.podspec +1 -1
  96. package/ReactCommon/react/nativemodule/dom/React-domnativemodule.podspec +1 -1
  97. package/ReactCommon/react/nativemodule/featureflags/React-featureflagsnativemodule.podspec +1 -1
  98. package/ReactCommon/react/nativemodule/idlecallbacks/React-idlecallbacksnativemodule.podspec +1 -1
  99. package/ReactCommon/react/nativemodule/intersectionobserver/React-intersectionobservernativemodule.podspec +1 -1
  100. package/ReactCommon/react/nativemodule/microtasks/React-microtasksnativemodule.podspec +1 -1
  101. package/ReactCommon/react/nativemodule/mutationobserver/React-mutationobservernativemodule.podspec +1 -1
  102. package/ReactCommon/react/nativemodule/samples/ReactCommon-Samples.podspec +1 -1
  103. package/ReactCommon/react/nativemodule/viewtransition/React-viewtransitionnativemodule.podspec +1 -1
  104. package/ReactCommon/react/nativemodule/webperformance/React-webperformancenativemodule.podspec +1 -1
  105. package/ReactCommon/react/networking/React-networking.podspec +1 -1
  106. package/ReactCommon/react/performance/cdpmetrics/React-performancecdpmetrics.podspec +1 -1
  107. package/ReactCommon/react/performance/timeline/React-performancetimeline.podspec +1 -1
  108. package/ReactCommon/react/renderer/animated/internal/primitives.h +1 -1
  109. package/ReactCommon/react/renderer/consistency/React-rendererconsistency.podspec +1 -1
  110. package/ReactCommon/react/renderer/core/ShadowNode.cpp +27 -19
  111. package/ReactCommon/react/renderer/core/ShadowNodeFamily.h +2 -0
  112. package/ReactCommon/react/renderer/css/React-renderercss.podspec +1 -1
  113. package/ReactCommon/react/renderer/debug/React-rendererdebug.podspec +1 -1
  114. package/ReactCommon/react/renderer/graphics/React-graphics.podspec +1 -1
  115. package/ReactCommon/react/renderer/imagemanager/platform/ios/React-ImageManager.podspec +1 -1
  116. package/ReactCommon/react/renderer/mounting/internal/CullingContext.cpp +1 -1
  117. package/ReactCommon/react/renderer/runtimescheduler/React-runtimescheduler.podspec +1 -1
  118. package/ReactCommon/react/renderer/uimanager/UIManager.cpp +58 -53
  119. package/ReactCommon/react/renderer/uimanager/tests/FabricUIManagerTest.cpp +144 -3
  120. package/ReactCommon/react/runtime/React-RuntimeCore.podspec +1 -1
  121. package/ReactCommon/react/runtime/React-RuntimeHermes.podspec +1 -1
  122. package/ReactCommon/react/runtime/platform/ios/React-RuntimeApple.podspec +1 -1
  123. package/ReactCommon/react/timing/React-timing.podspec +1 -1
  124. package/ReactCommon/react/utils/React-utils.podspec +1 -1
  125. package/ReactCommon/reactperflogger/React-perflogger.podspec +1 -1
  126. package/ReactCommon/runtimeexecutor/React-runtimeexecutor.podspec +1 -1
  127. package/ReactCommon/yoga/Yoga.podspec +1 -1
  128. package/ReactCommon/yoga/yoga/algorithm/AbsoluteLayout.cpp +2 -1
  129. package/ReactCommon/yoga/yoga/algorithm/CalculateLayout.cpp +11 -7
  130. package/ReactCommon/yoga/yoga/algorithm/CalculateLayout.h +1 -1
  131. package/package.json +11 -11
  132. package/scripts/cocoapods/spm.rb +1 -1
  133. package/scripts/cocoapods/utils.rb +2 -2
  134. package/scripts/codegen/templates/ReactAppDependencyProvider.podspec.template +1 -1
  135. package/scripts/codegen/templates/ReactCodegen.podspec.template +1 -1
  136. package/scripts/ios-configure-glog.sh +1 -1
  137. package/sdks/.hermesv1version +1 -1
  138. package/sdks/hermes-engine/hermes-engine.podspec +1 -1
  139. package/sdks/hermes-engine/version.properties +1 -1
  140. package/src/private/types/HostInstance.js +1 -1
  141. package/src/types/globals.d.ts +2 -2
  142. package/third-party-podspecs/RCT-Folly.podspec +1 -1
  143. package/third-party-podspecs/ReactNativeDependencies.podspec +1 -1
  144. package/third-party-podspecs/glog.podspec +1 -1
  145. package/types/public/ReactNativeTypes.d.ts +2 -2
@@ -8,7 +8,7 @@ require "json"
8
8
  package = JSON.parse(File.read(File.join(__dir__, "..", "..", "package.json")))
9
9
  version = package['version']
10
10
 
11
- source = { :git => 'https://github.com/facebook/react-native.git' }
11
+ source = { :git => 'https://github.com/react/react-native.git' }
12
12
  if version == '1000.0.0'
13
13
  # This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
14
14
  source[:commit] = `git rev-parse HEAD`.strip if system("git rev-parse --git-dir > /dev/null 2>&1")
@@ -31,7 +31,7 @@ import {cloneElement, useMemo} from 'react';
31
31
  type AnimatedScrollViewInstance = React.ElementRef<typeof ScrollView>;
32
32
 
33
33
  /**
34
- * @see https://github.com/facebook/react-native/commit/b8c8562
34
+ * @see https://github.com/react/react-native/commit/b8c8562
35
35
  */
36
36
  const AnimatedScrollView: AnimatedComponentType<
37
37
  ScrollViewProps,
@@ -8,7 +8,7 @@ require "json"
8
8
  package = JSON.parse(File.read(File.join(__dir__, "..", "..", "package.json")))
9
9
  version = package['version']
10
10
 
11
- source = { :git => 'https://github.com/facebook/react-native.git' }
11
+ source = { :git => 'https://github.com/react/react-native.git' }
12
12
  if version == '1000.0.0'
13
13
  # This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
14
14
  source[:commit] = `git rev-parse HEAD`.strip if system("git rev-parse --git-dir > /dev/null 2>&1")
@@ -8,7 +8,7 @@ require "json"
8
8
  package = JSON.parse(File.read(File.join(__dir__, "..", "..", "package.json")))
9
9
  version = package['version']
10
10
 
11
- source = { :git => 'https://github.com/facebook/react-native.git' }
11
+ source = { :git => 'https://github.com/react/react-native.git' }
12
12
  if version == '1000.0.0'
13
13
  # This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
14
14
  source[:commit] = `git rev-parse HEAD`.strip if system("git rev-parse --git-dir > /dev/null 2>&1")
@@ -127,7 +127,7 @@ export type ButtonProps = Readonly<{
127
127
  accessibilityLabel?: ?string,
128
128
  /**
129
129
  * Alias for accessibilityLabel https://reactnative.dev/docs/view#accessibilitylabel
130
- * https://github.com/facebook/react-native/issues/34424
130
+ * https://github.com/react/react-native/issues/34424
131
131
  */
132
132
  'aria-label'?: ?string,
133
133
  /**
@@ -181,7 +181,7 @@ export type ButtonProps = Readonly<{
181
181
  [button:examples].
182
182
 
183
183
  [button:source]:
184
- https://github.com/facebook/react-native/blob/HEAD/Libraries/Components/Button.js
184
+ https://github.com/react/react-native/blob/HEAD/Libraries/Components/Button.js
185
185
 
186
186
  ```jsx
187
187
  <Button
@@ -580,7 +580,7 @@ export type AndroidTextInputNativeProps = Readonly<{
580
580
  * - `borderBottomRightRadius`
581
581
  * - `borderBottomLeftRadius`
582
582
  *
583
- * see [Issue#7070](https://github.com/facebook/react-native/issues/7070)
583
+ * see [Issue#7070](https://github.com/react/react-native/issues/7070)
584
584
  * for more detail.
585
585
  *
586
586
  * [Styles](docs/style.html)
@@ -1033,7 +1033,7 @@ type TextInputBaseProps = Readonly<{
1033
1033
  * - `borderBottomRightRadius`
1034
1034
  * - `borderBottomLeftRadius`
1035
1035
  *
1036
- * see [Issue#7070](https://github.com/facebook/react-native/issues/7070)
1036
+ * see [Issue#7070](https://github.com/react/react-native/issues/7070)
1037
1037
  * for more detail.
1038
1038
  *
1039
1039
  * [Styles](docs/style.html)
@@ -32,7 +32,7 @@ export const Touchable: {
32
32
  };
33
33
 
34
34
  /**
35
- * @see https://github.com/facebook/react-native/blob/0.34-stable\Libraries\Components\Touchable\Touchable.js
35
+ * @see https://github.com/react/react-native/blob/0.34-stable\Libraries\Components\Touchable\Touchable.js
36
36
  */
37
37
  interface TouchableMixin {
38
38
  /**
@@ -34,7 +34,7 @@ export interface AccessibilityProps
34
34
 
35
35
  /**
36
36
  * Alias for accessibilityLabel https://reactnative.dev/docs/view#accessibilitylabel
37
- * https://github.com/facebook/react-native/issues/34424
37
+ * https://github.com/react/react-native/issues/34424
38
38
  */
39
39
  'aria-label'?: string | undefined;
40
40
 
@@ -370,7 +370,7 @@ export type AccessibilityProps = Readonly<{
370
370
 
371
371
  /**
372
372
  * Alias for accessibilityLabel https://reactnative.dev/docs/view#accessibilitylabel
373
- * https://github.com/facebook/react-native/issues/34424
373
+ * https://github.com/react/react-native/issues/34424
374
374
  */
375
375
  'aria-label'?: ?Stringish,
376
376
 
@@ -28,8 +28,8 @@
28
28
  export default class ReactNativeVersion {
29
29
  static major: number = 0;
30
30
  static minor: number = 86;
31
- static patch: number = 0;
32
- static prerelease: string | null = '1';
31
+ static patch: number = 2;
32
+ static prerelease: string | null = '0';
33
33
 
34
34
  static getVersionString(): string {
35
35
  return `${this.major}.${this.minor}.${this.patch}${this.prerelease != null ? `-${this.prerelease}` : ''}`;
@@ -159,7 +159,7 @@ function _callReactNativeMicrotasksPass() {
159
159
  reactNativeMicrotasks = [];
160
160
 
161
161
  // Use for loop rather than forEach as per @vjeux's advice
162
- // https://github.com/facebook/react-native/commit/c8fd9f7588ad02d2293cac7224715f4af7b0f352#commitcomment-14570051
162
+ // https://github.com/react/react-native/commit/c8fd9f7588ad02d2293cac7224715f4af7b0f352#commitcomment-14570051
163
163
  for (let i = 0; i < passReactNativeMicrotasks.length; ++i) {
164
164
  _callTimer(passReactNativeMicrotasks[i], 0);
165
165
  }
@@ -17,6 +17,6 @@ if (navigator === undefined) {
17
17
  // $FlowExpectedError[cannot-write] The global isn't writable anywhere but here, where we define it.
18
18
  global.navigator = {product: 'ReactNative'};
19
19
  } else {
20
- // see https://github.com/facebook/react-native/issues/10881
20
+ // see https://github.com/react/react-native/issues/10881
21
21
  polyfillObjectProperty(navigator, 'product', () => 'ReactNative');
22
22
  }
@@ -20,7 +20,7 @@ export interface NativeEventSubscription {
20
20
  * Receive events from native-code
21
21
  * Deprecated - subclass NativeEventEmitter to create granular event modules instead of
22
22
  * adding all event listeners directly to RCTNativeAppEventEmitter.
23
- * @see https://github.com/facebook/react-native/blob/0.34-stable\Libraries\EventEmitter\RCTNativeAppEventEmitter.js
23
+ * @see https://github.com/react/react-native/blob/0.34-stable\Libraries\EventEmitter\RCTNativeAppEventEmitter.js
24
24
  * @see https://reactnative.dev/docs/native-modules-ios#sending-events-to-javascript
25
25
  */
26
26
  type RCTNativeAppEventEmitter = DeviceEventEmitterStatic;
@@ -8,7 +8,7 @@ require "json"
8
8
  package = JSON.parse(File.read(File.join(__dir__, "..", "..", "package.json")))
9
9
  version = package['version']
10
10
 
11
- source = { :git => 'https://github.com/facebook/react-native.git' }
11
+ source = { :git => 'https://github.com/react/react-native.git' }
12
12
  if version == '1000.0.0'
13
13
  # This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
14
14
  source[:commit] = `git rev-parse HEAD`.strip if system("git rev-parse --git-dir > /dev/null 2>&1")
@@ -8,7 +8,7 @@
8
8
  */
9
9
 
10
10
  /*
11
- * @see https://github.com/facebook/react-native/blob/master/Libraries/Image/ImageSource.js
11
+ * @see https://github.com/react/react-native/blob/master/Libraries/Image/ImageSource.js
12
12
  */
13
13
  export interface ImageURISource {
14
14
  /**
@@ -517,7 +517,7 @@ static RCTImageLoaderCancellationBlock RCTLoadImageURLFromLoader(
517
517
  // Add missing png extension
518
518
  if (request.URL.fileURL && request.URL.pathExtension.length == 0) {
519
519
  // Check if there exists a file with that url on disk already
520
- // This should fix issue https://github.com/facebook/react-native/issues/46870
520
+ // This should fix issue https://github.com/react/react-native/issues/46870
521
521
  if ([[NSFileManager defaultManager] fileExistsAtPath:request.URL.path]) {
522
522
  mutableRequest.URL = request.URL;
523
523
  } else {
@@ -8,7 +8,7 @@ require "json"
8
8
  package = JSON.parse(File.read(File.join(__dir__, "..", "..", "package.json")))
9
9
  version = package['version']
10
10
 
11
- source = { :git => 'https://github.com/facebook/react-native.git' }
11
+ source = { :git => 'https://github.com/react/react-native.git' }
12
12
  if version == '1000.0.0'
13
13
  # This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
14
14
  source[:commit] = `git rev-parse HEAD`.strip if system("git rev-parse --git-dir > /dev/null 2>&1")
@@ -117,7 +117,7 @@ const currentCentroidY = TouchHistoryMath.currentCentroidY;
117
117
  * ### Working Example
118
118
  *
119
119
  * To see it in action, try the
120
- * [PanResponder example in RNTester](https://github.com/facebook/react-native/blob/HEAD/packages/rn-tester/js/examples/PanResponder/PanResponderExample.js)
120
+ * [PanResponder example in RNTester](https://github.com/react/react-native/blob/HEAD/packages/rn-tester/js/examples/PanResponder/PanResponderExample.js)
121
121
  */
122
122
 
123
123
  export type PanResponderGestureState = {
@@ -8,7 +8,7 @@ require "json"
8
8
  package = JSON.parse(File.read(File.join(__dir__, "..", "..", "package.json")))
9
9
  version = package['version']
10
10
 
11
- source = { :git => 'https://github.com/facebook/react-native.git' }
11
+ source = { :git => 'https://github.com/react/react-native.git' }
12
12
  if version == '1000.0.0'
13
13
  # This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
14
14
  source[:commit] = `git rev-parse HEAD`.strip if system("git rev-parse --git-dir > /dev/null 2>&1")
@@ -60,8 +60,6 @@ component LogBoxButton(
60
60
  focusable={true}
61
61
  hitSlop={hitSlop}
62
62
  onPress={onPress}
63
- onPressIn={() => setPressed(true)}
64
- onPressOut={() => setPressed(false)}>
65
63
  onFocus={() => {
66
64
  setFocused(true);
67
65
  onFocusChange?.(true);
@@ -8,7 +8,7 @@ require "json"
8
8
  package = JSON.parse(File.read(File.join(__dir__, "..", "..", "package.json")))
9
9
  version = package['version']
10
10
 
11
- source = { :git => 'https://github.com/facebook/react-native.git' }
11
+ source = { :git => 'https://github.com/react/react-native.git' }
12
12
  if version == '1000.0.0'
13
13
  # This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
14
14
  source[:commit] = `git rev-parse HEAD`.strip if system("git rev-parse --git-dir > /dev/null 2>&1")
@@ -8,7 +8,7 @@ require "json"
8
8
  package = JSON.parse(File.read(File.join(__dir__, "..", "..", "package.json")))
9
9
  version = package['version']
10
10
 
11
- source = { :git => 'https://github.com/facebook/react-native.git' }
11
+ source = { :git => 'https://github.com/react/react-native.git' }
12
12
  if version == '1000.0.0'
13
13
  # This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
14
14
  source[:commit] = `git rev-parse HEAD`.strip if system("git rev-parse --git-dir > /dev/null 2>&1")
@@ -8,7 +8,7 @@ require "json"
8
8
  package = JSON.parse(File.read(File.join(__dir__, "..", "..", "package.json")))
9
9
  version = package['version']
10
10
 
11
- source = { :git => 'https://github.com/facebook/react-native.git' }
11
+ source = { :git => 'https://github.com/react/react-native.git' }
12
12
  if version == '1000.0.0'
13
13
  # This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
14
14
  source[:commit] = `git rev-parse HEAD`.strip if system("git rev-parse --git-dir > /dev/null 2>&1")
@@ -3,7 +3,7 @@
3
3
  This page describes how React and React Native versions interact each other.
4
4
  The version alignment between the two frameworks relies on two synchronization points:
5
5
 
6
- 1. The versions in the `package.json` of the new app template. For example [for React Native 0.68.1](https://github.com/facebook/react-native/blob/0.68-stable/template/package.json#L12-L15) the versions are aligned as follows:
6
+ 1. The versions in the `package.json` of the new app template. For example [for React Native 0.68.1](https://github.com/react/react-native/blob/0.68-stable/template/package.json#L12-L15) the versions are aligned as follows:
7
7
 
8
8
  ```
9
9
  "dependencies": {
@@ -12,7 +12,7 @@ The version alignment between the two frameworks relies on two synchronization p
12
12
  },
13
13
  ```
14
14
 
15
- 1. The React renderers **shipped** with React Native inside this folder, the [./Libraries/Renderer](https://github.com/facebook/react-native/tree/main/Libraries/Renderer) folder, of React Native.
15
+ 1. The React renderers **shipped** with React Native inside this folder, the [./Libraries/Renderer](https://github.com/react/react-native/tree/main/Libraries/Renderer) folder, of React Native.
16
16
 
17
17
  This practically means that you **can't bump** the version of React in your `package.json` to a later version,
18
18
  as you will still be using the older renderer from the folder mentioned above. Bumping the react version in your `package.json` will lead to unexpected behaviors.
@@ -8,7 +8,7 @@ require "json"
8
8
  package = JSON.parse(File.read(File.join(__dir__, "..", "..", "package.json")))
9
9
  version = package['version']
10
10
 
11
- source = { :git => 'https://github.com/facebook/react-native.git' }
11
+ source = { :git => 'https://github.com/react/react-native.git' }
12
12
  if version == '1000.0.0'
13
13
  # This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
14
14
  source[:commit] = `git rev-parse HEAD`.strip if system("git rev-parse --git-dir > /dev/null 2>&1")
@@ -8,7 +8,7 @@ require "json"
8
8
  package = JSON.parse(File.read(File.join(__dir__, "..", "..", "package.json")))
9
9
  version = package['version']
10
10
 
11
- source = { :git => 'https://github.com/facebook/react-native.git' }
11
+ source = { :git => 'https://github.com/react/react-native.git' }
12
12
  if version == '1000.0.0'
13
13
  # This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
14
14
  source[:commit] = `git rev-parse HEAD`.strip if system("git rev-parse --git-dir > /dev/null 2>&1")
@@ -8,7 +8,7 @@ require "json"
8
8
  package = JSON.parse(File.read(File.join(__dir__, "..", "..", "package.json")))
9
9
  version = package['version']
10
10
 
11
- source = { :git => 'https://github.com/facebook/react-native.git' }
11
+ source = { :git => 'https://github.com/react/react-native.git' }
12
12
  if version == '1000.0.0'
13
13
  # This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
14
14
  source[:commit] = `git rev-parse HEAD`.strip if system("git rev-parse --git-dir > /dev/null 2>&1")
@@ -8,7 +8,7 @@ require "json"
8
8
  package = JSON.parse(File.read(File.join(__dir__, "..", "..", "package.json")))
9
9
  version = package['version']
10
10
 
11
- source = { :git => 'https://github.com/facebook/react-native.git' }
11
+ source = { :git => 'https://github.com/react/react-native.git' }
12
12
  if version == '1000.0.0'
13
13
  # This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
14
14
  source[:commit] = `git rev-parse HEAD`.strip if system("git rev-parse --git-dir > /dev/null 2>&1")
@@ -23,7 +23,7 @@ const defineLazyObjectProperty = require('./defineLazyObjectProperty').default;
23
23
  *
24
24
  * global.XMLHttpRequest = global.originalXMLHttpRequest;
25
25
  *
26
- * @see https://github.com/facebook/react-native/issues/934
26
+ * @see https://github.com/react/react-native/issues/934
27
27
  */
28
28
  export function polyfillObjectProperty<T>(
29
29
  object: {...},
@@ -8,7 +8,7 @@ require "json"
8
8
  package = JSON.parse(File.read(File.join(__dir__, "..", "..", "package.json")))
9
9
  version = package['version']
10
10
 
11
- source = { :git => 'https://github.com/facebook/react-native.git' }
11
+ source = { :git => 'https://github.com/react/react-native.git' }
12
12
  if version == '1000.0.0'
13
13
  # This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
14
14
  source[:commit] = `git rev-parse HEAD`.strip if system("git rev-parse --git-dir > /dev/null 2>&1")
package/README-core.md CHANGED
@@ -10,7 +10,7 @@
10
10
  </p>
11
11
 
12
12
  <p align="center">
13
- <a href="https://github.com/facebook/react-native/blob/HEAD/LICENSE">
13
+ <a href="https://github.com/react/react-native/blob/HEAD/LICENSE">
14
14
  <img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="React Native is released under the MIT license." />
15
15
  </a>
16
16
  <a href="https://www.npmjs.org/package/react-native">
@@ -38,7 +38,7 @@
38
38
  <span> · </span>
39
39
  <a href="https://reactnative.dev/help">Community</a>
40
40
  <span> · </span>
41
- <a href="https://github.com/facebook/react-native/blob/HEAD/.github/SUPPORT.md">Support</a>
41
+ <a href="https://github.com/react/react-native/blob/HEAD/.github/SUPPORT.md">Support</a>
42
42
  </h3>
43
43
 
44
44
  React Native brings [**React**'s][r] declarative UI framework to iOS and Android. With React Native, you use native UI controls and have full access to the native platform.
@@ -52,7 +52,7 @@ React Native is developed and supported by many companies and individual core co
52
52
 
53
53
  [r]: https://react.dev/
54
54
  [p]: https://reactnative.dev/docs/out-of-tree-platforms
55
- [e]: https://github.com/facebook/react-native/blob/HEAD/ECOSYSTEM.md
55
+ [e]: https://github.com/react/react-native/blob/HEAD/ECOSYSTEM.md
56
56
 
57
57
  ## Contents
58
58
 
@@ -123,13 +123,13 @@ Read our [**Contributing Guide**][contribute] to learn about our development pro
123
123
 
124
124
  You can learn more about our vision for React Native in the [**Roadmap**][roadmap].
125
125
 
126
- [roadmap]: https://github.com/facebook/react-native/wiki/Roadmap
126
+ [roadmap]: https://github.com/react/react-native/wiki/Roadmap
127
127
 
128
128
  ### Good First Issues
129
129
 
130
130
  We have a list of [good first issues][gfi] that contain bugs which have a relatively limited scope. This is a great place to get started, gain experience, and get familiar with our contribution process.
131
131
 
132
- [gfi]: https://github.com/facebook/react-native/labels/good%20first%20issue
132
+ [gfi]: https://github.com/react/react-native/labels/good%20first%20issue
133
133
 
134
134
  ### Discussions
135
135
 
@@ -141,4 +141,4 @@ Larger discussions and proposals are discussed in [**@react-native-community/dis
141
141
 
142
142
  React Native is MIT licensed, as found in the [LICENSE][l] file.
143
143
 
144
- [l]: https://github.com/facebook/react-native/blob/main/LICENSE
144
+ [l]: https://github.com/react/react-native/blob/main/LICENSE
@@ -23,8 +23,8 @@ NSDictionary* RCTGetReactNativeVersion(void)
23
23
  __rnVersion = @{
24
24
  RCTVersionMajor: @(0),
25
25
  RCTVersionMinor: @(86),
26
- RCTVersionPatch: @(0),
27
- RCTVersionPrerelease: @"1",
26
+ RCTVersionPatch: @(2),
27
+ RCTVersionPrerelease: @"0",
28
28
  };
29
29
  });
30
30
  return __rnVersion;
@@ -8,7 +8,7 @@ require "json"
8
8
  package = JSON.parse(File.read(File.join(__dir__, "..", "..", "package.json")))
9
9
  version = package['version']
10
10
 
11
- source = { :git => 'https://github.com/facebook/react-native.git' }
11
+ source = { :git => 'https://github.com/react/react-native.git' }
12
12
  if version == '1000.0.0'
13
13
  # This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
14
14
  source[:commit] = `git rev-parse HEAD`.strip if system("git rev-parse --git-dir > /dev/null 2>&1")
@@ -264,7 +264,7 @@ RCTSendScrollEventForNativeAnimations_DEPRECATED(UIScrollView *scrollView, NSInt
264
264
  if (@available(iOS 14.0, *)) {
265
265
  // On iOS when Prefer Cross-Fade Transitions is enabled, the keyboard position
266
266
  // & height is reported differently (0 instead of Y position value matching height of frame)
267
- // Fixes similar issue we saw with https://github.com/facebook/react-native/pull/34503
267
+ // Fixes similar issue we saw with https://github.com/react/react-native/pull/34503
268
268
  if (UIAccessibilityPrefersCrossFadeTransitions() && keyboardEndFrame.size.height == 0) {
269
269
  newContentOffset.y = 0;
270
270
  newEdgeInsets.bottom = 0;
@@ -1274,8 +1274,20 @@ static inline UIViewAnimationOptions animationOptionsWithCurve(UIViewAnimationCu
1274
1274
  CGPoint targetContentOffset = isHorizontalSnap
1275
1275
  ? CGPointMake(targetOffset, scrollView.contentOffset.y)
1276
1276
  : CGPointMake(scrollView.contentOffset.x, targetOffset);
1277
+ // Where the focused item should snap to. We don't scroll to it here: this view's
1278
+ // scrollViewWillEndDragging:withVelocity:targetContentOffset: override sets
1279
+ // *targetContentOffset = preferredContentOffset. On tvOS the focus engine routes its
1280
+ // focus-driven scroll through that delegate, so the item snaps to this offset via the
1281
+ // engine's own scroll, even when it's already on screen. An explicit setContentOffset here
1282
+ // would just scroll a second time.
1283
+ // https://developer.apple.com/documentation/uikit/uiscrollviewdelegate/scrollviewwillenddragging(_:withvelocity:targetcontentoffset:)
1284
+ // https://developer.apple.com/forums/thread/22103?answerId=73300022#73300022
1277
1285
  self.preferredContentOffset = targetContentOffset;
1278
- [_scrollView setContentOffset:targetContentOffset animated:scrollProps.scrollAnimationEnabled];
1286
+ if (!scrollProps.scrollAnimationEnabled) {
1287
+ // Animations off: RCTEnhancedScrollView.didUpdateFocusInContext blocks the engine's
1288
+ // scroll, so the delegate never fires — set the offset directly.
1289
+ scrollView.contentOffset = targetContentOffset;
1290
+ }
1279
1291
  }
1280
1292
 
1281
1293
  - (void)didUpdateFocusInContext:(UIFocusUpdateContext *)context
@@ -771,12 +771,23 @@ static NSSet<NSNumber *> *returnKeyTypesSet;
771
771
 
772
772
  - (void)_setAttributedString:(NSAttributedString *)attributedString
773
773
  {
774
+ #if TARGET_OS_TV
775
+ // Attribute-free string prevents the tvOS keyboard from inheriting the component's small font.
776
+ if ([attributedString.string isEqualToString:_backedTextInputView.attributedText.string]) {
777
+ return;
778
+ }
779
+ #else
774
780
  if ([self _textOf:attributedString equals:_backedTextInputView.attributedText]) {
775
781
  return;
776
782
  }
783
+ #endif
777
784
  UITextRange *selectedRange = _backedTextInputView.selectedTextRange;
778
785
  NSInteger oldTextLength = _backedTextInputView.attributedText.string.length;
786
+ #if TARGET_OS_TV
787
+ _backedTextInputView.attributedText = [[NSAttributedString alloc] initWithString:attributedString.string];
788
+ #else
779
789
  _backedTextInputView.attributedText = attributedString;
790
+ #endif
780
791
  // Updating the UITextView attributedText, for example changing the lineHeight, the color or adding
781
792
  // a new paragraph with \n, causes the cursor to move to the end of the Text and scroll.
782
793
  // This is fixed by restoring the cursor position and scrolling to that position (iOS issue 652653).
@@ -801,7 +812,7 @@ static NSSet<NSNumber *> *returnKeyTypesSet;
801
812
  // Ensure that newly typed text will inherit any custom attributes. We follow the logic of RN Android, where attributes
802
813
  // to the left of the cursor are copied into new text, unless we are at the start of the field, in which case we will
803
814
  // copy the attributes from text to the right. This allows consistency between backed input and new AttributedText
804
- // https://github.com/facebook/react-native/blob/3102a58df38d96f3dacef0530e4dbb399037fcd2/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/views/text/internal/span/SetSpanOperation.kt#L30
815
+ // https://github.com/react/react-native/blob/3102a58df38d96f3dacef0530e4dbb399037fcd2/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/views/text/internal/span/SetSpanOperation.kt#L30
805
816
  - (void)_updateTypingAttributes
806
817
  {
807
818
  if (_backedTextInputView.attributedText.length > 0 && _backedTextInputView.selectedTextRange != nil) {
@@ -433,9 +433,7 @@ static BOOL RCTLayerTransformCollapsesAxis(CALayer *layer)
433
433
  float magnification = _tvParallaxProperties.magnification;
434
434
 
435
435
  if (magnification != 1.0) {
436
- [UIView animateWithDuration:0.2 animations:^{
437
436
  self.transform = CGAffineTransformScale(self.transform, magnification, magnification);
438
- }];
439
437
  }
440
438
 
441
439
  _motionEffectsAdded = YES;
@@ -447,13 +445,11 @@ static BOOL RCTLayerTransformCollapsesAxis(CALayer *layer)
447
445
  return;
448
446
  }
449
447
 
450
- [UIView animateWithDuration:0.2 animations:^{
451
- float magnification = self->_tvParallaxProperties.magnification;
452
- BOOL enabled = self->_tvParallaxProperties.enabled;
453
- if (enabled && magnification != 0.0 && magnification != 1.0) {
454
- self.transform = CGAffineTransformScale(self.transform, 1.0/magnification, 1.0/magnification);
455
- }
456
- }];
448
+ float magnification = self->_tvParallaxProperties.magnification;
449
+ BOOL enabled = self->_tvParallaxProperties.enabled;
450
+ if (enabled && magnification != 0.0 && magnification != 1.0) {
451
+ self.transform = CGAffineTransformScale(self.transform, 1.0/magnification, 1.0/magnification);
452
+ }
457
453
 
458
454
  for (UIMotionEffect *effect in [self.motionEffects copy]){
459
455
  [self removeMotionEffect:effect];
@@ -606,12 +602,12 @@ static BOOL RCTLayerTransformCollapsesAxis(CALayer *layer)
606
602
 
607
603
  - (void)didUpdateFocusInContext:(UIFocusUpdateContext *)context withAnimationCoordinator:(UIFocusAnimationCoordinator *)coordinator
608
604
  {
609
- if (context.previouslyFocusedView == context.nextFocusedView) {
605
+ if (context.previouslyFocusedItem == context.nextFocusedItem) {
610
606
  return;
611
607
  }
612
608
 
613
609
  if (_autoFocus && self.focusGuide != nil && context.previouslyFocusedItem != nil) {
614
- // Whenever focus leaves the container, `nextFocusedView` is the destination, the item outside the container.
610
+ // Whenever focus leaves the container, `nextFocusedItem` is the destination, the item outside the container.
615
611
  // So, `previouslyFocusedItem` is always the last focused child of `TVFocusGuide`.
616
612
  // We should update `preferredFocusEnvironments` in this case to make sure `FocusGuide` remembers
617
613
  // the last focused element and redirects the focus to it whenever focus comes back.
@@ -619,20 +615,20 @@ static BOOL RCTLayerTransformCollapsesAxis(CALayer *layer)
619
615
  [self handleFocusGuide];
620
616
  }
621
617
 
622
- if (context.nextFocusedView == self) {
618
+ if (context.nextFocusedItem == self) {
623
619
  [self becomeFirstResponder];
624
620
  [self enableDirectionalFocusGuides];
625
- [coordinator addCoordinatedAnimations:^(void){
626
- if (self->_eventEmitter) self->_eventEmitter->onFocus();
621
+ if (self->_eventEmitter) self->_eventEmitter->onFocus();
622
+ [coordinator addCoordinatedFocusingAnimations:^(id<UIFocusAnimationContext> _Nonnull animationContext) {
627
623
  [self addParallaxMotionEffects];
628
624
  } completion:^(void){}];
629
625
  // Without this check, onBlur would also trigger when `TVFocusGuideView` transfers focus to its children.
630
626
  // [self isTVFocusGuide] is false when autofocus and destinations are not used, so we cannot use that.
631
627
  // Generally speaking, it would happen for any non-collapsable `View`.
632
- } else if (context.previouslyFocusedView == self) {
633
- [coordinator addCoordinatedAnimations:^(void){
628
+ } else if (context.previouslyFocusedItem == self) {
629
+ if (self->_eventEmitter) self->_eventEmitter->onBlur();
630
+ [coordinator addCoordinatedUnfocusingAnimations:^(id<UIFocusAnimationContext> _Nonnull animationContext) {
634
631
  [self removeParallaxMotionEffects];
635
- if (self->_eventEmitter) self->_eventEmitter->onBlur();
636
632
  } completion:^(void){[self disableDirectionalFocusGuides];}];
637
633
  [self resignFirstResponder];
638
634
  }
@@ -11,7 +11,7 @@ require "json"
11
11
  package = JSON.parse(File.read(File.join(__dir__, "..", "package.json")))
12
12
  version = package['version']
13
13
 
14
- source = { :git => 'https://github.com/facebook/react-native.git' }
14
+ source = { :git => 'https://github.com/react/react-native.git' }
15
15
  if version == '1000.0.0'
16
16
  # This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
17
17
  source[:commit] = `git rev-parse HEAD`.strip if system("git rev-parse --git-dir > /dev/null 2>&1")
@@ -8,7 +8,7 @@ require "json"
8
8
  package = JSON.parse(File.read(File.join(__dir__, "..", "package.json")))
9
9
  version = package['version']
10
10
 
11
- source = { :git => 'https://github.com/facebook/react-native.git' }
11
+ source = { :git => 'https://github.com/react/react-native.git' }
12
12
  if version == '1000.0.0'
13
13
  # This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
14
14
  source[:commit] = `git rev-parse HEAD`.strip if system("git rev-parse --git-dir > /dev/null 2>&1")
@@ -8,7 +8,7 @@ require "json"
8
8
  package = JSON.parse(File.read(File.join(__dir__, "..", "..", "package.json")))
9
9
  version = package['version']
10
10
 
11
- source = { :git => 'https://github.com/facebook/react-native.git' }
11
+ source = { :git => 'https://github.com/react/react-native.git' }
12
12
  if version == '1000.0.0'
13
13
  # This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
14
14
  source[:commit] = `git rev-parse HEAD`.strip if system("git rev-parse --git-dir > /dev/null 2>&1")
@@ -366,7 +366,7 @@ static inline UIViewAnimationOptions animationOptionsWithCurve(UIViewAnimationCu
366
366
  if (@available(iOS 14.0, *)) {
367
367
  // On iOS when Prefer Cross-Fade Transitions is enabled, the keyboard position
368
368
  // & height is reported differently (0 instead of Y position value matching height of frame)
369
- // Fixes similar issue we saw with https://github.com/facebook/react-native/pull/34503
369
+ // Fixes similar issue we saw with https://github.com/react/react-native/pull/34503
370
370
  if (UIAccessibilityPrefersCrossFadeTransitions() && endFrame.size.height == 0) {
371
371
  newContentOffset.y = 0;
372
372
  newEdgeInsets.bottom = 0;
@@ -8,7 +8,7 @@ require "json"
8
8
  package = JSON.parse(File.read(File.join(__dir__, "package.json")))
9
9
  version = package['version']
10
10
 
11
- source = { :git => 'https://github.com/facebook/react-native.git' }
11
+ source = { :git => 'https://github.com/react/react-native.git' }
12
12
  if version == '1000.0.0'
13
13
  # This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
14
14
  source[:commit] = `git rev-parse HEAD`.strip if system("git rev-parse --git-dir > /dev/null 2>&1")
package/React.podspec CHANGED
@@ -8,7 +8,7 @@ require "json"
8
8
  package = JSON.parse(File.read(File.join(__dir__, "package.json")))
9
9
  version = package['version']
10
10
 
11
- source = { :git => 'https://github.com/facebook/react-native.git' }
11
+ source = { :git => 'https://github.com/react/react-native.git' }
12
12
  if version == '1000.0.0'
13
13
  # This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
14
14
  source[:commit] = `git rev-parse HEAD`.strip if system("git rev-parse --git-dir > /dev/null 2>&1")