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