react-native-windows 0.82.0 → 0.82.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.
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
3
|
+
<!--
|
|
4
|
+
CI-specific C++ build optimizations for the publish pipeline.
|
|
5
|
+
|
|
6
|
+
This file is injected via /p:ForceImportAfterCppTargets in .ado/publish.yml.
|
|
7
|
+
It overrides defaults that are tuned for developer workflows (incremental builds,
|
|
8
|
+
file tracking) with settings that are better for CI clean builds.
|
|
9
|
+
|
|
10
|
+
1. Multi-threaded compilation: Use CL.exe internal /MP parallelism instead of
|
|
11
|
+
MSBuild's MultiToolTask (which spawns one CL.exe+Tracker.exe per source file).
|
|
12
|
+
/MP lets CL.exe compile all files in one process with shared PCH state.
|
|
13
|
+
|
|
14
|
+
2. Disable file tracking: CI always does clean builds, so incremental build
|
|
15
|
+
tracking (MinimalRebuild, TrackFileAccess) is pure overhead.
|
|
16
|
+
-->
|
|
17
|
+
<PropertyGroup>
|
|
18
|
+
<MultiProcCL>false</MultiProcCL>
|
|
19
|
+
<MinimalRebuildFromTracking>false</MinimalRebuildFromTracking>
|
|
20
|
+
<TrackFileAccess>false</TrackFileAccess>
|
|
21
|
+
</PropertyGroup>
|
|
22
|
+
<ItemDefinitionGroup>
|
|
23
|
+
<ClCompile>
|
|
24
|
+
<MultiProcessorCompilation>false</MultiProcessorCompilation>
|
|
25
|
+
<MinimalRebuild>false</MinimalRebuild>
|
|
26
|
+
<AdditionalOptions>%(AdditionalOptions) /MP</AdditionalOptions>
|
|
27
|
+
</ClCompile>
|
|
28
|
+
</ItemDefinitionGroup>
|
|
29
|
+
</Project>
|
|
@@ -10,11 +10,11 @@
|
|
|
10
10
|
-->
|
|
11
11
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
12
12
|
<PropertyGroup>
|
|
13
|
-
<ReactNativeWindowsVersion>0.82.
|
|
13
|
+
<ReactNativeWindowsVersion>0.82.1</ReactNativeWindowsVersion>
|
|
14
14
|
<ReactNativeWindowsMajor>0</ReactNativeWindowsMajor>
|
|
15
15
|
<ReactNativeWindowsMinor>82</ReactNativeWindowsMinor>
|
|
16
|
-
<ReactNativeWindowsPatch>
|
|
16
|
+
<ReactNativeWindowsPatch>1</ReactNativeWindowsPatch>
|
|
17
17
|
<ReactNativeWindowsCanary>false</ReactNativeWindowsCanary>
|
|
18
|
-
<ReactNativeWindowsCommitId>
|
|
18
|
+
<ReactNativeWindowsCommitId>6738aadcbca05475c0a9d0719b078b99d493517e</ReactNativeWindowsCommitId>
|
|
19
19
|
</PropertyGroup>
|
|
20
20
|
</Project>
|
package/README.md
CHANGED
|
@@ -63,7 +63,7 @@ React Native has [great documentation](https://reactnative.dev/docs/getting-star
|
|
|
63
63
|
- Check the [samples repo](https://github.com/microsoft/react-native-windows-samples) for more standalone samples.
|
|
64
64
|
- The [React Native Gallery](https://github.com/microsoft/react-native-gallery) app demonstrates various components in an interactive way.
|
|
65
65
|
- Check out the [React Native Developer Blog](https://devblogs.microsoft.com/react-native/) to see examples from past conference talks, blog posts, and more.
|
|
66
|
-
- For more sample code browse the [RNTester folder](https://github.com/microsoft/react-native-windows/tree/main/packages/e2e-test-app-fabric/windows/RNTesterApp) in the GitHub web UI.
|
|
66
|
+
- For more sample code browse the [RNTester folder](https://github.com/microsoft/react-native-windows/tree/main/packages/e2e-test-app-fabric/windows/RNTesterApp-Fabric) in the GitHub web UI.
|
|
67
67
|
|
|
68
68
|
## 📢 Contributing
|
|
69
69
|
See [Contributing guidelines](https://github.com/microsoft/react-native-windows/blob/main/CONTRIBUTING.md) for how to setup your fork of the repo and start a PR to contribute to React Native for Windows.
|
|
@@ -28,11 +28,6 @@
|
|
|
28
28
|
<file src="$nugetroot$\Desktop\x64\Release\React.Windows.Desktop\Microsoft.ReactNative.winmd" target="lib\ship\x64"/>
|
|
29
29
|
<file src="$nugetroot$\Desktop\ARM64EC\Release\React.Windows.Desktop\Microsoft.ReactNative.winmd" target="lib\ship\ARM64EC"/>
|
|
30
30
|
|
|
31
|
-
<file src="$nugetroot$\Desktop\x86\Debug\React.Windows.Desktop.Test.DLL\React.Windows.Desktop.Test.**" target="lib\debug\x86" exclude="**\*.iobj;**\*.ipdb;**\*.exp;**\*.ilk" />
|
|
32
|
-
<file src="$nugetroot$\Desktop\x64\Debug\React.Windows.Desktop.Test.DLL\React.Windows.Desktop.Test.**" target="lib\debug\x64" exclude="**\*.iobj;**\*.ipdb;**\*.exp;**\*.ilk" />
|
|
33
|
-
<file src="$nugetroot$\Desktop\x86\Release\React.Windows.Desktop.Test.DLL\React.Windows.Desktop.Test.**" target="lib\ship\x86" exclude="**\*.iobj;**\*.ipdb;**\*.exp;**\*.ilk" />
|
|
34
|
-
<file src="$nugetroot$\Desktop\x64\Release\React.Windows.Desktop.Test.DLL\React.Windows.Desktop.Test.**" target="lib\ship\x64" exclude="**\*.iobj;**\*.ipdb;**\*.exp;**\*.ilk" />
|
|
35
|
-
|
|
36
31
|
<file src="$nugetroot$\inc\callinvoker\ReactCommon\CallInvoker.h" target="inc\ReactCommon"/>
|
|
37
32
|
<file src="$nugetroot$\inc\callinvoker\ReactCommon\SchedulerPriority.h" target="inc\ReactCommon"/>
|
|
38
33
|
<file src="$nugetroot$\inc\runtimeexecutor\ReactCommon\RuntimeExecutor.h" target="inc\ReactCommon"/>
|
|
@@ -59,12 +54,6 @@
|
|
|
59
54
|
<file src="$nugetroot$\inc\Shared\RuntimeOptions.h" target="inc"/>
|
|
60
55
|
<file src="$nugetroot$\inc\Shared\Tracing.h" target="inc"/>
|
|
61
56
|
|
|
62
|
-
<!-- Test DLL -->
|
|
63
|
-
<file src="$nugetroot$\inc\Test\WebSocketServer.h" target="inc\Test" />
|
|
64
|
-
<file src="$nugetroot$\inc\Test\HttpServer.h" target="inc\Test" />
|
|
65
|
-
<file src="$nugetroot$\inc\React.Windows.Desktop.Test.x64.def" target="inc\Test" />
|
|
66
|
-
<file src="$nugetroot$\inc\React.Windows.Desktop.Test.x86.def" target="inc\Test" />
|
|
67
|
-
|
|
68
57
|
<!-- Required for win32 -->
|
|
69
58
|
<file src="$nugetroot$\inc\Shared\DevServerHelper.h" target="inc"/>
|
|
70
59
|
<file src="$nugetroot$\inc\ReactWin32\JSBigStringResourceDll.h" target="inc"/>
|
|
@@ -227,11 +227,12 @@ fire_and_forget WinRTWebSocketResource2::PerformConnect(Uri &&uri) noexcept {
|
|
|
227
227
|
[self = self->shared_from_this(), coUri = std::move(movedUri)]() -> IAsyncAction {
|
|
228
228
|
auto coSelf = self->shared_from_this();
|
|
229
229
|
|
|
230
|
-
auto async = coSelf->m_socket.ConnectAsync(coUri);
|
|
231
|
-
co_await lessthrow_await_adapter<IAsyncAction>{async};
|
|
232
|
-
|
|
233
|
-
auto result = async.ErrorCode();
|
|
234
230
|
try {
|
|
231
|
+
// `ConnectAsync` MAY throw synchronously (e.g. WININET_E_INVALID_CA)
|
|
232
|
+
auto async = coSelf->m_socket.ConnectAsync(coUri);
|
|
233
|
+
co_await lessthrow_await_adapter<IAsyncAction>{async};
|
|
234
|
+
|
|
235
|
+
auto result = async.ErrorCode();
|
|
235
236
|
if (result >= 0) { // Non-failing HRESULT
|
|
236
237
|
coSelf->m_readyState = ReadyState::Open;
|
|
237
238
|
|