@office-iss/react-native-win32 0.68.0-preview.3 → 0.69.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.
- package/.flowconfig +1 -3
- package/CHANGELOG.json +388 -22
- package/CHANGELOG.md +162 -13
- package/IntegrationTests/BUCK +4 -1
- package/Libraries/ActionSheetIOS/ActionSheetIOS.js +7 -0
- package/Libraries/ActionSheetIOS/NativeActionSheetManager.js +1 -0
- package/Libraries/Alert/Alert.win32.js +1 -1
- package/Libraries/Animated/AnimatedImplementation.js +1 -1
- package/Libraries/Animated/NativeAnimatedHelper.js +55 -9
- package/Libraries/Animated/NativeAnimatedModule.js +1 -0
- package/Libraries/Animated/NativeAnimatedTurboModule.js +1 -0
- package/Libraries/Animated/animations/TimingAnimation.js +6 -11
- package/Libraries/Animated/createAnimatedComponent.js +2 -2
- package/Libraries/Animated/nodes/AnimatedColor.js +95 -29
- package/Libraries/Animated/nodes/AnimatedInterpolation.js +19 -22
- package/Libraries/Animated/nodes/AnimatedNode.js +2 -2
- package/Libraries/Animated/nodes/AnimatedValue.js +1 -1
- package/Libraries/AppState/AppState.js +1 -1
- package/Libraries/Blob/URL.js +7 -1
- package/Libraries/Components/Button.js +3 -0
- package/Libraries/Components/DatePickerAndroid/NativeDatePickerAndroid.js +5 -0
- package/Libraries/Components/Pressable/Pressable.js +3 -3
- package/Libraries/Components/Pressable/Pressable.win32.js +3 -3
- package/Libraries/Components/ScrollView/AndroidHorizontalScrollViewNativeComponent.js +47 -38
- package/Libraries/Components/ScrollView/ScrollContentViewNativeComponent.js +15 -7
- package/Libraries/Components/ScrollView/ScrollView.js +1 -1
- package/Libraries/Components/ScrollView/ScrollViewNativeComponent.js +16 -3
- package/Libraries/Components/ScrollView/ScrollViewStickyHeader.js +3 -1
- package/Libraries/Components/Slider/Slider.js +0 -2
- package/Libraries/Components/Slider/SliderNativeComponent.js +0 -1
- package/Libraries/Components/StatusBar/StatusBar.js +6 -1
- package/Libraries/Components/Switch/Switch.js +13 -2
- package/Libraries/Components/TextInput/AndroidTextInputNativeComponent.js +114 -109
- package/Libraries/Components/TextInput/RCTMultilineTextInputNativeComponent.js +17 -9
- package/Libraries/Components/TextInput/RCTSingelineTextInputNativeComponent.js +13 -5
- package/Libraries/Components/TextInput/RCTTextInputViewConfig.js +10 -0
- package/Libraries/Components/TextInput/TextInput.js +1 -8
- package/Libraries/Components/TextInput/TextInputState.js +10 -2
- package/Libraries/Components/TextInput/TextInputState.win32.js +10 -2
- package/Libraries/Components/Touchable/Tests/TouchableWin32Test.js.map +1 -1
- package/Libraries/Components/Touchable/TouchableBounce.js +1 -0
- package/Libraries/Components/Touchable/TouchableHighlight.js +1 -0
- package/Libraries/Components/Touchable/TouchableNativeFeedback.js +1 -0
- package/Libraries/Components/Touchable/TouchableOpacity.js +7 -1
- package/Libraries/Components/Touchable/TouchableWin32.Props.d.ts +3 -1
- package/Libraries/Components/Touchable/TouchableWin32.Props.js.map +1 -1
- package/Libraries/Components/Touchable/TouchableWithoutFeedback.js +2 -0
- package/Libraries/Components/View/ReactNativeViewAttributes.js +1 -0
- package/Libraries/Components/View/ReactNativeViewAttributes.win32.js +1 -0
- package/Libraries/Components/View/View.win32.js +33 -1
- package/Libraries/Components/View/ViewNativeComponent.js +68 -8
- package/Libraries/Components/View/ViewPropTypes.js +36 -4
- package/Libraries/Components/View/ViewPropTypes.win32.js +36 -4
- package/Libraries/Components/View/ViewWin32.Props.d.ts +1 -1
- package/Libraries/Components/View/ViewWin32.Props.js.map +1 -1
- package/Libraries/Core/Devtools/parseHermesStack.js +1 -1
- package/Libraries/Core/ExceptionsManager.js +1 -1
- package/Libraries/Core/RawEventEmitter.js +38 -0
- package/Libraries/Core/ReactNativeVersion.js +2 -2
- package/Libraries/Core/polyfillPromise.js +32 -0
- package/Libraries/Core/setUpReactDevTools.js +3 -2
- package/Libraries/EventEmitter/NativeEventEmitter.js +3 -3
- package/Libraries/EventEmitter/RCTDeviceEventEmitter.js +2 -1
- package/Libraries/EventEmitter/__mocks__/NativeEventEmitter.js +3 -3
- package/Libraries/Events/CustomEvent.js +32 -0
- package/Libraries/Events/EventPolyfill.js +239 -0
- package/Libraries/Image/Image.android.js +0 -6
- package/Libraries/Image/Image.ios.js +0 -6
- package/Libraries/Image/Image.win32.js +2 -8
- package/Libraries/Image/ImageViewNativeComponent.js +18 -3
- package/Libraries/Image/TextInlineImageNativeComponent.js +23 -15
- package/Libraries/Image/resolveAssetSource.win32.js +1 -1
- package/Libraries/Inspector/Inspector.js +2 -4
- package/Libraries/Inspector/Inspector.win32.js +7 -9
- package/Libraries/Interaction/BridgeSpyStallHandler.js +4 -3
- package/Libraries/Interaction/InteractionManager.js +1 -12
- package/Libraries/Interaction/TaskQueue.js +5 -4
- package/Libraries/LayoutAnimation/LayoutAnimation.js +13 -0
- package/Libraries/Linking/Linking.js +1 -1
- package/Libraries/Lists/FlatList.js +27 -6
- package/Libraries/Lists/VirtualizedList.js +71 -55
- package/Libraries/Lists/VirtualizedListContext.js +7 -3
- package/Libraries/Lists/VirtualizedSectionList.js +2 -2
- package/Libraries/Lists/__tests__/{FillRateHelper-test.windows.js → FillRateHelper-test.js} +2 -2
- package/Libraries/Lists/__tests__/{FlatList-test.windows.js → FlatList-test.js} +2 -2
- package/Libraries/Lists/__tests__/{SectionList-test.windows.js → SectionList-test.js} +14 -14
- package/Libraries/Lists/__tests__/{VirtualizeUtils-test.windows.js → VirtualizeUtils-test.js} +3 -3
- package/Libraries/Lists/__tests__/{VirtualizedList-test.windows.js → VirtualizedList-test.js} +92 -43
- package/Libraries/Lists/__tests__/{VirtualizedSectionList-test.windows.js → VirtualizedSectionList-test.js} +16 -14
- package/Libraries/LogBox/Data/LogBoxData.js +2 -2
- package/Libraries/LogBox/Data/LogBoxLog.js +1 -1
- package/Libraries/LogBox/Data/LogBoxSymbolication.js +1 -1
- package/Libraries/LogBox/Data/parseLogBoxLog.js +1 -1
- package/Libraries/LogBox/LogBox.js +2 -21
- package/Libraries/LogBox/UI/LogBoxInspectorFooter.js +1 -0
- package/Libraries/LogBox/UI/LogBoxInspectorHeader.js +2 -1
- package/Libraries/NativeComponent/BaseViewConfig.android.js +295 -0
- package/Libraries/NativeComponent/BaseViewConfig.ios.js +333 -0
- package/Libraries/NativeComponent/BaseViewConfig.win32.js +334 -0
- package/Libraries/NativeComponent/NativeComponentRegistry.js +0 -2
- package/Libraries/NativeComponent/PlatformBaseViewConfig.js +24 -0
- package/Libraries/NativeComponent/StaticViewConfigValidator.js +7 -42
- package/Libraries/NativeComponent/ViewConfig.js +4 -4
- package/Libraries/NativeComponent/ViewConfigIgnore.js +54 -0
- package/Libraries/Network/FormData.js +7 -1
- package/Libraries/Network/RCTNetworking.win32.js +1 -1
- package/Libraries/Pressability/Pressability.js +115 -46
- package/Libraries/Pressability/Pressability.win32.js +174 -69
- package/Libraries/Pressability/PressabilityDebug.js +5 -9
- package/Libraries/PushNotificationIOS/NativePushNotificationManagerIOS.js +1 -0
- package/Libraries/ReactNative/AppContainer.js +1 -1
- package/Libraries/ReactNative/{DummyUIManager.js → BridgelessUIManager.js} +62 -40
- package/Libraries/ReactNative/PaperUIManager.win32.js +5 -5
- package/Libraries/ReactNative/ReactNativeFeatureFlags.js +39 -0
- package/Libraries/ReactNative/UIManager.js +2 -3
- package/Libraries/ReactNative/renderApplication.js +4 -0
- package/Libraries/ReactPrivate/ReactNativePrivateInterface.js +8 -0
- package/Libraries/Renderer/implementations/ReactFabric-dev.js +5908 -4906
- package/Libraries/Renderer/implementations/ReactFabric-prod.js +2100 -1918
- package/Libraries/Renderer/implementations/ReactFabric-profiling.js +2567 -2352
- package/Libraries/Renderer/implementations/ReactNativeRenderer-dev.js +5610 -4844
- package/Libraries/Renderer/implementations/ReactNativeRenderer-prod.js +1710 -1556
- package/Libraries/Renderer/implementations/ReactNativeRenderer-profiling.js +1830 -1639
- package/Libraries/Renderer/shims/ReactNativeTypes.js +2 -1
- package/Libraries/Renderer/shims/ReactNativeViewConfigRegistry.js +2 -1
- package/Libraries/StyleSheet/EdgeInsetsPropType.js +4 -1
- package/Libraries/StyleSheet/StyleSheetTypes.js +59 -66
- package/Libraries/StyleSheet/normalizeColor.js +1 -1
- package/Libraries/StyleSheet/private/_StyleSheetTypesOverrides.js +15 -0
- package/Libraries/StyleSheet/private/_TransformStyle.js +53 -0
- package/Libraries/Text/Text.js +13 -7
- package/Libraries/Text/TextNativeComponent.js +2 -0
- package/Libraries/Text/TextNativeComponent.win32.js +2 -0
- package/Libraries/Text/TextProps.js +10 -0
- package/Libraries/Types/CoreEventTypes.js +13 -1
- package/Libraries/Types/CoreEventTypes.win32.js +26 -1
- package/Libraries/Utilities/Appearance.js +0 -8
- package/Libraries/Utilities/HMRClient.js +1 -1
- package/Libraries/Utilities/ReactNativeTestTools.js +1 -0
- package/Libraries/Utilities/codegenNativeComponent.js +17 -6
- package/Libraries/Utilities/stringifySafe.js +4 -1
- package/Libraries/Utilities/verifyComponentAttributeEquivalence.js +3 -3
- package/Libraries/WebSocket/WebSocket.js +1 -1
- package/Libraries/vendor/emitter/_EmitterSubscription.js +1 -1
- package/Libraries/vendor/emitter/_EventEmitter.js +1 -1
- package/Libraries/vendor/emitter/_EventSubscription.js +1 -1
- package/index.js +30 -25
- package/index.win32.js +30 -25
- package/jest/preprocessor.js +24 -107
- package/jest/preprocessor_DO_NOT_USE.js +122 -0
- package/metro.config.js +3 -47
- package/overrides.json +39 -46
- package/package.json +28 -27
- package/rntypes/index.d.ts +19 -7
- package/src/Libraries/Components/Touchable/Tests/TouchableWin32Test.tsx +1 -1
- package/src/Libraries/Components/Touchable/TouchableWin32.Props.tsx +3 -1
- package/src/Libraries/Components/View/ViewWin32.Props.ts +1 -0
- package/src/Libraries/Lists/__tests__/__snapshots__/FlatList-test.js.snap +427 -0
- package/src/Libraries/Lists/__tests__/__snapshots__/SectionList-test.js.snap +391 -0
- package/src/Libraries/Lists/__tests__/__snapshots__/VirtualizeUtils-test.js.snap +3 -0
- package/src/Libraries/Lists/__tests__/__snapshots__/VirtualizedList-test.js.snap +4565 -0
- package/src/Libraries/Lists/__tests__/__snapshots__/VirtualizedSectionList-test.js.snap +1153 -0
- package/src/rntypes/index.d.ts +19 -7
- package/typings-index.js +5 -1
- package/typings-index.js.map +1 -1
- package/Libraries/Components/SegmentedControlIOS/RCTSegmentedControlNativeComponent.js +0 -44
- package/Libraries/Components/SegmentedControlIOS/SegmentedControlIOS.android.js +0 -45
- package/Libraries/Components/SegmentedControlIOS/SegmentedControlIOS.ios.js +0 -123
- package/Libraries/Components/SegmentedControlIOS/SegmentedControlIOS.js +0 -45
- package/Libraries/Components/View/ReactNativeViewViewConfig.js +0 -360
- package/Libraries/Components/View/ReactNativeViewViewConfig.win32.js +0 -401
- package/Libraries/Components/View/ReactNativeViewViewConfigAndroid.js +0 -83
- package/Libraries/ReactNative/UIManagerInjection.js +0 -15
- package/Libraries/Renderer/implementations/ReactFabric-dev.fb.js +0 -24527
- package/Libraries/Renderer/implementations/ReactFabric-prod.fb.js +0 -8309
- package/Libraries/Renderer/implementations/ReactFabric-profiling.fb.js +0 -8961
- package/Libraries/Renderer/implementations/ReactNativeRenderer-dev.fb.js +0 -24948
- package/Libraries/Renderer/implementations/ReactNativeRenderer-prod.fb.js +0 -8400
- package/Libraries/Renderer/implementations/ReactNativeRenderer-profiling.fb.js +0 -9049
- package/flow/Promise.js +0 -47
package/.flowconfig
CHANGED
|
@@ -16,7 +16,6 @@
|
|
|
16
16
|
<PROJECT_ROOT>/Libraries/Components/TextInput/TextInputState.js
|
|
17
17
|
<PROJECT_ROOT>/Libraries/Components/Touchable/TouchableNativeFeedback.js
|
|
18
18
|
<PROJECT_ROOT>/Libraries/Components/View/ReactNativeViewAttributes.js
|
|
19
|
-
<PROJECT_ROOT>/Libraries/Components/View/ReactNativeViewViewConfig.js
|
|
20
19
|
<PROJECT_ROOT>/Libraries/Components/View/View.js
|
|
21
20
|
<PROJECT_ROOT>/Libraries/Components/View/ViewPropTypes.js
|
|
22
21
|
<PROJECT_ROOT>/Libraries/Image/Image.js
|
|
@@ -110,7 +109,6 @@ nonstrict-import=warn
|
|
|
110
109
|
deprecated-type=error
|
|
111
110
|
unsafe-getters-setters=warn
|
|
112
111
|
unnecessary-invariant=warn
|
|
113
|
-
signature-verification-failure=warn
|
|
114
112
|
|
|
115
113
|
[strict]
|
|
116
114
|
deprecated-type
|
|
@@ -122,4 +120,4 @@ untyped-import
|
|
|
122
120
|
untyped-type-import
|
|
123
121
|
|
|
124
122
|
[version]
|
|
125
|
-
^0.
|
|
123
|
+
^0.176.3
|
package/CHANGELOG.json
CHANGED
|
@@ -2,64 +2,430 @@
|
|
|
2
2
|
"name": "@office-iss/react-native-win32",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "Mon,
|
|
6
|
-
"tag": "@office-iss/react-native-win32_v0.
|
|
7
|
-
"version": "0.
|
|
5
|
+
"date": "Mon, 16 May 2022 15:08:41 GMT",
|
|
6
|
+
"tag": "@office-iss/react-native-win32_v0.69.0-preview.2",
|
|
7
|
+
"version": "0.69.0-preview.2",
|
|
8
|
+
"comments": {
|
|
9
|
+
"prerelease": [
|
|
10
|
+
{
|
|
11
|
+
"author": "jthysell@microsoft.com",
|
|
12
|
+
"package": "@office-iss/react-native-win32",
|
|
13
|
+
"commit": "70ed2cf44501f1ac1951638154915bc14f073406",
|
|
14
|
+
"comment": "Upgrade to @react-native-community/cli@8.0.0-alpha.6"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"date": "Wed, 04 May 2022 23:30:22 GMT",
|
|
21
|
+
"tag": "@office-iss/react-native-win32_v0.69.0-preview.1",
|
|
22
|
+
"version": "0.69.0-preview.1",
|
|
23
|
+
"comments": {
|
|
24
|
+
"prerelease": [
|
|
25
|
+
{
|
|
26
|
+
"author": "jthysell@microsoft.com",
|
|
27
|
+
"package": "@office-iss/react-native-win32",
|
|
28
|
+
"commit": "460c63a1d225ae27c0ca64a4ef0d21ea477e546b",
|
|
29
|
+
"comment": "Promote 0.69 to preview"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"author": "beachball",
|
|
33
|
+
"package": "@office-iss/react-native-win32",
|
|
34
|
+
"comment": "Bump @react-native-windows/virtualized-list to v0.69.0-preview.1",
|
|
35
|
+
"commit": "4ec3e5663977bb8a0079f362fd35e21cf39dc636"
|
|
36
|
+
}
|
|
37
|
+
]
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"date": "Mon, 02 May 2022 21:26:42 GMT",
|
|
42
|
+
"tag": "@office-iss/react-native-win32_v0.0.0-canary.148",
|
|
43
|
+
"version": "0.0.0-canary.148",
|
|
8
44
|
"comments": {
|
|
9
45
|
"prerelease": [
|
|
10
46
|
{
|
|
11
47
|
"author": "34109996+chiaramooney@users.noreply.github.com",
|
|
12
48
|
"package": "@office-iss/react-native-win32",
|
|
13
|
-
"commit": "
|
|
14
|
-
"comment": "
|
|
49
|
+
"commit": "a54f8ccd6ad0a78815e8b89d5027a494e6614647",
|
|
50
|
+
"comment": "Implement no-hide-accessibility"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"author": "patboyd@microsoft.com",
|
|
54
|
+
"package": "@office-iss/react-native-win32",
|
|
55
|
+
"commit": "c5a5ce42968a5b33563a29770b0d71b3f668d7c3",
|
|
56
|
+
"comment": "Add ListItem as an accessibilityRole type and add a List, ListItem, ControllerFor test example"
|
|
57
|
+
}
|
|
58
|
+
]
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"date": "Wed, 27 Apr 2022 05:10:23 GMT",
|
|
63
|
+
"tag": "@office-iss/react-native-win32_v0.0.0-canary.147",
|
|
64
|
+
"version": "0.0.0-canary.147",
|
|
65
|
+
"comments": {
|
|
66
|
+
"prerelease": [
|
|
67
|
+
{
|
|
68
|
+
"author": "34109996+chiaramooney@users.noreply.github.com",
|
|
69
|
+
"package": "@office-iss/react-native-win32",
|
|
70
|
+
"commit": "b8d87e27ee194a45dd6895048a2e40d4cbb9db1b",
|
|
71
|
+
"comment": "Integrate 4/15 Test"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"author": "beachball",
|
|
75
|
+
"package": "@office-iss/react-native-win32",
|
|
76
|
+
"comment": "Bump @react-native-windows/virtualized-list to v0.0.0-canary.41",
|
|
77
|
+
"commit": "b8d87e27ee194a45dd6895048a2e40d4cbb9db1b"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"author": "beachball",
|
|
81
|
+
"package": "@office-iss/react-native-win32",
|
|
82
|
+
"comment": "Bump @rnw-scripts/eslint-config to v1.1.12",
|
|
83
|
+
"commit": "b8d87e27ee194a45dd6895048a2e40d4cbb9db1b"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"author": "beachball",
|
|
87
|
+
"package": "@office-iss/react-native-win32",
|
|
88
|
+
"comment": "Bump @rnw-scripts/jest-out-of-tree-snapshot-resolver to v1.0.6",
|
|
89
|
+
"commit": "b8d87e27ee194a45dd6895048a2e40d4cbb9db1b"
|
|
15
90
|
},
|
|
16
91
|
{
|
|
17
92
|
"author": "beachball",
|
|
18
93
|
"package": "@office-iss/react-native-win32",
|
|
19
|
-
"comment": "Bump
|
|
20
|
-
"commit": "
|
|
94
|
+
"comment": "Bump react-native-platform-override to v1.6.11",
|
|
95
|
+
"commit": "b8d87e27ee194a45dd6895048a2e40d4cbb9db1b"
|
|
21
96
|
}
|
|
22
97
|
]
|
|
23
98
|
}
|
|
24
99
|
},
|
|
25
100
|
{
|
|
26
|
-
"date": "
|
|
27
|
-
"tag": "@office-iss/react-native-win32_v0.
|
|
28
|
-
"version": "0.
|
|
101
|
+
"date": "Thu, 21 Apr 2022 05:09:33 GMT",
|
|
102
|
+
"tag": "@office-iss/react-native-win32_v0.0.0-canary.146",
|
|
103
|
+
"version": "0.0.0-canary.146",
|
|
29
104
|
"comments": {
|
|
30
105
|
"prerelease": [
|
|
31
106
|
{
|
|
32
|
-
"author": "
|
|
107
|
+
"author": "beachball",
|
|
108
|
+
"package": "@office-iss/react-native-win32",
|
|
109
|
+
"comment": "Bump @react-native-windows/virtualized-list to v0.0.0-canary.40",
|
|
110
|
+
"commit": "cee6f05fac576b0380d16d1dade68e0bbd1ce572"
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"author": "beachball",
|
|
114
|
+
"package": "@office-iss/react-native-win32",
|
|
115
|
+
"comment": "Bump react-native-platform-override to v1.6.10",
|
|
116
|
+
"commit": "cee6f05fac576b0380d16d1dade68e0bbd1ce572"
|
|
117
|
+
}
|
|
118
|
+
]
|
|
119
|
+
}
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"date": "Thu, 14 Apr 2022 05:09:19 GMT",
|
|
123
|
+
"tag": "@office-iss/react-native-win32_v0.0.0-canary.145",
|
|
124
|
+
"version": "0.0.0-canary.145",
|
|
125
|
+
"comments": {
|
|
126
|
+
"prerelease": [
|
|
127
|
+
{
|
|
128
|
+
"author": "34109996+chiaramooney@users.noreply.github.com",
|
|
129
|
+
"package": "@office-iss/react-native-win32",
|
|
130
|
+
"commit": "2777d696c740f663f8f35191cda5d99cb251af48",
|
|
131
|
+
"comment": "Integrate RN Nightly Build 4/11"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"author": "beachball",
|
|
135
|
+
"package": "@office-iss/react-native-win32",
|
|
136
|
+
"comment": "Bump @react-native-windows/virtualized-list to v0.0.0-canary.39",
|
|
137
|
+
"commit": "2e771eea4e5bbe3b3a812ce426215f8084fcb535"
|
|
138
|
+
}
|
|
139
|
+
]
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"date": "Tue, 12 Apr 2022 05:10:37 GMT",
|
|
144
|
+
"tag": "@office-iss/react-native-win32_v0.0.0-canary.144",
|
|
145
|
+
"version": "0.0.0-canary.144",
|
|
146
|
+
"comments": {
|
|
147
|
+
"prerelease": [
|
|
148
|
+
{
|
|
149
|
+
"author": "34109996+chiaramooney@users.noreply.github.com",
|
|
150
|
+
"package": "@office-iss/react-native-win32",
|
|
151
|
+
"commit": "938b09653f9bf9b089a36caa184204658f15f114",
|
|
152
|
+
"comment": "Fix Overrides"
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"author": "beachball",
|
|
156
|
+
"package": "@office-iss/react-native-win32",
|
|
157
|
+
"comment": "Bump @react-native-windows/virtualized-list to v0.0.0-canary.38",
|
|
158
|
+
"commit": "938b09653f9bf9b089a36caa184204658f15f114"
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"author": "beachball",
|
|
162
|
+
"package": "@office-iss/react-native-win32",
|
|
163
|
+
"comment": "Bump react-native-platform-override to v1.6.9",
|
|
164
|
+
"commit": "938b09653f9bf9b089a36caa184204658f15f114"
|
|
165
|
+
}
|
|
166
|
+
]
|
|
167
|
+
}
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"date": "Sat, 09 Apr 2022 05:10:10 GMT",
|
|
171
|
+
"tag": "@office-iss/react-native-win32_v0.0.0-canary.143",
|
|
172
|
+
"version": "0.0.0-canary.143",
|
|
173
|
+
"comments": {
|
|
174
|
+
"prerelease": [
|
|
175
|
+
{
|
|
176
|
+
"author": "email not defined",
|
|
177
|
+
"package": "@office-iss/react-native-win32",
|
|
178
|
+
"commit": "69f4432924079c65c25d29b3a43e34b1e871a61c",
|
|
179
|
+
"comment": "integrate 4/4"
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"author": "beachball",
|
|
183
|
+
"package": "@office-iss/react-native-win32",
|
|
184
|
+
"comment": "Bump @react-native-windows/virtualized-list to v0.0.0-canary.37",
|
|
185
|
+
"commit": "66ca5ce8b0dad82b3008e283903ce2816840ce5d"
|
|
186
|
+
}
|
|
187
|
+
]
|
|
188
|
+
}
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"date": "Tue, 05 Apr 2022 05:10:13 GMT",
|
|
192
|
+
"tag": "@office-iss/react-native-win32_v0.0.0-canary.142",
|
|
193
|
+
"version": "0.0.0-canary.142",
|
|
194
|
+
"comments": {
|
|
195
|
+
"prerelease": [
|
|
196
|
+
{
|
|
197
|
+
"author": "beachball",
|
|
198
|
+
"package": "@office-iss/react-native-win32",
|
|
199
|
+
"comment": "Bump @react-native-windows/virtualized-list to v0.0.0-canary.36",
|
|
200
|
+
"commit": "02e23ab160f96d0960988a4d28e83f1e6ce3a0d3"
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"author": "beachball",
|
|
204
|
+
"package": "@office-iss/react-native-win32",
|
|
205
|
+
"comment": "Bump react-native-platform-override to v1.6.8",
|
|
206
|
+
"commit": "02e23ab160f96d0960988a4d28e83f1e6ce3a0d3"
|
|
207
|
+
}
|
|
208
|
+
]
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"date": "Fri, 01 Apr 2022 05:09:58 GMT",
|
|
213
|
+
"tag": "@office-iss/react-native-win32_v0.0.0-canary.141",
|
|
214
|
+
"version": "0.0.0-canary.141",
|
|
215
|
+
"comments": {
|
|
216
|
+
"prerelease": [
|
|
217
|
+
{
|
|
218
|
+
"author": "beachball",
|
|
219
|
+
"package": "@office-iss/react-native-win32",
|
|
220
|
+
"comment": "Bump @react-native-windows/virtualized-list to v0.0.0-canary.35",
|
|
221
|
+
"commit": "bf81027650625e9e44610f192e194fee8559f605"
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"author": "beachball",
|
|
225
|
+
"package": "@office-iss/react-native-win32",
|
|
226
|
+
"comment": "Bump react-native-platform-override to v1.6.7",
|
|
227
|
+
"commit": "bf81027650625e9e44610f192e194fee8559f605"
|
|
228
|
+
}
|
|
229
|
+
]
|
|
230
|
+
}
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"date": "Thu, 31 Mar 2022 05:10:18 GMT",
|
|
234
|
+
"tag": "@office-iss/react-native-win32_v0.0.0-canary.140",
|
|
235
|
+
"version": "0.0.0-canary.140",
|
|
236
|
+
"comments": {
|
|
237
|
+
"prerelease": [
|
|
238
|
+
{
|
|
239
|
+
"author": "34109996+chiaramooney@users.noreply.github.com",
|
|
240
|
+
"package": "@office-iss/react-native-win32",
|
|
241
|
+
"commit": "040176bfc09ef4b3d914b447ee151f94da0452ee",
|
|
242
|
+
"comment": "Integrate 3/11"
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"author": "beachball",
|
|
246
|
+
"package": "@office-iss/react-native-win32",
|
|
247
|
+
"comment": "Bump @react-native-windows/virtualized-list to v0.0.0-canary.34",
|
|
248
|
+
"commit": "c42f0dd251c1d4db3efd790ba08e25a4b2e84174"
|
|
249
|
+
}
|
|
250
|
+
]
|
|
251
|
+
}
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
"date": "Tue, 29 Mar 2022 05:09:49 GMT",
|
|
255
|
+
"tag": "@office-iss/react-native-win32_v0.0.0-canary.139",
|
|
256
|
+
"version": "0.0.0-canary.139",
|
|
257
|
+
"comments": {
|
|
258
|
+
"prerelease": [
|
|
259
|
+
{
|
|
260
|
+
"author": "34109996+chiaramooney@users.noreply.github.com",
|
|
261
|
+
"package": "@office-iss/react-native-win32",
|
|
262
|
+
"commit": "b0dbc51d8ac6add9172891a5ab97a68eec9b979a",
|
|
263
|
+
"comment": "Integrate 3/11"
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
"author": "beachball",
|
|
267
|
+
"package": "@office-iss/react-native-win32",
|
|
268
|
+
"comment": "Bump @react-native-windows/virtualized-list to v0.0.0-canary.33",
|
|
269
|
+
"commit": "b0dbc51d8ac6add9172891a5ab97a68eec9b979a"
|
|
270
|
+
}
|
|
271
|
+
]
|
|
272
|
+
}
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"date": "Thu, 17 Mar 2022 05:09:18 GMT",
|
|
276
|
+
"tag": "@office-iss/react-native-win32_v0.0.0-canary.138",
|
|
277
|
+
"version": "0.0.0-canary.138",
|
|
278
|
+
"comments": {
|
|
279
|
+
"prerelease": [
|
|
280
|
+
{
|
|
281
|
+
"author": "email not defined",
|
|
282
|
+
"package": "@office-iss/react-native-win32",
|
|
283
|
+
"commit": "26b1a72c753692d07739027984a74ca35b2c2205",
|
|
284
|
+
"comment": "integrates 2/27/22"
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
"author": "beachball",
|
|
288
|
+
"package": "@office-iss/react-native-win32",
|
|
289
|
+
"comment": "Bump @react-native-windows/virtualized-list to v0.0.0-canary.32",
|
|
290
|
+
"commit": "26b1a72c753692d07739027984a74ca35b2c2205"
|
|
291
|
+
}
|
|
292
|
+
]
|
|
293
|
+
}
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
"date": "Wed, 09 Mar 2022 06:09:07 GMT",
|
|
297
|
+
"tag": "@office-iss/react-native-win32_v0.0.0-canary.137",
|
|
298
|
+
"version": "0.0.0-canary.137",
|
|
299
|
+
"comments": {
|
|
300
|
+
"prerelease": [
|
|
301
|
+
{
|
|
302
|
+
"author": "53799235+ZihanChen-MSFT@users.noreply.github.com",
|
|
303
|
+
"package": "@office-iss/react-native-win32",
|
|
304
|
+
"commit": "afb7e6c78ac73d700c7369d6f514c34b1b464985",
|
|
305
|
+
"comment": "Upgrade @types/react-native"
|
|
306
|
+
}
|
|
307
|
+
]
|
|
308
|
+
}
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"date": "Sat, 05 Mar 2022 06:08:58 GMT",
|
|
312
|
+
"tag": "@office-iss/react-native-win32_v0.0.0-canary.136",
|
|
313
|
+
"version": "0.0.0-canary.136",
|
|
314
|
+
"comments": {
|
|
315
|
+
"prerelease": [
|
|
316
|
+
{
|
|
317
|
+
"author": "email not defined",
|
|
33
318
|
"package": "@office-iss/react-native-win32",
|
|
34
|
-
"commit": "
|
|
35
|
-
"comment": "
|
|
319
|
+
"commit": "f9160f690118754fc9e788aced5c51376513617d",
|
|
320
|
+
"comment": "integrate 2/13/2022 Nightly RN Build"
|
|
36
321
|
},
|
|
37
322
|
{
|
|
38
323
|
"author": "beachball",
|
|
39
324
|
"package": "@office-iss/react-native-win32",
|
|
40
|
-
"comment": "Bump @react-native-windows/virtualized-list to v0.
|
|
41
|
-
"commit": "
|
|
325
|
+
"comment": "Bump @react-native-windows/virtualized-list to v0.0.0-canary.31",
|
|
326
|
+
"commit": "95638afb58acf9bdb662a72c945ee8f0f2b6a72a"
|
|
327
|
+
}
|
|
328
|
+
]
|
|
329
|
+
}
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"date": "Sun, 13 Feb 2022 06:08:34 GMT",
|
|
333
|
+
"tag": "@office-iss/react-native-win32_v0.0.0-canary.135",
|
|
334
|
+
"version": "0.0.0-canary.135",
|
|
335
|
+
"comments": {
|
|
336
|
+
"prerelease": [
|
|
337
|
+
{
|
|
338
|
+
"author": "beachball",
|
|
339
|
+
"package": "@office-iss/react-native-win32",
|
|
340
|
+
"comment": "Bump @react-native-windows/virtualized-list to v0.0.0-canary.30",
|
|
341
|
+
"commit": "dfc6ca9c55b67a3d2186884d0e1110c6d4690a97"
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"author": "beachball",
|
|
345
|
+
"package": "@office-iss/react-native-win32",
|
|
346
|
+
"comment": "Bump react-native-platform-override to v1.6.6",
|
|
347
|
+
"commit": "dfc6ca9c55b67a3d2186884d0e1110c6d4690a97"
|
|
348
|
+
}
|
|
349
|
+
]
|
|
350
|
+
}
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"date": "Sat, 12 Feb 2022 06:08:36 GMT",
|
|
354
|
+
"tag": "@office-iss/react-native-win32_v0.0.0-canary.134",
|
|
355
|
+
"version": "0.0.0-canary.134",
|
|
356
|
+
"comments": {
|
|
357
|
+
"prerelease": [
|
|
358
|
+
{
|
|
359
|
+
"author": "ngerlem@microsoft.com",
|
|
360
|
+
"package": "@office-iss/react-native-win32",
|
|
361
|
+
"commit": "3dfb9c2cf511fd9a0150bb1ebbd2be066e9b720f",
|
|
362
|
+
"comment": "Share monorepo-friendly metro config between dev packages"
|
|
42
363
|
}
|
|
43
364
|
]
|
|
44
365
|
}
|
|
45
366
|
},
|
|
46
367
|
{
|
|
47
|
-
"date": "
|
|
48
|
-
"tag": "@office-iss/react-native-win32_v0.
|
|
49
|
-
"version": "0.
|
|
368
|
+
"date": "Fri, 11 Feb 2022 06:08:20 GMT",
|
|
369
|
+
"tag": "@office-iss/react-native-win32_v0.0.0-canary.133",
|
|
370
|
+
"version": "0.0.0-canary.133",
|
|
50
371
|
"comments": {
|
|
51
372
|
"prerelease": [
|
|
52
373
|
{
|
|
53
374
|
"author": "ngerlem@microsoft.com",
|
|
54
375
|
"package": "@office-iss/react-native-win32",
|
|
55
|
-
"commit": "
|
|
56
|
-
"comment": "
|
|
376
|
+
"commit": "ae5b3283fd03ec97f9b3ff33b9820778edb4188f",
|
|
377
|
+
"comment": "Integrate Feb 6 Nightly RN Build"
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"author": "beachball",
|
|
381
|
+
"package": "@office-iss/react-native-win32",
|
|
382
|
+
"comment": "Bump @react-native-windows/virtualized-list to v0.0.0-canary.29",
|
|
383
|
+
"commit": "c93141bf6be4574ca32c38d1a92dcda143001cd7"
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
"author": "beachball",
|
|
387
|
+
"package": "@office-iss/react-native-win32",
|
|
388
|
+
"comment": "Bump react-native-platform-override to v1.6.5",
|
|
389
|
+
"commit": "c93141bf6be4574ca32c38d1a92dcda143001cd7"
|
|
390
|
+
}
|
|
391
|
+
]
|
|
392
|
+
}
|
|
393
|
+
},
|
|
394
|
+
{
|
|
395
|
+
"date": "Wed, 09 Feb 2022 06:09:35 GMT",
|
|
396
|
+
"tag": "@office-iss/react-native-win32_v0.0.0-canary.132",
|
|
397
|
+
"version": "0.0.0-canary.132",
|
|
398
|
+
"comments": {
|
|
399
|
+
"prerelease": [
|
|
400
|
+
{
|
|
401
|
+
"author": "jthysell@microsoft.com",
|
|
402
|
+
"package": "@office-iss/react-native-win32",
|
|
403
|
+
"commit": "416ab0f868c6ec402d2565d29f643cb2fceb9447",
|
|
404
|
+
"comment": "Bump minimum Node version to 14"
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
"author": "beachball",
|
|
408
|
+
"package": "@office-iss/react-native-win32",
|
|
409
|
+
"comment": "Bump @react-native-windows/virtualized-list to v0.0.0-canary.28",
|
|
410
|
+
"commit": "416ab0f868c6ec402d2565d29f643cb2fceb9447"
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
"author": "beachball",
|
|
414
|
+
"package": "@office-iss/react-native-win32",
|
|
415
|
+
"comment": "Bump @rnw-scripts/eslint-config to v1.1.11",
|
|
416
|
+
"commit": "416ab0f868c6ec402d2565d29f643cb2fceb9447"
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
"author": "beachball",
|
|
420
|
+
"package": "@office-iss/react-native-win32",
|
|
421
|
+
"comment": "Bump @rnw-scripts/jest-out-of-tree-snapshot-resolver to v1.0.5",
|
|
422
|
+
"commit": "416ab0f868c6ec402d2565d29f643cb2fceb9447"
|
|
57
423
|
},
|
|
58
424
|
{
|
|
59
425
|
"author": "beachball",
|
|
60
426
|
"package": "@office-iss/react-native-win32",
|
|
61
|
-
"comment": "Bump
|
|
62
|
-
"commit": "
|
|
427
|
+
"comment": "Bump react-native-platform-override to v1.6.5",
|
|
428
|
+
"commit": "416ab0f868c6ec402d2565d29f643cb2fceb9447"
|
|
63
429
|
}
|
|
64
430
|
]
|
|
65
431
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,35 +1,184 @@
|
|
|
1
1
|
# Change Log - @office-iss/react-native-win32
|
|
2
2
|
|
|
3
|
-
This log was last generated on Mon,
|
|
3
|
+
This log was last generated on Mon, 16 May 2022 15:08:41 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
-
## 0.
|
|
7
|
+
## 0.69.0-preview.2
|
|
8
8
|
|
|
9
|
-
Mon,
|
|
9
|
+
Mon, 16 May 2022 15:08:41 GMT
|
|
10
10
|
|
|
11
11
|
### Changes
|
|
12
12
|
|
|
13
|
-
-
|
|
14
|
-
- Bump @react-native-windows/virtualized-list to v0.68.0-preview.3
|
|
13
|
+
- Upgrade to @react-native-community/cli@8.0.0-alpha.6 (jthysell@microsoft.com)
|
|
15
14
|
|
|
16
|
-
## 0.
|
|
15
|
+
## 0.69.0-preview.1
|
|
17
16
|
|
|
18
|
-
|
|
17
|
+
Wed, 04 May 2022 23:30:22 GMT
|
|
19
18
|
|
|
20
19
|
### Changes
|
|
21
20
|
|
|
22
|
-
-
|
|
23
|
-
- Bump @react-native-windows/virtualized-list to v0.
|
|
21
|
+
- Promote 0.69 to preview (jthysell@microsoft.com)
|
|
22
|
+
- Bump @react-native-windows/virtualized-list to v0.69.0-preview.1
|
|
24
23
|
|
|
25
|
-
## 0.
|
|
24
|
+
## 0.0.0-canary.148
|
|
26
25
|
|
|
27
|
-
Mon,
|
|
26
|
+
Mon, 02 May 2022 21:26:42 GMT
|
|
28
27
|
|
|
29
28
|
### Changes
|
|
30
29
|
|
|
31
|
-
-
|
|
32
|
-
-
|
|
30
|
+
- Implement no-hide-accessibility (34109996+chiaramooney@users.noreply.github.com)
|
|
31
|
+
- Add ListItem as an accessibilityRole type and add a List, ListItem, ControllerFor test example (patboyd@microsoft.com)
|
|
32
|
+
|
|
33
|
+
## 0.0.0-canary.147
|
|
34
|
+
|
|
35
|
+
Wed, 27 Apr 2022 05:10:23 GMT
|
|
36
|
+
|
|
37
|
+
### Changes
|
|
38
|
+
|
|
39
|
+
- Integrate 4/15 Test (34109996+chiaramooney@users.noreply.github.com)
|
|
40
|
+
- Bump @react-native-windows/virtualized-list to v0.0.0-canary.41
|
|
41
|
+
- Bump @rnw-scripts/eslint-config to v1.1.12
|
|
42
|
+
- Bump @rnw-scripts/jest-out-of-tree-snapshot-resolver to v1.0.6
|
|
43
|
+
- Bump react-native-platform-override to v1.6.11
|
|
44
|
+
|
|
45
|
+
## 0.0.0-canary.146
|
|
46
|
+
|
|
47
|
+
Thu, 21 Apr 2022 05:09:33 GMT
|
|
48
|
+
|
|
49
|
+
### Changes
|
|
50
|
+
|
|
51
|
+
- Bump @react-native-windows/virtualized-list to v0.0.0-canary.40
|
|
52
|
+
- Bump react-native-platform-override to v1.6.10
|
|
53
|
+
|
|
54
|
+
## 0.0.0-canary.145
|
|
55
|
+
|
|
56
|
+
Thu, 14 Apr 2022 05:09:19 GMT
|
|
57
|
+
|
|
58
|
+
### Changes
|
|
59
|
+
|
|
60
|
+
- Integrate RN Nightly Build 4/11 (34109996+chiaramooney@users.noreply.github.com)
|
|
61
|
+
- Bump @react-native-windows/virtualized-list to v0.0.0-canary.39
|
|
62
|
+
|
|
63
|
+
## 0.0.0-canary.144
|
|
64
|
+
|
|
65
|
+
Tue, 12 Apr 2022 05:10:37 GMT
|
|
66
|
+
|
|
67
|
+
### Changes
|
|
68
|
+
|
|
69
|
+
- Fix Overrides (34109996+chiaramooney@users.noreply.github.com)
|
|
70
|
+
- Bump @react-native-windows/virtualized-list to v0.0.0-canary.38
|
|
71
|
+
- Bump react-native-platform-override to v1.6.9
|
|
72
|
+
|
|
73
|
+
## 0.0.0-canary.143
|
|
74
|
+
|
|
75
|
+
Sat, 09 Apr 2022 05:10:10 GMT
|
|
76
|
+
|
|
77
|
+
### Changes
|
|
78
|
+
|
|
79
|
+
- integrate 4/4 (email not defined)
|
|
80
|
+
- Bump @react-native-windows/virtualized-list to v0.0.0-canary.37
|
|
81
|
+
|
|
82
|
+
## 0.0.0-canary.142
|
|
83
|
+
|
|
84
|
+
Tue, 05 Apr 2022 05:10:13 GMT
|
|
85
|
+
|
|
86
|
+
### Changes
|
|
87
|
+
|
|
88
|
+
- Bump @react-native-windows/virtualized-list to v0.0.0-canary.36
|
|
89
|
+
- Bump react-native-platform-override to v1.6.8
|
|
90
|
+
|
|
91
|
+
## 0.0.0-canary.141
|
|
92
|
+
|
|
93
|
+
Fri, 01 Apr 2022 05:09:58 GMT
|
|
94
|
+
|
|
95
|
+
### Changes
|
|
96
|
+
|
|
97
|
+
- Bump @react-native-windows/virtualized-list to v0.0.0-canary.35
|
|
98
|
+
- Bump react-native-platform-override to v1.6.7
|
|
99
|
+
|
|
100
|
+
## 0.0.0-canary.140
|
|
101
|
+
|
|
102
|
+
Thu, 31 Mar 2022 05:10:18 GMT
|
|
103
|
+
|
|
104
|
+
### Changes
|
|
105
|
+
|
|
106
|
+
- Integrate 3/11 (34109996+chiaramooney@users.noreply.github.com)
|
|
107
|
+
- Bump @react-native-windows/virtualized-list to v0.0.0-canary.34
|
|
108
|
+
|
|
109
|
+
## 0.0.0-canary.139
|
|
110
|
+
|
|
111
|
+
Tue, 29 Mar 2022 05:09:49 GMT
|
|
112
|
+
|
|
113
|
+
### Changes
|
|
114
|
+
|
|
115
|
+
- Integrate 3/11 (34109996+chiaramooney@users.noreply.github.com)
|
|
116
|
+
- Bump @react-native-windows/virtualized-list to v0.0.0-canary.33
|
|
117
|
+
|
|
118
|
+
## 0.0.0-canary.138
|
|
119
|
+
|
|
120
|
+
Thu, 17 Mar 2022 05:09:18 GMT
|
|
121
|
+
|
|
122
|
+
### Changes
|
|
123
|
+
|
|
124
|
+
- integrates 2/27/22 (email not defined)
|
|
125
|
+
- Bump @react-native-windows/virtualized-list to v0.0.0-canary.32
|
|
126
|
+
|
|
127
|
+
## 0.0.0-canary.137
|
|
128
|
+
|
|
129
|
+
Wed, 09 Mar 2022 06:09:07 GMT
|
|
130
|
+
|
|
131
|
+
### Changes
|
|
132
|
+
|
|
133
|
+
- Upgrade @types/react-native (53799235+ZihanChen-MSFT@users.noreply.github.com)
|
|
134
|
+
|
|
135
|
+
## 0.0.0-canary.136
|
|
136
|
+
|
|
137
|
+
Sat, 05 Mar 2022 06:08:58 GMT
|
|
138
|
+
|
|
139
|
+
### Changes
|
|
140
|
+
|
|
141
|
+
- integrate 2/13/2022 Nightly RN Build (email not defined)
|
|
142
|
+
- Bump @react-native-windows/virtualized-list to v0.0.0-canary.31
|
|
143
|
+
|
|
144
|
+
## 0.0.0-canary.135
|
|
145
|
+
|
|
146
|
+
Sun, 13 Feb 2022 06:08:34 GMT
|
|
147
|
+
|
|
148
|
+
### Changes
|
|
149
|
+
|
|
150
|
+
- Bump @react-native-windows/virtualized-list to v0.0.0-canary.30
|
|
151
|
+
- Bump react-native-platform-override to v1.6.6
|
|
152
|
+
|
|
153
|
+
## 0.0.0-canary.134
|
|
154
|
+
|
|
155
|
+
Sat, 12 Feb 2022 06:08:36 GMT
|
|
156
|
+
|
|
157
|
+
### Changes
|
|
158
|
+
|
|
159
|
+
- Share monorepo-friendly metro config between dev packages (ngerlem@microsoft.com)
|
|
160
|
+
|
|
161
|
+
## 0.0.0-canary.133
|
|
162
|
+
|
|
163
|
+
Fri, 11 Feb 2022 06:08:20 GMT
|
|
164
|
+
|
|
165
|
+
### Changes
|
|
166
|
+
|
|
167
|
+
- Integrate Feb 6 Nightly RN Build (ngerlem@microsoft.com)
|
|
168
|
+
- Bump @react-native-windows/virtualized-list to v0.0.0-canary.29
|
|
169
|
+
- Bump react-native-platform-override to v1.6.5
|
|
170
|
+
|
|
171
|
+
## 0.0.0-canary.132
|
|
172
|
+
|
|
173
|
+
Wed, 09 Feb 2022 06:09:35 GMT
|
|
174
|
+
|
|
175
|
+
### Changes
|
|
176
|
+
|
|
177
|
+
- Bump minimum Node version to 14 (jthysell@microsoft.com)
|
|
178
|
+
- Bump @react-native-windows/virtualized-list to v0.0.0-canary.28
|
|
179
|
+
- Bump @rnw-scripts/eslint-config to v1.1.11
|
|
180
|
+
- Bump @rnw-scripts/jest-out-of-tree-snapshot-resolver to v1.0.5
|
|
181
|
+
- Bump react-native-platform-override to v1.6.5
|
|
33
182
|
|
|
34
183
|
## 0.0.0-canary.131
|
|
35
184
|
|
package/IntegrationTests/BUCK
CHANGED
|
@@ -17,7 +17,10 @@ rn_library(
|
|
|
17
17
|
"websocket_integration_test_server.js",
|
|
18
18
|
],
|
|
19
19
|
),
|
|
20
|
-
labels = [
|
|
20
|
+
labels = [
|
|
21
|
+
"pfh:ReactNative_CommonInfrastructurePlaceholder",
|
|
22
|
+
"supermodule:xplat/default/public.react_native.tests",
|
|
23
|
+
],
|
|
21
24
|
skip_processors = True,
|
|
22
25
|
visibility = ["PUBLIC"],
|
|
23
26
|
deps = [
|