@office-iss/react-native-win32 0.72.8 → 0.73.0-preview.2

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 (277) hide show
  1. package/.flowconfig +15 -5
  2. package/CHANGELOG.json +530 -101
  3. package/CHANGELOG.md +213 -56
  4. package/IntegrationTests/PromiseTest.js +1 -0
  5. package/IntegrationTests/websocket_integration_test_server.js +1 -1
  6. package/Libraries/Animated/Animated.js +1 -1
  7. package/Libraries/Animated/AnimatedImplementation.js +1 -1
  8. package/Libraries/Animated/NativeAnimatedHelper.js +14 -10
  9. package/Libraries/Animated/NativeAnimatedHelper.win32.js +16 -12
  10. package/Libraries/Animated/NativeAnimatedModule.js +6 -2
  11. package/Libraries/Animated/NativeAnimatedTurboModule.js +7 -4
  12. package/Libraries/Animated/animations/Animation.js +57 -3
  13. package/Libraries/Animated/animations/DecayAnimation.js +9 -0
  14. package/Libraries/Animated/animations/SpringAnimation.js +8 -0
  15. package/Libraries/Animated/animations/TimingAnimation.js +8 -0
  16. package/Libraries/Animated/components/AnimatedFlatList.js +2 -1
  17. package/Libraries/Animated/components/AnimatedScrollView.js +2 -0
  18. package/Libraries/Animated/components/AnimatedSectionList.js +2 -1
  19. package/Libraries/Animated/createAnimatedComponent.js +1 -0
  20. package/Libraries/Animated/nodes/AnimatedColor.js +1 -1
  21. package/Libraries/Animated/nodes/AnimatedObject.js +146 -0
  22. package/Libraries/Animated/nodes/AnimatedProps.js +19 -7
  23. package/Libraries/Animated/nodes/AnimatedStyle.js +29 -55
  24. package/Libraries/Animated/nodes/AnimatedValueXY.js +3 -17
  25. package/Libraries/Animated/shouldUseTurboAnimatedModule.js +17 -0
  26. package/Libraries/Animated/useAnimatedProps.js +9 -10
  27. package/Libraries/AppState/AppState.d.ts +1 -1
  28. package/Libraries/AppState/NativeAppState.js +8 -4
  29. package/Libraries/BatchedBridge/MessageQueue.js +45 -36
  30. package/Libraries/Blob/Blob.js +6 -2
  31. package/Libraries/Blob/BlobManager.js +9 -10
  32. package/Libraries/Blob/BlobRegistry.js +14 -9
  33. package/Libraries/Blob/File.js +1 -1
  34. package/Libraries/Blob/FileReader.js +1 -2
  35. package/Libraries/Components/AccessibilityInfo/AccessibilityInfo.d.ts +1 -5
  36. package/Libraries/Components/AccessibilityInfo/AccessibilityInfo.win32.js +7 -48
  37. package/Libraries/Components/Button/ButtonWin32.Props.d.ts +1 -1
  38. package/Libraries/Components/Button/ButtonWin32.Props.js.map +1 -1
  39. package/Libraries/Components/Button/ButtonWin32.d.ts +1 -1
  40. package/Libraries/Components/Button/ButtonWin32.js +1 -4
  41. package/Libraries/Components/Button/ButtonWin32.js.map +1 -1
  42. package/Libraries/Components/Clipboard/Clipboard.d.ts +4 -4
  43. package/Libraries/Components/DrawerAndroid/DrawerLayoutAndroid.android.js +3 -1
  44. package/Libraries/Components/EnterString.win32.d.ts +1 -1
  45. package/Libraries/Components/Keyboard/KeyboardAvoidingView.js +26 -6
  46. package/Libraries/Components/Pressable/Pressable.js +3 -2
  47. package/Libraries/Components/Pressable/Pressable.win32.js +4 -3
  48. package/Libraries/Components/Pressable/useAndroidRippleForView.js +1 -1
  49. package/Libraries/Components/SafeAreaView/SafeAreaView.js +7 -7
  50. package/Libraries/Components/SafeAreaView/SafeAreaView.win32.js +7 -8
  51. package/Libraries/Components/ScrollView/ScrollView.js +3 -1
  52. package/Libraries/Components/ScrollView/ScrollView.win32.js +3 -1
  53. package/Libraries/Components/ScrollView/ScrollViewStickyHeader.js +39 -46
  54. package/Libraries/Components/Switch/Switch.js +1 -0
  55. package/Libraries/Components/Text/TextWin32.d.ts +1 -1
  56. package/Libraries/Components/TextInput/RCTTextInputViewConfig.js +1 -0
  57. package/Libraries/Components/TextInput/TextInput.d.ts +49 -7
  58. package/Libraries/Components/TextInput/TextInput.flow.js +43 -10
  59. package/Libraries/Components/TextInput/TextInput.js +62 -10
  60. package/Libraries/Components/TextInput/TextInput.win32.js +953 -206
  61. package/Libraries/Components/TextInput/Win32TextInputNativeComponent.js +23 -0
  62. package/Libraries/Components/ToastAndroid/{ToastAndroid.ios.js → ToastAndroid.js} +9 -1
  63. package/Libraries/Components/ToastAndroid/ToastAndroid.win32.js +9 -1
  64. package/Libraries/Components/Touchable/Tests/TouchableWin32Test.js +2 -2
  65. package/Libraries/Components/Touchable/Tests/TouchableWin32Test.js.map +1 -1
  66. package/Libraries/Components/Touchable/TouchableBounce.js +1 -1
  67. package/Libraries/Components/Touchable/TouchableHighlight.js +1 -1
  68. package/Libraries/Components/Touchable/TouchableNativeFeedback.js +1 -1
  69. package/Libraries/Components/Touchable/TouchableOpacity.js +4 -1
  70. package/Libraries/Components/Touchable/TouchableWin32.d.ts +1 -1
  71. package/Libraries/Components/Touchable/TouchableWin32.js.map +1 -1
  72. package/Libraries/Components/Touchable/TouchableWithoutFeedback.js +1 -0
  73. package/Libraries/Components/TraceUpdateOverlay/TraceUpdateOverlay.js +16 -6
  74. package/Libraries/Components/View/ReactNativeStyleAttributes.js +9 -0
  75. package/Libraries/Components/View/ReactNativeViewAttributes.js +1 -0
  76. package/Libraries/Components/View/ReactNativeViewAttributes.win32.js +1 -0
  77. package/Libraries/Components/View/View.js +46 -32
  78. package/Libraries/Components/View/View.win32.js +37 -6
  79. package/Libraries/Components/View/ViewAccessibility.d.ts +8 -2
  80. package/Libraries/Components/View/ViewNativeComponent.js +1 -0
  81. package/Libraries/Components/View/ViewPropTypes.js +18 -3
  82. package/Libraries/Components/View/ViewPropTypes.win32.js +30 -4
  83. package/Libraries/Components/View/ViewWin32.js +3 -2
  84. package/Libraries/Core/Devtools/loadBundleFromServer.js +152 -0
  85. package/Libraries/Core/Devtools/symbolicateStackTrace.js +2 -1
  86. package/Libraries/Core/ExceptionsManager.js +16 -7
  87. package/Libraries/Core/ExtendedError.js +12 -0
  88. package/Libraries/Core/ReactNativeVersion.js +3 -3
  89. package/Libraries/Core/ReactNativeVersionCheck.js +0 -2
  90. package/Libraries/Core/ReactNativeVersionCheck.win32.js +0 -2
  91. package/Libraries/Core/__mocks__/NativeExceptionsManager.js +20 -0
  92. package/Libraries/Core/setUpDeveloperTools.js +5 -1
  93. package/Libraries/Core/setUpIntersectionObserver.js +16 -0
  94. package/Libraries/{Components/ProgressBarAndroid/ProgressBarAndroid.ios.js → Core/setUpMutationObserver.js} +6 -2
  95. package/Libraries/Core/setUpPerformance.js +6 -13
  96. package/Libraries/Core/setUpPerformanceObserver.js +16 -0
  97. package/Libraries/Core/setUpRegeneratorRuntime.js +4 -2
  98. package/Libraries/DOM/Nodes/ReactNativeElement.js +135 -18
  99. package/Libraries/DOM/Nodes/ReadOnlyCharacterData.js +72 -0
  100. package/Libraries/DOM/Nodes/ReadOnlyElement.js +209 -21
  101. package/Libraries/DOM/Nodes/ReadOnlyNode.js +206 -17
  102. package/Libraries/DOM/Nodes/ReadOnlyText.js +30 -0
  103. package/Libraries/DOM/Nodes/Utilities/Traversal.js +54 -0
  104. package/Libraries/EventEmitter/NativeEventEmitter.d.ts +0 -6
  105. package/Libraries/EventEmitter/RCTDeviceEventEmitter.js +15 -4
  106. package/Libraries/Image/Image.android.js +8 -2
  107. package/Libraries/Image/Image.d.ts +1 -1
  108. package/Libraries/Image/Image.ios.js +4 -1
  109. package/Libraries/Image/Image.win32.js +6 -3
  110. package/Libraries/Image/ImageBackground.js +3 -0
  111. package/Libraries/Image/resolveAssetSource.win32.js +1 -1
  112. package/Libraries/Inspector/DevtoolsOverlay.js +6 -3
  113. package/Libraries/Inspector/NetworkOverlay.js +2 -2
  114. package/Libraries/Interaction/JSEventLoopWatchdog.js +1 -5
  115. package/Libraries/Interaction/PanResponder.js +1 -4
  116. package/Libraries/IntersectionObserver/IntersectionObserver.js +252 -0
  117. package/Libraries/IntersectionObserver/IntersectionObserverEntry.js +140 -0
  118. package/Libraries/IntersectionObserver/IntersectionObserverManager.js +221 -0
  119. package/Libraries/IntersectionObserver/NativeIntersectionObserver.js +41 -0
  120. package/Libraries/IntersectionObserver/__mocks__/NativeIntersectionObserver.js +162 -0
  121. package/Libraries/LayoutAnimation/LayoutAnimation.js +1 -1
  122. package/Libraries/Lists/FlatList.d.ts +2 -1
  123. package/Libraries/Lists/FlatList.js +15 -5
  124. package/Libraries/Lists/SectionList.js +4 -0
  125. package/Libraries/LogBox/Data/LogBoxData.js +2 -1
  126. package/Libraries/LogBox/Data/LogBoxLog.js +4 -1
  127. package/Libraries/LogBox/Data/LogBoxSymbolication.js +5 -2
  128. package/Libraries/LogBox/Data/parseLogBoxLog.js +57 -20
  129. package/Libraries/LogBox/UI/AnsiHighlight.js +1 -1
  130. package/Libraries/LogBox/UI/LogBoxInspectorFooter.js +24 -31
  131. package/Libraries/LogBox/UI/LogBoxInspectorHeader.js +1 -1
  132. package/Libraries/LogBox/UI/LogBoxMessage.js +4 -7
  133. package/Libraries/MutationObserver/MutationObserver.js +184 -0
  134. package/Libraries/MutationObserver/MutationObserverManager.js +218 -0
  135. package/Libraries/MutationObserver/MutationRecord.js +82 -0
  136. package/Libraries/MutationObserver/NativeMutationObserver.js +58 -0
  137. package/Libraries/MutationObserver/__mocks__/NativeMutationObserver.js +327 -0
  138. package/Libraries/NativeComponent/BaseViewConfig.android.js +18 -3
  139. package/Libraries/NativeComponent/BaseViewConfig.ios.js +33 -0
  140. package/Libraries/NativeComponent/BaseViewConfig.win32.js +33 -0
  141. package/Libraries/NativeComponent/NativeComponentRegistry.js +13 -9
  142. package/Libraries/NativeModules/specs/NativeSourceCode.js +6 -6
  143. package/Libraries/Network/RCTNetworking.android.js +2 -1
  144. package/Libraries/Network/XMLHttpRequest.js +1 -1
  145. package/Libraries/NewAppScreen/components/DebugInstructions.js +4 -4
  146. package/Libraries/NewAppScreen/components/LearnMoreLinks.js +9 -2
  147. package/Libraries/Performance/QuickPerformanceLogger.js +1 -1
  148. package/Libraries/PermissionsAndroid/NativePermissionsAndroid.js +1 -0
  149. package/Libraries/PermissionsAndroid/PermissionsAndroid.d.ts +1 -0
  150. package/Libraries/PermissionsAndroid/PermissionsAndroid.js +3 -1
  151. package/Libraries/Pressability/Pressability.js +28 -3
  152. package/Libraries/Pressability/Pressability.win32.js +30 -5
  153. package/Libraries/ReactNative/AppContainer.js +2 -3
  154. package/Libraries/ReactNative/AppRegistry.d.ts +0 -5
  155. package/Libraries/ReactNative/AppRegistry.js +66 -53
  156. package/Libraries/ReactNative/BridgelessUIManager.js +38 -9
  157. package/Libraries/ReactNative/FabricUIManager.js +143 -34
  158. package/Libraries/ReactNative/I18nManager.js +5 -11
  159. package/Libraries/ReactNative/NativeI18nManager.js +7 -5
  160. package/Libraries/ReactNative/PaperUIManager.win32.js +2 -2
  161. package/Libraries/ReactNative/ReactFabricPublicInstance/ReactFabricHostComponent.js +151 -0
  162. package/Libraries/ReactNative/ReactFabricPublicInstance/ReactFabricPublicInstance.js +81 -0
  163. package/Libraries/ReactNative/ReactFabricPublicInstance/ReactNativeAttributePayload.js +492 -0
  164. package/Libraries/ReactNative/ReactFabricPublicInstance/warnForStyleProps.js +32 -0
  165. package/Libraries/ReactNative/ReactNativeFeatureFlags.js +19 -3
  166. package/Libraries/ReactNative/UIManager.js +8 -0
  167. package/Libraries/ReactNative/__mocks__/FabricUIManager.js +648 -0
  168. package/Libraries/ReactPrivate/ReactNativePrivateInterface.js +38 -2
  169. package/Libraries/Renderer/implementations/ReactFabric-dev.js +27 -27
  170. package/Libraries/Renderer/implementations/ReactFabric-prod.js +3 -3
  171. package/Libraries/Renderer/implementations/ReactFabric-profiling.js +3 -3
  172. package/Libraries/Renderer/implementations/ReactNativeRenderer-dev.js +27 -27
  173. package/Libraries/Renderer/implementations/ReactNativeRenderer-prod.js +3 -3
  174. package/Libraries/Renderer/implementations/ReactNativeRenderer-profiling.js +3 -3
  175. package/Libraries/Renderer/shims/ReactFabric.js +5 -6
  176. package/Libraries/Renderer/shims/ReactFeatureFlags.js +2 -3
  177. package/Libraries/Renderer/shims/ReactNative.js +2 -3
  178. package/Libraries/Renderer/shims/ReactNativeTypes.js +35 -17
  179. package/Libraries/Renderer/shims/ReactNativeViewConfigRegistry.js +3 -3
  180. package/Libraries/Renderer/shims/createReactNativeComponentClass.js +2 -3
  181. package/Libraries/Settings/{Settings.android.js → Settings.js} +4 -4
  182. package/Libraries/Share/Share.d.ts +3 -9
  183. package/Libraries/StyleSheet/PlatformColorValueTypes.android.js +9 -4
  184. package/Libraries/StyleSheet/PlatformColorValueTypes.ios.js +28 -13
  185. package/Libraries/StyleSheet/PlatformColorValueTypes.win32.js +14 -4
  186. package/Libraries/StyleSheet/PlatformColorValueTypesIOS.ios.js +1 -1
  187. package/Libraries/StyleSheet/PlatformColorValueTypesWin32.d.ts +1 -1
  188. package/Libraries/StyleSheet/StyleSheet.d.ts +10 -1
  189. package/Libraries/StyleSheet/StyleSheet.js +3 -0
  190. package/Libraries/StyleSheet/StyleSheet.win32.js +3 -0
  191. package/Libraries/StyleSheet/StyleSheetTypes.d.ts +31 -17
  192. package/Libraries/StyleSheet/StyleSheetTypes.js +90 -6
  193. package/Libraries/StyleSheet/flattenStyle.js +4 -0
  194. package/Libraries/StyleSheet/private/_TransformStyle.js +16 -2
  195. package/Libraries/StyleSheet/processColor.js +1 -2
  196. package/Libraries/StyleSheet/processTransformOrigin.js +136 -0
  197. package/Libraries/StyleSheet/splitLayoutProps.js +1 -0
  198. package/Libraries/Text/Text.d.ts +5 -5
  199. package/Libraries/Text/Text.js +17 -10
  200. package/Libraries/Text/Text.win32.js +354 -0
  201. package/Libraries/Text/TextProps.win32.js +281 -0
  202. package/Libraries/TurboModule/TurboModuleRegistry.js +47 -7
  203. package/Libraries/TurboModule/samples/NativeSampleTurboModule.js +6 -0
  204. package/Libraries/Types/CoreEventTypes.d.ts +5 -2
  205. package/Libraries/Utilities/GlobalPerformanceLogger.js +2 -12
  206. package/Libraries/Utilities/NativeDeviceInfo.js +8 -9
  207. package/Libraries/Utilities/NativePlatformConstantsAndroid.js +23 -18
  208. package/Libraries/Utilities/NativePlatformConstantsIOS.js +16 -13
  209. package/Libraries/Utilities/NativePlatformConstantsWin.js +13 -10
  210. package/Libraries/Utilities/PerformanceLoggerContext.js +1 -1
  211. package/Libraries/Utilities/Platform.android.js +12 -8
  212. package/Libraries/Utilities/Platform.d.ts +1 -0
  213. package/Libraries/Utilities/Platform.flow.js +84 -0
  214. package/Libraries/Utilities/Platform.flow.win32.js +111 -0
  215. package/Libraries/Utilities/Platform.ios.js +12 -8
  216. package/Libraries/Utilities/Platform.win32.js +12 -8
  217. package/Libraries/Utilities/PolyfillFunctions.js +1 -1
  218. package/Libraries/Utilities/ReactNativeTestTools.js +1 -2
  219. package/Libraries/Utilities/SceneTracker.js +1 -1
  220. package/Libraries/Utilities/createPerformanceLogger.js +63 -32
  221. package/Libraries/Utilities/useColorScheme.js +7 -8
  222. package/Libraries/WebPerformance/MemoryInfo.js +1 -1
  223. package/Libraries/WebPerformance/NativePerformance.js +3 -8
  224. package/Libraries/WebPerformance/NativePerformanceObserver.js +4 -0
  225. package/Libraries/WebPerformance/Performance.js +42 -15
  226. package/Libraries/WebPerformance/PerformanceEntry.js +14 -6
  227. package/Libraries/WebPerformance/PerformanceEventTiming.js +18 -1
  228. package/Libraries/WebPerformance/ReactNativeStartupTiming.js +40 -14
  229. package/Libraries/WebPerformance/__mocks__/NativePerformance.js +4 -2
  230. package/Libraries/WebPerformance/__mocks__/NativePerformanceObserver.js +21 -3
  231. package/Libraries/promiseRejectionTrackingOptions.js +21 -9
  232. package/Libraries/vendor/emitter/EventEmitter.js +17 -17
  233. package/flow/global.js +1 -3
  234. package/flow/jest.js +5 -1
  235. package/{Libraries/Components/DrawerAndroid/DrawerLayoutAndroid.ios.js → jest/ReactNativeInternalFeatureFlagsMock.js} +2 -1
  236. package/jest/__tests__/setup-test.js +18 -0
  237. package/jest/mockModal.js +6 -4
  238. package/jest/setup.js +61 -30
  239. package/jest.config.js +1 -1
  240. package/just-task.js +1 -0
  241. package/overrides.json +54 -60
  242. package/package.json +35 -33
  243. package/src/Libraries/Components/Button/ButtonWin32.Props.ts +1 -1
  244. package/src/Libraries/Components/Button/ButtonWin32.tsx +0 -2
  245. package/src/Libraries/Components/Touchable/Tests/TouchableWin32Test.tsx +2 -2
  246. package/src/Libraries/Components/Touchable/TouchableWin32.tsx +1 -1
  247. package/src/Libraries/Components/View/ViewAccessibility.d.ts +8 -2
  248. package/src/Libraries/StyleSheet/PlatformColorValueTypesWin32.d.ts +1 -1
  249. package/types/experimental.d.ts +44 -0
  250. package/types/index.d.ts +2 -1
  251. package/types/modules/Devtools.d.ts +1 -0
  252. package/types/modules/globals.d.ts +16 -1
  253. package/IntegrationTests/BUCK +0 -32
  254. package/IntegrationTests/PropertiesUpdateTest.js +0 -29
  255. package/IntegrationTests/RCTRootViewIntegrationTestApp.js +0 -86
  256. package/IntegrationTests/ReactContentSizeUpdateTest.js +0 -89
  257. package/IntegrationTests/SizeFlexibilityUpdateTest.js +0 -106
  258. package/Libraries/Components/AccessibilityInfo/NativeAccessibilityInfoWin32.js +0 -37
  259. package/Libraries/Components/TextInput/TextInput.Types.win32.d.ts +0 -51
  260. package/Libraries/Components/TextInput/TextInput.Types.win32.js +0 -3
  261. package/Libraries/Components/TextInput/TextInput.Types.win32.js.map +0 -1
  262. package/Libraries/Utilities/AcessibilityMapping.js +0 -154
  263. package/Libraries/Utilities/AcessibilityMapping.win32.js +0 -156
  264. package/Libraries/Utilities/NativeDevSplitBundleLoader.js +0 -19
  265. package/Libraries/Utilities/useColorScheme.win32.js +0 -26
  266. package/flow/use-sync-external-store.js +0 -20
  267. package/flow-typed/npm/base64-js_v1.x.x.js +0 -12
  268. package/flow-typed/npm/glob_v7.x.x.js +0 -79
  269. package/flow-typed/npm/pretty-format_v26.x.x.js +0 -49
  270. package/flow-typed/npm/promise_v8.x.x.js +0 -30
  271. package/flow-typed/npm/react-dom_v17.x.x.js +0 -139
  272. package/flow-typed/npm/react-test-renderer_v16.x.x.js +0 -79
  273. package/flow-typed/npm/stacktrace-parser_v0.1.x.js +0 -17
  274. package/flow-typed/npm/yargs_v17.x.x.js +0 -341
  275. package/src/Libraries/Components/AccessibilityInfo/AccessibilityInfo.d.ts +0 -161
  276. package/src/Libraries/Components/TextInput/TextInput.Types.win32.ts +0 -68
  277. /package/Libraries/{Renderer/public → ReactNative/ReactFabricPublicInstance}/ReactFabricPublicInstanceUtils.js +0 -0
package/CHANGELOG.json CHANGED
@@ -2,262 +2,691 @@
2
2
  "name": "@office-iss/react-native-win32",
3
3
  "entries": [
4
4
  {
5
- "date": "Fri, 20 Oct 2023 23:18:24 GMT",
6
- "tag": "@office-iss/react-native-win32_v0.72.8",
7
- "version": "0.72.8",
5
+ "date": "Tue, 24 Oct 2023 18:22:06 GMT",
6
+ "version": "0.73.0-preview.2",
7
+ "tag": "@office-iss/react-native-win32_v0.73.0-preview.2",
8
8
  "comments": {
9
- "patch": [
9
+ "prerelease": [
10
10
  {
11
- "author": "krsiler@microsoft.com",
11
+ "author": "tatianakapos@microsoft.com",
12
12
  "package": "@office-iss/react-native-win32",
13
- "commit": "8b51781d04b4feda89e3c3fa989b56b125d8781c",
14
- "comment": "add support for announceForAccessibilityWithOptions"
13
+ "commit": "dabdd032de98a0ab220ccc417146c073d439d87c",
14
+ "comment": "integrate 0.73-rc3"
15
15
  }
16
16
  ]
17
17
  }
18
18
  },
19
19
  {
20
- "date": "Mon, 16 Oct 2023 23:50:47 GMT",
21
- "tag": "@office-iss/react-native-win32_v0.72.7",
22
- "version": "0.72.7",
20
+ "date": "Tue, 17 Oct 2023 22:26:52 GMT",
21
+ "version": "0.73.0-preview.1",
22
+ "tag": "@office-iss/react-native-win32_v0.73.0-preview.1",
23
23
  "comments": {
24
- "patch": [
24
+ "prerelease": [
25
25
  {
26
- "author": "jthysell@microsoft.com",
26
+ "author": "tatianakapos@microsoft.com",
27
27
  "package": "@office-iss/react-native-win32",
28
- "commit": "9cf08d5f6bc6d07b1490a6ead29994a7e14ad1ef",
29
- "comment": "Integrate RN 0.72.6"
28
+ "commit": "8ce2fd840a3edc21c914a79ea76f98f013fb3530",
29
+ "comment": "Promote 0.73 to preview"
30
30
  }
31
31
  ]
32
32
  }
33
33
  },
34
34
  {
35
- "date": "Mon, 09 Oct 2023 15:13:27 GMT",
36
- "tag": "@office-iss/react-native-win32_v0.72.6",
37
- "version": "0.72.6",
35
+ "date": "Thu, 12 Oct 2023 05:15:53 GMT",
36
+ "version": "0.0.0-canary.218",
37
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.218",
38
38
  "comments": {
39
- "patch": [
39
+ "prerelease": [
40
+ {
41
+ "author": "yajurgrover24@gmail.com",
42
+ "package": "@office-iss/react-native-win32",
43
+ "commit": "1c6a83c8bc10e5369791ac8f8b52dc04f8e1474a",
44
+ "comment": "Integrate 9/25"
45
+ },
46
+ {
47
+ "author": "beachball",
48
+ "package": "@office-iss/react-native-win32",
49
+ "comment": "Bump @rnw-scripts/eslint-config to v1.2.3",
50
+ "commit": "not available"
51
+ },
52
+ {
53
+ "author": "beachball",
54
+ "package": "@office-iss/react-native-win32",
55
+ "comment": "Bump @rnw-scripts/jest-out-of-tree-snapshot-resolver to v1.1.6",
56
+ "commit": "not available"
57
+ },
58
+ {
59
+ "author": "beachball",
60
+ "package": "@office-iss/react-native-win32",
61
+ "comment": "Bump @rnw-scripts/just-task to v2.3.17",
62
+ "commit": "not available"
63
+ },
64
+ {
65
+ "author": "beachball",
66
+ "package": "@office-iss/react-native-win32",
67
+ "comment": "Bump react-native-platform-override to v1.9.16",
68
+ "commit": "not available"
69
+ }
70
+ ]
71
+ }
72
+ },
73
+ {
74
+ "date": "Fri, 06 Oct 2023 05:13:51 GMT",
75
+ "version": "0.0.0-canary.217",
76
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.217",
77
+ "comments": {
78
+ "prerelease": [
79
+ {
80
+ "author": "34109996+chiaramooney@users.noreply.github.com",
81
+ "package": "@office-iss/react-native-win32",
82
+ "commit": "4af86020f103c1fc4d9a7f9d1d33163e2c210c00",
83
+ "comment": "Integrate 9/20"
84
+ }
85
+ ]
86
+ }
87
+ },
88
+ {
89
+ "date": "Tue, 03 Oct 2023 05:13:16 GMT",
90
+ "version": "0.0.0-canary.216",
91
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.216",
92
+ "comments": {
93
+ "prerelease": [
40
94
  {
41
95
  "author": "julio.rocha@microsoft.com",
42
96
  "package": "@office-iss/react-native-win32",
43
- "commit": "2255827c0902a9740b9e029ce22f02fb445093e1",
44
- "comment": "Have RCTNetworking.win32 fork RCTNetworking.ios (#12199)"
97
+ "commit": "d64dc2a331ecda6f1df921285a0087f417950e15",
98
+ "comment": "Have RCTNetworking.win32 fork RCTNetworking.ios"
45
99
  }
46
100
  ]
47
101
  }
48
102
  },
49
103
  {
50
- "date": "Wed, 27 Sep 2023 21:02:34 GMT",
51
- "tag": "@office-iss/react-native-win32_v0.72.5",
52
- "version": "0.72.5",
104
+ "date": "Wed, 20 Sep 2023 05:17:49 GMT",
105
+ "version": "0.0.0-canary.215",
106
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.215",
53
107
  "comments": {
54
- "patch": [
108
+ "prerelease": [
55
109
  {
56
- "author": "30809111+acoates-ms@users.noreply.github.com",
110
+ "author": "34109996+chiaramooney@users.noreply.github.com",
111
+ "package": "@office-iss/react-native-win32",
112
+ "commit": "5b20e6f40a69f9fd0451b4d8426fe69b5c078537",
113
+ "comment": "Integrate 8/11"
114
+ },
115
+ {
116
+ "author": "beachball",
57
117
  "package": "@office-iss/react-native-win32",
58
- "commit": "117602962a0c8314c21805380f8cd097827deed1",
59
- "comment": "Bump react-native dependency to 0.72.5"
118
+ "comment": "Bump @rnw-scripts/just-task to v2.3.16",
119
+ "commit": "not available"
120
+ },
121
+ {
122
+ "author": "beachball",
123
+ "package": "@office-iss/react-native-win32",
124
+ "comment": "Bump react-native-platform-override to v1.9.15",
125
+ "commit": "not available"
60
126
  }
61
127
  ]
62
128
  }
63
129
  },
64
130
  {
65
- "date": "Mon, 11 Sep 2023 15:14:55 GMT",
66
- "tag": "@office-iss/react-native-win32_v0.72.4",
67
- "version": "0.72.4",
131
+ "date": "Sat, 09 Sep 2023 05:12:55 GMT",
132
+ "version": "0.0.0-canary.214",
133
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.214",
68
134
  "comments": {
69
- "patch": [
135
+ "prerelease": [
70
136
  {
71
137
  "author": "30809111+acoates-ms@users.noreply.github.com",
72
138
  "package": "@office-iss/react-native-win32",
73
- "commit": "7564111bec1b57cfc4aecc22dea06c895804be99",
139
+ "commit": "76ee94dcb458b1c8f9055f7ffaea660e546d470d",
74
140
  "comment": "Webpack assets do not prefix paths with /, which causes a lost char in asset path"
75
141
  }
76
142
  ]
77
143
  }
78
144
  },
79
145
  {
80
- "date": "Mon, 28 Aug 2023 15:14:10 GMT",
81
- "tag": "@office-iss/react-native-win32_v0.72.3",
82
- "version": "0.72.3",
146
+ "date": "Tue, 29 Aug 2023 05:13:35 GMT",
147
+ "version": "0.0.0-canary.213",
148
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.213",
83
149
  "comments": {
84
- "patch": [
150
+ "prerelease": [
151
+ {
152
+ "author": "yajurgrover@microsoft.com",
153
+ "package": "@office-iss/react-native-win32",
154
+ "commit": "ae282e6dd9a90058827d02d134892ac84bd5ab32",
155
+ "comment": "Integrate RN Nightly Build 7/28"
156
+ }
157
+ ]
158
+ }
159
+ },
160
+ {
161
+ "date": "Sat, 26 Aug 2023 05:15:06 GMT",
162
+ "version": "0.0.0-canary.212",
163
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.212",
164
+ "comments": {
165
+ "prerelease": [
166
+ {
167
+ "author": "30809111+acoates-ms@users.noreply.github.com",
168
+ "package": "@office-iss/react-native-win32",
169
+ "commit": "076a8b84f94253464743251ed5d84dcf782e0f2b",
170
+ "comment": "Remove flow usage from saveAssetPlugin codeflow"
171
+ }
172
+ ]
173
+ }
174
+ },
175
+ {
176
+ "date": "Thu, 24 Aug 2023 05:14:48 GMT",
177
+ "version": "0.0.0-canary.211",
178
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.211",
179
+ "comments": {
180
+ "prerelease": [
85
181
  {
86
182
  "author": "krsiler@microsoft.com",
87
183
  "package": "@office-iss/react-native-win32",
88
- "commit": "e1ba8c787d9d100f4919e96ab5e39d8a21aa1600",
184
+ "commit": "e6f6f3abf56445847ff3e0b57440861a58df48e0",
89
185
  "comment": "fix a11yState and add support for aria-required and -multiselectable"
90
- },
186
+ }
187
+ ]
188
+ }
189
+ },
190
+ {
191
+ "date": "Fri, 11 Aug 2023 05:13:37 GMT",
192
+ "version": "0.0.0-canary.210",
193
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.210",
194
+ "comments": {
195
+ "prerelease": [
91
196
  {
92
197
  "author": "30809111+acoates-ms@users.noreply.github.com",
93
198
  "package": "@office-iss/react-native-win32",
94
- "commit": "89c50c302edadaa79f458f3e7252971f70d7dbb1",
95
- "comment": "Remove flow usage from saveAssetPlugin codeflow"
199
+ "commit": "ecd0ad79873a263e74a41f53f42650778ddd2364",
200
+ "comment": "Add saveAssetPlugin to fix long path assets"
96
201
  }
97
202
  ]
98
203
  }
99
204
  },
100
205
  {
101
- "date": "Mon, 14 Aug 2023 15:18:19 GMT",
102
- "tag": "@office-iss/react-native-win32_v0.72.2",
103
- "version": "0.72.2",
206
+ "date": "Fri, 28 Jul 2023 05:14:51 GMT",
207
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.209",
208
+ "version": "0.0.0-canary.209",
104
209
  "comments": {
105
- "patch": [
210
+ "prerelease": [
211
+ {
212
+ "author": "34109996+chiaramooney@users.noreply.github.com",
213
+ "package": "@office-iss/react-native-win32",
214
+ "commit": "1f6d2a9ab892a5ab2ffb9652d4ee41ff6a04b2b6",
215
+ "comment": "Integrate 7/21"
216
+ },
217
+ {
218
+ "author": "beachball",
219
+ "package": "@office-iss/react-native-win32",
220
+ "comment": "Bump @rnw-scripts/just-task to v2.3.15",
221
+ "commit": "1f6d2a9ab892a5ab2ffb9652d4ee41ff6a04b2b6"
222
+ },
223
+ {
224
+ "author": "beachball",
225
+ "package": "@office-iss/react-native-win32",
226
+ "comment": "Bump react-native-platform-override to v1.9.14",
227
+ "commit": "1f6d2a9ab892a5ab2ffb9652d4ee41ff6a04b2b6"
228
+ }
229
+ ]
230
+ }
231
+ },
232
+ {
233
+ "date": "Thu, 27 Jul 2023 05:14:48 GMT",
234
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.208",
235
+ "version": "0.0.0-canary.208",
236
+ "comments": {
237
+ "prerelease": [
238
+ {
239
+ "author": "email not defined",
240
+ "package": "@office-iss/react-native-win32",
241
+ "commit": "671cd83b57f8306a23037c962d3142199d759adb",
242
+ "comment": "integrate RN Nightly 7/5/23"
243
+ }
244
+ ]
245
+ }
246
+ },
247
+ {
248
+ "date": "Wed, 26 Jul 2023 05:15:46 GMT",
249
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.207",
250
+ "version": "0.0.0-canary.207",
251
+ "comments": {
252
+ "prerelease": [
253
+ {
254
+ "author": "jthysell@microsoft.com",
255
+ "package": "@office-iss/react-native-win32",
256
+ "commit": "4880f76af3c9032afea04e74a02c86990fd0a396",
257
+ "comment": "Remove upstream react-native flow typings from repo"
258
+ },
259
+ {
260
+ "author": "beachball",
261
+ "package": "@office-iss/react-native-win32",
262
+ "comment": "Bump @rnw-scripts/just-task to v2.3.14",
263
+ "commit": "4880f76af3c9032afea04e74a02c86990fd0a396"
264
+ },
265
+ {
266
+ "author": "beachball",
267
+ "package": "@office-iss/react-native-win32",
268
+ "comment": "Bump react-native-platform-override to v1.9.13",
269
+ "commit": "4880f76af3c9032afea04e74a02c86990fd0a396"
270
+ }
271
+ ]
272
+ }
273
+ },
274
+ {
275
+ "date": "Tue, 18 Jul 2023 05:13:38 GMT",
276
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.206",
277
+ "version": "0.0.0-canary.206",
278
+ "comments": {
279
+ "prerelease": [
106
280
  {
107
281
  "author": "email not defined",
108
282
  "package": "@office-iss/react-native-win32",
109
- "commit": "3e3d2da8e1bc2899525dc48e80d86df4e32c104d",
283
+ "commit": "00d22425fbb6096003fd68550b821be712baac4d",
110
284
  "comment": "add isDefaultButton check to win32"
285
+ }
286
+ ]
287
+ }
288
+ },
289
+ {
290
+ "date": "Fri, 14 Jul 2023 05:17:04 GMT",
291
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.205",
292
+ "version": "0.0.0-canary.205",
293
+ "comments": {
294
+ "prerelease": [
295
+ {
296
+ "author": "tatianakapos@microsoft.com",
297
+ "package": "@office-iss/react-native-win32",
298
+ "commit": "4dae24722d1ea6c9c77e4ade1068aa626f4d2844",
299
+ "comment": "integration 6/28"
111
300
  },
112
301
  {
113
- "author": "30809111+acoates-ms@users.noreply.github.com",
302
+ "author": "beachball",
114
303
  "package": "@office-iss/react-native-win32",
115
- "commit": "30ecf04918029a8699096532c8b13d4ae7a4b4f3",
116
- "comment": "Add saveAssetPlugin to fix long path assets"
304
+ "comment": "Bump @rnw-scripts/eslint-config to v1.2.2",
305
+ "commit": "4dae24722d1ea6c9c77e4ade1068aa626f4d2844"
306
+ },
307
+ {
308
+ "author": "beachball",
309
+ "package": "@office-iss/react-native-win32",
310
+ "comment": "Bump @rnw-scripts/jest-out-of-tree-snapshot-resolver to v1.1.5",
311
+ "commit": "4dae24722d1ea6c9c77e4ade1068aa626f4d2844"
312
+ },
313
+ {
314
+ "author": "beachball",
315
+ "package": "@office-iss/react-native-win32",
316
+ "comment": "Bump @rnw-scripts/just-task to v2.3.13",
317
+ "commit": "4dae24722d1ea6c9c77e4ade1068aa626f4d2844"
318
+ },
319
+ {
320
+ "author": "beachball",
321
+ "package": "@office-iss/react-native-win32",
322
+ "comment": "Bump react-native-platform-override to v1.9.12",
323
+ "commit": "4dae24722d1ea6c9c77e4ade1068aa626f4d2844"
117
324
  }
118
325
  ]
119
326
  }
120
327
  },
121
328
  {
122
- "date": "Wed, 19 Jul 2023 18:43:52 GMT",
123
- "tag": "@office-iss/react-native-win32_v0.72.1",
124
- "version": "0.72.1",
329
+ "date": "Sat, 01 Jul 2023 05:14:41 GMT",
330
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.204",
331
+ "version": "0.0.0-canary.204",
125
332
  "comments": {
126
- "patch": [
333
+ "prerelease": [
127
334
  {
128
- "author": "jthysell@microsoft.com",
335
+ "author": "tatianakapos@microsoft.com",
336
+ "package": "@office-iss/react-native-win32",
337
+ "commit": "99563ff69161f1c6c699baec89c72f4b6b355224",
338
+ "comment": "integrate 6/16"
339
+ },
340
+ {
341
+ "author": "beachball",
342
+ "package": "@office-iss/react-native-win32",
343
+ "comment": "Bump @rnw-scripts/eslint-config to v1.2.1",
344
+ "commit": "99563ff69161f1c6c699baec89c72f4b6b355224"
345
+ },
346
+ {
347
+ "author": "beachball",
129
348
  "package": "@office-iss/react-native-win32",
130
- "commit": "4b90fba00c273f34d7f97df5b659892d7a92749f",
131
- "comment": "Integrate RN 0.72.3"
349
+ "comment": "Bump @rnw-scripts/jest-out-of-tree-snapshot-resolver to v1.1.4",
350
+ "commit": "99563ff69161f1c6c699baec89c72f4b6b355224"
351
+ },
352
+ {
353
+ "author": "beachball",
354
+ "package": "@office-iss/react-native-win32",
355
+ "comment": "Bump @rnw-scripts/just-task to v2.3.12",
356
+ "commit": "99563ff69161f1c6c699baec89c72f4b6b355224"
357
+ },
358
+ {
359
+ "author": "beachball",
360
+ "package": "@office-iss/react-native-win32",
361
+ "comment": "Bump react-native-platform-override to v1.9.11",
362
+ "commit": "99563ff69161f1c6c699baec89c72f4b6b355224"
132
363
  }
133
364
  ]
134
365
  }
135
366
  },
136
367
  {
137
- "date": "Fri, 23 Jun 2023 22:30:08 GMT",
138
- "tag": "@office-iss/react-native-win32_v0.72.0",
139
- "version": "0.72.0",
368
+ "date": "Wed, 21 Jun 2023 05:12:39 GMT",
369
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.203",
370
+ "version": "0.0.0-canary.203",
140
371
  "comments": {
141
- "patch": [
372
+ "none": [
142
373
  {
143
- "author": "jthysell@microsoft.com",
374
+ "author": "30809111+acoates-ms@users.noreply.github.com",
144
375
  "package": "@office-iss/react-native-win32",
145
- "commit": "dcf5d13c74acfd5fdef5169fa181c9fb175950ad",
146
- "comment": "Promote 0.72 to latest"
376
+ "commit": "8b9ab36319d57077f02990af9feb9c5ccf519c74",
377
+ "comment": "Implement aria-level, aria-posinset and aria-setsize"
147
378
  }
148
379
  ]
149
380
  }
150
381
  },
151
382
  {
152
- "date": "Fri, 23 Jun 2023 01:59:52 GMT",
153
- "tag": "@office-iss/react-native-win32_v0.72.0-preview.6",
154
- "version": "0.72.0-preview.6",
383
+ "date": "Fri, 16 Jun 2023 05:14:19 GMT",
384
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.203",
385
+ "version": "0.0.0-canary.203",
155
386
  "comments": {
156
387
  "prerelease": [
157
388
  {
158
- "author": "jthysell@microsoft.com",
389
+ "author": "30809111+acoates-ms@users.noreply.github.com",
159
390
  "package": "@office-iss/react-native-win32",
160
- "commit": "e3c569687bfc41afe75bc3d1e27a6798acf35d2a",
161
- "comment": "Integrate RN 0.72.0"
391
+ "commit": "2a1b4513ac0a894212d82aea0f0970cfbe0239a2",
392
+ "comment": "Add support for more aria props"
162
393
  }
163
394
  ]
164
395
  }
165
396
  },
166
397
  {
167
- "date": "Mon, 12 Jun 2023 15:15:26 GMT",
168
- "tag": "@office-iss/react-native-win32_v0.72.0-preview.5",
169
- "version": "0.72.0-preview.5",
398
+ "date": "Tue, 13 Jun 2023 05:15:41 GMT",
399
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.202",
400
+ "version": "0.0.0-canary.202",
401
+ "comments": {
402
+ "prerelease": [
403
+ {
404
+ "author": "beachball",
405
+ "package": "@office-iss/react-native-win32",
406
+ "comment": "Bump @rnw-scripts/eslint-config to v1.2.0",
407
+ "commit": "00ef6dfcfc2340276b2943ae6bdccae682626f2c"
408
+ },
409
+ {
410
+ "author": "beachball",
411
+ "package": "@office-iss/react-native-win32",
412
+ "comment": "Bump @rnw-scripts/jest-out-of-tree-snapshot-resolver to v1.1.3",
413
+ "commit": "00ef6dfcfc2340276b2943ae6bdccae682626f2c"
414
+ },
415
+ {
416
+ "author": "beachball",
417
+ "package": "@office-iss/react-native-win32",
418
+ "comment": "Bump react-native-platform-override to v1.9.10",
419
+ "commit": "00ef6dfcfc2340276b2943ae6bdccae682626f2c"
420
+ }
421
+ ]
422
+ }
423
+ },
424
+ {
425
+ "date": "Fri, 09 Jun 2023 05:15:17 GMT",
426
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.201",
427
+ "version": "0.0.0-canary.201",
170
428
  "comments": {
171
429
  "prerelease": [
172
430
  {
173
431
  "author": "30809111+acoates-ms@users.noreply.github.com",
174
432
  "package": "@office-iss/react-native-win32",
175
- "commit": "125bf2395bc1dbef5f2ecc4a7fea61c09fc9c190",
176
- "comment": "Export ITouchableWin32State"
433
+ "commit": "c763debec5be129b090583b03532bc109d5f0590",
434
+ "comment": "Type definition files shouldnt use win32 extension"
177
435
  },
178
436
  {
179
437
  "author": "30809111+acoates-ms@users.noreply.github.com",
180
438
  "package": "@office-iss/react-native-win32",
181
- "commit": "88732b0213ae48680de8ee55974b1b7ba9633116",
439
+ "commit": "ceda0f6453e4d09667ab4e853bb73108f756bd1b",
182
440
  "comment": "Fix various text properties not being forwarded to native"
183
- },
441
+ }
442
+ ]
443
+ }
444
+ },
445
+ {
446
+ "date": "Thu, 08 Jun 2023 05:15:28 GMT",
447
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.200",
448
+ "version": "0.0.0-canary.200",
449
+ "comments": {
450
+ "prerelease": [
184
451
  {
185
452
  "author": "30809111+acoates-ms@users.noreply.github.com",
186
453
  "package": "@office-iss/react-native-win32",
187
- "commit": "aff0d025f28f09fd0fc9d4a2d05cb32c21d82bb8",
188
- "comment": "Type definition files shouldnt use win32 extension"
454
+ "commit": "dd5d4fbc6acda601a767b8b7766292eaa35ddde7",
455
+ "comment": "Add missing eventPhase on IHandledKeyboardEvent"
189
456
  },
190
457
  {
191
458
  "author": "30809111+acoates-ms@users.noreply.github.com",
192
459
  "package": "@office-iss/react-native-win32",
193
- "commit": "d3b6a8912b0c43a7534d26b56777083672444159",
194
- "comment": "Add eventPhase to IHandledKeyboardEvent"
460
+ "commit": "7c72e3c5f310d794fa57af11a77d62679678a042",
461
+ "comment": "Export ITouchableWin32State"
195
462
  }
196
463
  ]
197
464
  }
198
465
  },
199
466
  {
200
- "date": "Mon, 22 May 2023 15:16:17 GMT",
201
- "tag": "@office-iss/react-native-win32_v0.72.0-preview.4",
202
- "version": "0.72.0-preview.4",
467
+ "date": "Wed, 07 Jun 2023 05:16:10 GMT",
468
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.199",
469
+ "version": "0.0.0-canary.199",
470
+ "comments": {
471
+ "prerelease": [
472
+ {
473
+ "author": "tatianakapos@microsoft.com",
474
+ "package": "@office-iss/react-native-win32",
475
+ "commit": "0ea8d03bb94996244a8ea2c215acb111c31ed8ce",
476
+ "comment": "integrate RN Nightly 6/1/23"
477
+ },
478
+ {
479
+ "author": "beachball",
480
+ "package": "@office-iss/react-native-win32",
481
+ "comment": "Bump @rnw-scripts/just-task to v2.3.11",
482
+ "commit": "0ea8d03bb94996244a8ea2c215acb111c31ed8ce"
483
+ },
484
+ {
485
+ "author": "beachball",
486
+ "package": "@office-iss/react-native-win32",
487
+ "comment": "Bump react-native-platform-override to v1.9.9",
488
+ "commit": "0ea8d03bb94996244a8ea2c215acb111c31ed8ce"
489
+ }
490
+ ]
491
+ }
492
+ },
493
+ {
494
+ "date": "Tue, 06 Jun 2023 19:06:43 GMT",
495
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.198",
496
+ "version": "0.0.0-canary.198",
497
+ "comments": {
498
+ "prerelease": [
499
+ {
500
+ "author": "tatianakapos@microsoft.com",
501
+ "package": "@office-iss/react-native-win32",
502
+ "commit": "0358abf96a61404b6772f16b7f2004d6af04bc3b",
503
+ "comment": "integrate RN nightly 5/19/23"
504
+ },
505
+ {
506
+ "author": "beachball",
507
+ "package": "@office-iss/react-native-win32",
508
+ "comment": "Bump @rnw-scripts/just-task to v2.3.10",
509
+ "commit": "34cd46235b77dbdc08a4d4f56f7c7d0f0abd65a4"
510
+ },
511
+ {
512
+ "author": "beachball",
513
+ "package": "@office-iss/react-native-win32",
514
+ "comment": "Bump react-native-platform-override to v1.9.8",
515
+ "commit": "34cd46235b77dbdc08a4d4f56f7c7d0f0abd65a4"
516
+ }
517
+ ]
518
+ }
519
+ },
520
+ {
521
+ "date": "Tue, 23 May 2023 05:13:44 GMT",
522
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.197",
523
+ "version": "0.0.0-canary.197",
524
+ "comments": {
525
+ "prerelease": [
526
+ {
527
+ "author": "tatianakapos@microsoft.com",
528
+ "package": "@office-iss/react-native-win32",
529
+ "commit": "47eeb713077963b7e41a80265d16bbeee568d674",
530
+ "comment": "RN integration 5/5/23"
531
+ }
532
+ ]
533
+ }
534
+ },
535
+ {
536
+ "date": "Tue, 16 May 2023 05:16:29 GMT",
537
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.196",
538
+ "version": "0.0.0-canary.196",
203
539
  "comments": {
204
540
  "prerelease": [
205
541
  {
206
542
  "author": "34109996+chiaramooney@users.noreply.github.com",
207
543
  "package": "@office-iss/react-native-win32",
208
- "commit": "1fe020c840d9e24856d7efabe16e21878f5a5b73",
209
- "comment": "Merge rc3:"
544
+ "commit": "b603bc740703e3725e21087cf26aee2b164c1307",
545
+ "comment": "Integrate 4/28"
546
+ },
547
+ {
548
+ "author": "beachball",
549
+ "package": "@office-iss/react-native-win32",
550
+ "comment": "Bump @rnw-scripts/just-task to v2.3.9",
551
+ "commit": "b603bc740703e3725e21087cf26aee2b164c1307"
552
+ },
553
+ {
554
+ "author": "beachball",
555
+ "package": "@office-iss/react-native-win32",
556
+ "comment": "Bump react-native-platform-override to v1.9.7",
557
+ "commit": "b603bc740703e3725e21087cf26aee2b164c1307"
210
558
  }
211
559
  ]
212
560
  }
213
561
  },
214
562
  {
215
- "date": "Mon, 15 May 2023 15:18:30 GMT",
216
- "tag": "@office-iss/react-native-win32_v0.72.0-preview.3",
217
- "version": "0.72.0-preview.3",
563
+ "date": "Fri, 12 May 2023 05:14:33 GMT",
564
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.195",
565
+ "version": "0.0.0-canary.195",
218
566
  "comments": {
219
567
  "prerelease": [
220
568
  {
221
569
  "author": "30809111+acoates-ms@users.noreply.github.com",
222
570
  "package": "@office-iss/react-native-win32",
223
- "commit": "f2076401425338dec2db2d115b886988ac70e57b",
571
+ "commit": "90e19f38281b3bcdd0c18029c5e79fbe44bc90f9",
224
572
  "comment": "Export additional TS types for back compat"
225
573
  }
226
574
  ]
227
575
  }
228
576
  },
229
577
  {
230
- "date": "Thu, 04 May 2023 20:58:53 GMT",
231
- "tag": "@office-iss/react-native-win32_v0.72.0-preview.2",
232
- "version": "0.72.0-preview.2",
578
+ "date": "Mon, 08 May 2023 17:41:03 GMT",
579
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.194",
580
+ "version": "0.0.0-canary.194",
233
581
  "comments": {
234
582
  "prerelease": [
235
583
  {
236
- "author": "34109996+chiaramooney@users.noreply.github.com",
584
+ "author": "jthysell@microsoft.com",
585
+ "package": "@office-iss/react-native-win32",
586
+ "commit": "fe7d786b7419fafdaf864c6769ef33555548f443",
587
+ "comment": "Fix typos and add `cspell` configuration"
588
+ },
589
+ {
590
+ "author": "beachball",
237
591
  "package": "@office-iss/react-native-win32",
238
- "commit": "24fa0f13c7523c9ab499b0d8c9514cb7dc369ad3",
239
- "comment": "Backport Node 16"
592
+ "comment": "Bump @rnw-scripts/just-task to v2.3.8",
593
+ "commit": "3024cc281f520af9a3d99244fa124aff233625d8"
240
594
  },
595
+ {
596
+ "author": "beachball",
597
+ "package": "@office-iss/react-native-win32",
598
+ "comment": "Bump react-native-platform-override to v1.9.6",
599
+ "commit": "3024cc281f520af9a3d99244fa124aff233625d8"
600
+ }
601
+ ]
602
+ }
603
+ },
604
+ {
605
+ "date": "Wed, 03 May 2023 19:30:16 GMT",
606
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.193",
607
+ "version": "0.0.0-canary.193",
608
+ "comments": {
609
+ "prerelease": [
241
610
  {
242
611
  "author": "30809111+acoates-ms@users.noreply.github.com",
243
612
  "package": "@office-iss/react-native-win32",
244
- "commit": "21a4e87e85843172b418de409bc2bd27fa273d8e",
245
- "comment": "Fix ref's on ViewWin32 (enables ViewWin32.focus() calls to work again)"
613
+ "commit": "027b991e266e5612f475dcba176a233b43e746d7",
614
+ "comment": "Simplify ViewWin32 focus, now devmain properly implements UIManger.focus"
246
615
  }
247
616
  ]
248
617
  }
249
618
  },
250
619
  {
251
- "date": "Mon, 01 May 2023 16:43:57 GMT",
252
- "tag": "@office-iss/react-native-win32_v0.72.0-preview.1",
253
- "version": "0.72.0-preview.1",
620
+ "date": "Tue, 25 Apr 2023 05:16:56 GMT",
621
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.192",
622
+ "version": "0.0.0-canary.192",
254
623
  "comments": {
255
624
  "prerelease": [
256
625
  {
257
626
  "author": "34109996+chiaramooney@users.noreply.github.com",
258
627
  "package": "@office-iss/react-native-win32",
259
- "commit": "6c01774188f98145e5dd501361321aee9dc0f0ba",
260
- "comment": "Promote 0.72 to preview"
628
+ "commit": "6a15837a441c23df1e2fb4c1257bc835a49539f2",
629
+ "comment": "Update Node to 16"
630
+ },
631
+ {
632
+ "author": "34109996+chiaramooney@users.noreply.github.com",
633
+ "package": "@office-iss/react-native-win32",
634
+ "commit": "39f99ed6163a15559a4b23ed52e27c8cddb68e94",
635
+ "comment": "Integrate 4/13"
636
+ },
637
+ {
638
+ "author": "beachball",
639
+ "package": "@office-iss/react-native-win32",
640
+ "comment": "Bump @rnw-scripts/eslint-config to v1.1.16",
641
+ "commit": "39f99ed6163a15559a4b23ed52e27c8cddb68e94"
642
+ },
643
+ {
644
+ "author": "beachball",
645
+ "package": "@office-iss/react-native-win32",
646
+ "comment": "Bump @rnw-scripts/jest-out-of-tree-snapshot-resolver to v1.1.2",
647
+ "commit": "39f99ed6163a15559a4b23ed52e27c8cddb68e94"
648
+ },
649
+ {
650
+ "author": "beachball",
651
+ "package": "@office-iss/react-native-win32",
652
+ "comment": "Bump @rnw-scripts/just-task to v2.3.7",
653
+ "commit": "39f99ed6163a15559a4b23ed52e27c8cddb68e94"
654
+ },
655
+ {
656
+ "author": "beachball",
657
+ "package": "@office-iss/react-native-win32",
658
+ "comment": "Bump react-native-platform-override to v1.9.5",
659
+ "commit": "39f99ed6163a15559a4b23ed52e27c8cddb68e94"
660
+ }
661
+ ]
662
+ }
663
+ },
664
+ {
665
+ "date": "Thu, 13 Apr 2023 05:14:28 GMT",
666
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.191",
667
+ "version": "0.0.0-canary.191",
668
+ "comments": {
669
+ "prerelease": [
670
+ {
671
+ "author": "30809111+acoates-ms@users.noreply.github.com",
672
+ "package": "@office-iss/react-native-win32",
673
+ "commit": "71ca215e58db4f6b9b79be31b1320ab4c05714f1",
674
+ "comment": "Update TextInput.win32 to align with core"
675
+ }
676
+ ]
677
+ }
678
+ },
679
+ {
680
+ "date": "Sat, 08 Apr 2023 05:13:11 GMT",
681
+ "tag": "@office-iss/react-native-win32_v0.0.0-canary.190",
682
+ "version": "0.0.0-canary.190",
683
+ "comments": {
684
+ "prerelease": [
685
+ {
686
+ "author": "tatianakapos@microsoft.com",
687
+ "package": "@office-iss/react-native-win32",
688
+ "commit": "9e4665f9f54d645c4d7f6ccce991a935ca63f156",
689
+ "comment": "integrate rn 0.0.0-20230404-2109-62c4da142"
261
690
  }
262
691
  ]
263
692
  }