react-native-windows 0.66.18 → 0.66.19
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/CHANGELOG.json +16 -1
- package/CHANGELOG.md +13 -5
- package/Chakra/ChakraHelpers.cpp +0 -1
- package/Libraries/Network/RCTNetworkingWinShared.js +7 -0
- package/Microsoft.ReactNative/Base/CoreNativeModules.cpp +3 -1
- package/Microsoft.ReactNative/Modules/CreateModules.cpp +3 -3
- package/Scripts/OfficeReact.Win32.nuspec +1 -1
- package/Shared/BaseScriptStoreImpl.cpp +1 -1
- package/Shared/CppRuntimeOptions.h +50 -0
- package/Shared/CreateModules.h +17 -2
- package/Shared/InspectorPackagerConnection.cpp +7 -5
- package/Shared/InspectorPackagerConnection.h +2 -2
- package/Shared/JSI/ChakraApi.cpp +0 -1
- package/Shared/JSI/ChakraRuntime.cpp +0 -1
- package/Shared/Modules/BlobModule.cpp +376 -0
- package/Shared/Modules/BlobModule.h +153 -0
- package/Shared/Modules/CxxModuleUtilities.cpp +19 -0
- package/Shared/Modules/CxxModuleUtilities.h +23 -0
- package/Shared/Modules/FileReaderModule.cpp +156 -0
- package/Shared/Modules/FileReaderModule.h +54 -0
- package/Shared/Modules/HttpModule.cpp +73 -70
- package/Shared/Modules/HttpModule.h +10 -3
- package/Shared/Modules/IBlobPersistor.h +30 -0
- package/Shared/Modules/IHttpModuleProxy.h +30 -0
- package/Shared/Modules/IRequestBodyHandler.h +52 -0
- package/Shared/Modules/IResponseHandler.h +27 -0
- package/Shared/Modules/IUriHandler.h +37 -0
- package/Shared/Modules/IWebSocketModuleContentHandler.h +26 -0
- package/Shared/Modules/IWebSocketModuleProxy.h +22 -0
- package/Shared/Modules/NetworkingModule.cpp +1 -1
- package/Shared/Modules/WebSocketModule.cpp +93 -23
- package/Shared/Modules/WebSocketModule.h +35 -6
- package/Shared/Networking/IHttpResource.h +101 -0
- package/Shared/{IWebSocketResource.h → Networking/IWebSocketResource.h} +2 -2
- package/Shared/Networking/OriginPolicy.h +15 -0
- package/Shared/Networking/OriginPolicyHttpFilter.cpp +747 -0
- package/Shared/Networking/OriginPolicyHttpFilter.h +112 -0
- package/Shared/Networking/WinRTHttpResource.cpp +465 -0
- package/Shared/{WinRTHttpResource.h → Networking/WinRTHttpResource.h} +35 -20
- package/Shared/Networking/WinRTTypes.h +33 -0
- package/Shared/{WinRTWebSocketResource.cpp → Networking/WinRTWebSocketResource.cpp} +2 -2
- package/Shared/{WinRTWebSocketResource.h → Networking/WinRTWebSocketResource.h} +3 -3
- package/Shared/OInstance.cpp +26 -6
- package/Shared/OInstance.h +8 -4
- package/Shared/RuntimeOptions.cpp +93 -15
- package/Shared/RuntimeOptions.h +22 -9
- package/Shared/Shared.vcxitems +24 -6
- package/Shared/Shared.vcxitems.filters +78 -18
- package/package.json +1 -1
- package/Shared/IHttpResource.h +0 -53
- package/Shared/WinRTHttpResource.cpp +0 -317
package/CHANGELOG.json
CHANGED
|
@@ -2,7 +2,22 @@
|
|
|
2
2
|
"name": "react-native-windows",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "
|
|
5
|
+
"date": "Tue, 24 May 2022 21:08:42 GMT",
|
|
6
|
+
"tag": "react-native-windows_v0.66.19",
|
|
7
|
+
"version": "0.66.19",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"comment": "Implement Blob module (#9352)",
|
|
12
|
+
"author": "julio@rochsquadron.net",
|
|
13
|
+
"commit": "4b1eb4196ab7be2e266da754637a00a252f3745f",
|
|
14
|
+
"package": "react-native-windows"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"date": "Mon, 02 May 2022 15:10:52 GMT",
|
|
6
21
|
"tag": "react-native-windows_v0.66.18",
|
|
7
22
|
"version": "0.66.18",
|
|
8
23
|
"comments": {
|
package/CHANGELOG.md
CHANGED
|
@@ -1,18 +1,26 @@
|
|
|
1
1
|
# Change Log - react-native-windows
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Tue, 24 May 2022 21:08:42 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
-
## 0.66.
|
|
7
|
+
## 0.66.19
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
Tue, 24 May 2022 21:08:42 GMT
|
|
10
10
|
|
|
11
11
|
### Patches
|
|
12
12
|
|
|
13
|
-
-
|
|
14
|
-
- Handle abrupt WebSocket connection interruption (#9829) (julio.rocha@microsoft.com)
|
|
13
|
+
- Implement Blob module (#9352) (julio@rochsquadron.net)
|
|
15
14
|
|
|
15
|
+
## 0.66.18
|
|
16
|
+
|
|
17
|
+
Mon, 02 May 2022 15:10:52 GMT
|
|
18
|
+
|
|
19
|
+
### Patches
|
|
20
|
+
|
|
21
|
+
- Fix clang-check errors in NativeModules.h (53799235+ZihanChen-MSFT@users.noreply.github.com)
|
|
22
|
+
- Handle abrupt WebSocket connection interruption (#9829) (julio.rocha@microsoft.com)
|
|
23
|
+
|
|
16
24
|
## 0.66.17
|
|
17
25
|
|
|
18
26
|
Mon, 25 Apr 2022 15:09:39 GMT
|
package/Chakra/ChakraHelpers.cpp
CHANGED
|
@@ -61,6 +61,11 @@ type RCTNetworkingEventDefinitions = $ReadOnly<{
|
|
|
61
61
|
],
|
|
62
62
|
}>;
|
|
63
63
|
|
|
64
|
+
let _requestId = 1;
|
|
65
|
+
function generateRequestId(): number {
|
|
66
|
+
return _requestId++;
|
|
67
|
+
}
|
|
68
|
+
|
|
64
69
|
const RCTNetworking = {
|
|
65
70
|
addListener<K: $Keys<RCTNetworkingEventDefinitions>>(
|
|
66
71
|
eventType: K,
|
|
@@ -82,11 +87,13 @@ const RCTNetworking = {
|
|
|
82
87
|
callback: (requestId: number) => void,
|
|
83
88
|
withCredentials: boolean,
|
|
84
89
|
) {
|
|
90
|
+
const requestId = generateRequestId();
|
|
85
91
|
const body = convertRequestBody(data);
|
|
86
92
|
RCTNetworkingNative.sendRequest(
|
|
87
93
|
{
|
|
88
94
|
method,
|
|
89
95
|
url,
|
|
96
|
+
requestId,
|
|
90
97
|
data: {...body, trackingName},
|
|
91
98
|
headers,
|
|
92
99
|
responseType,
|
|
@@ -50,7 +50,9 @@ std::vector<facebook::react::NativeModuleDescription> GetCoreModules(
|
|
|
50
50
|
std::vector<facebook::react::NativeModuleDescription> modules;
|
|
51
51
|
|
|
52
52
|
modules.emplace_back(
|
|
53
|
-
"Networking",
|
|
53
|
+
"Networking",
|
|
54
|
+
[props = context->Properties()]() { return Microsoft::React::CreateHttpModule(props); },
|
|
55
|
+
jsMessageQueue);
|
|
54
56
|
|
|
55
57
|
modules.emplace_back(
|
|
56
58
|
"Timing",
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
// Licensed under the MIT License.
|
|
3
3
|
|
|
4
4
|
#include <CreateModules.h>
|
|
5
|
+
#include <Networking/WinRTWebSocketResource.h>
|
|
5
6
|
#include <QuirkSettings.h>
|
|
6
7
|
#include <React.h>
|
|
7
8
|
#include <ReactPropertyBag.h>
|
|
8
|
-
#include <WinRTWebSocketResource.h>
|
|
9
9
|
|
|
10
10
|
// React Native
|
|
11
11
|
#include <cxxreact/CxxModule.h>
|
|
@@ -17,11 +17,11 @@ using winrt::Microsoft::ReactNative::ReactPropertyBag;
|
|
|
17
17
|
using winrt::Microsoft::ReactNative::ReactPropertyId;
|
|
18
18
|
using winrt::Microsoft::ReactNative::implementation::QuirkSettings;
|
|
19
19
|
|
|
20
|
-
namespace Microsoft::React {
|
|
20
|
+
namespace Microsoft::React::Networking {
|
|
21
21
|
|
|
22
22
|
std::shared_ptr<IWebSocketResource> IWebSocketResource::Make() {
|
|
23
23
|
std::vector<winrt::Windows::Security::Cryptography::Certificates::ChainValidationResult> certExceptions;
|
|
24
24
|
return std::make_shared<WinRTWebSocketResource>(std::move(certExceptions));
|
|
25
25
|
}
|
|
26
26
|
|
|
27
|
-
} // namespace Microsoft::React
|
|
27
|
+
} // namespace Microsoft::React::Networking
|
|
@@ -50,13 +50,13 @@
|
|
|
50
50
|
<file src="$nugetroot$\inc\Shared\IReactRootView.h" target="inc"/>
|
|
51
51
|
<file src="$nugetroot$\inc\Shared\IRedBoxHandler.h" target="inc"/>
|
|
52
52
|
<file src="$nugetroot$\inc\Shared\IUIManager.h" target="inc"/>
|
|
53
|
-
<file src="$nugetroot$\inc\Shared\IWebSocketResource.h" target="inc"/>
|
|
54
53
|
<file src="$nugetroot$\inc\Shared\JSBigAbiString.h" target="inc"/>
|
|
55
54
|
<file src="$nugetroot$\inc\Shared\LayoutAnimation.h" target="inc"/>
|
|
56
55
|
<file src="$nugetroot$\inc\Shared\Logging.h" target="inc"/>
|
|
57
56
|
<file src="$nugetroot$\inc\Shared\MemoryMappedBuffer.h" target="inc"/>
|
|
58
57
|
<file src="$nugetroot$\inc\Shared\Modules\I18nModule.h" target="inc"/>
|
|
59
58
|
<file src="$nugetroot$\inc\Shared\NativeModuleProvider.h" target="inc"/>
|
|
59
|
+
<file src="$nugetroot$\inc\Shared\Networking\IWebSocketResource.h" target="inc"/>
|
|
60
60
|
<file src="$nugetroot$\inc\Shared\RuntimeOptions.h" target="inc"/>
|
|
61
61
|
<file src="$nugetroot$\inc\ReactWin32\ShadowNode.h" target="inc"/>
|
|
62
62
|
<file src="$nugetroot$\inc\Shared\Tracing.h" target="inc"/>
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
// Copyright (c) Microsoft Corporation.
|
|
2
|
+
// Licensed under the MIT License.
|
|
3
|
+
|
|
4
|
+
#pragma once
|
|
5
|
+
|
|
6
|
+
#include <string>
|
|
7
|
+
|
|
8
|
+
namespace Microsoft::React {
|
|
9
|
+
|
|
10
|
+
/// <summary>
|
|
11
|
+
/// Sets a global boolean value identified by an arbitrary string.
|
|
12
|
+
/// </summary>
|
|
13
|
+
/// <param name="name">Global key</param>
|
|
14
|
+
void __cdecl SetRuntimeOptionBool(std::string &&name, bool value) noexcept;
|
|
15
|
+
|
|
16
|
+
/// <summary>
|
|
17
|
+
/// Sets a global signed integer value identified by an arbitrary string.
|
|
18
|
+
/// </summary>
|
|
19
|
+
/// <param name="name">Global boolean key</param>
|
|
20
|
+
void __cdecl SetRuntimeOptionInt(std::string &&name, std::int32_t value) noexcept;
|
|
21
|
+
|
|
22
|
+
/// <summary>
|
|
23
|
+
/// Sets a global string value identified by an arbitrary string.
|
|
24
|
+
/// </summary>
|
|
25
|
+
/// <param name="name">Global string key</param>
|
|
26
|
+
/// <param name="value">String value to store</param>
|
|
27
|
+
void __cdecl SetRuntimeOptionString(std::string &&name, std::string &&value) noexcept;
|
|
28
|
+
|
|
29
|
+
/// <summary>
|
|
30
|
+
/// Retrieves a global boolean value for the given key.
|
|
31
|
+
/// </summary>
|
|
32
|
+
/// <param name="name">Global boolean key</param>
|
|
33
|
+
/// <returns>Value stored for the given key, or false if the entry doesn't exist (default)</returns>
|
|
34
|
+
const bool __cdecl GetRuntimeOptionBool(const std::string &name) noexcept;
|
|
35
|
+
|
|
36
|
+
/// <summary>
|
|
37
|
+
/// Retrieves a global boolean value for the given key.
|
|
38
|
+
/// </summary>
|
|
39
|
+
/// <param name="name">Global key</param>
|
|
40
|
+
/// <returns>Value stored for the given key, or 0 if the entry doesn't exist (default)</returns>
|
|
41
|
+
const std::int32_t __cdecl GetRuntimeOptionInt(const std::string &name) noexcept;
|
|
42
|
+
|
|
43
|
+
/// <summary>
|
|
44
|
+
/// Retrieves a global string value for the given key.
|
|
45
|
+
/// </summary>
|
|
46
|
+
/// <param name="name">Global key</param>
|
|
47
|
+
/// <returns>Value stored for the given key, or an empty string if the entry doesn't exist (default)</returns>
|
|
48
|
+
const std::string __cdecl GetRuntimeOptionString(const std::string &name) noexcept;
|
|
49
|
+
|
|
50
|
+
} // namespace Microsoft::React
|
package/Shared/CreateModules.h
CHANGED
|
@@ -3,9 +3,14 @@
|
|
|
3
3
|
|
|
4
4
|
#pragma once
|
|
5
5
|
|
|
6
|
+
// React Native
|
|
6
7
|
#include <cxxreact/CxxModule.h>
|
|
7
8
|
#include <smartPtr/cntPtr.h>
|
|
8
9
|
|
|
10
|
+
// Windows API
|
|
11
|
+
#include <winrt/Windows.Foundation.h>
|
|
12
|
+
|
|
13
|
+
// Standard Library
|
|
9
14
|
#include <memory>
|
|
10
15
|
|
|
11
16
|
// Forward declarations. Desktop projects can not access <React.h>
|
|
@@ -33,9 +38,19 @@ extern std::unique_ptr<facebook::xplat::module::CxxModule> CreateAsyncStorageMod
|
|
|
33
38
|
namespace Microsoft::React {
|
|
34
39
|
|
|
35
40
|
extern const char *GetHttpModuleName() noexcept;
|
|
36
|
-
extern std::unique_ptr<facebook::xplat::module::CxxModule> CreateHttpModule(
|
|
41
|
+
extern std::unique_ptr<facebook::xplat::module::CxxModule> CreateHttpModule(
|
|
42
|
+
winrt::Windows::Foundation::IInspectable const &inspectableProperties) noexcept;
|
|
37
43
|
|
|
38
44
|
extern const char *GetWebSocketModuleName() noexcept;
|
|
39
|
-
extern std::unique_ptr<facebook::xplat::module::CxxModule> CreateWebSocketModule(
|
|
45
|
+
extern std::unique_ptr<facebook::xplat::module::CxxModule> CreateWebSocketModule(
|
|
46
|
+
winrt::Windows::Foundation::IInspectable const &inspectableProperties) noexcept;
|
|
47
|
+
|
|
48
|
+
extern const char *GetBlobModuleName() noexcept;
|
|
49
|
+
extern std::unique_ptr<facebook::xplat::module::CxxModule> CreateBlobModule(
|
|
50
|
+
winrt::Windows::Foundation::IInspectable const &inspectableProperties) noexcept;
|
|
51
|
+
|
|
52
|
+
extern const char *GetFileReaderModuleName() noexcept;
|
|
53
|
+
extern std::unique_ptr<facebook::xplat::module::CxxModule> CreateFileReaderModule(
|
|
54
|
+
winrt::Windows::Foundation::IInspectable const &inspectableProperties) noexcept;
|
|
40
55
|
|
|
41
56
|
} // namespace Microsoft::React
|
|
@@ -196,7 +196,8 @@ InspectorPackagerConnection::InspectorPackagerConnection(
|
|
|
196
196
|
winrt::fire_and_forget InspectorPackagerConnection::disconnectAsync() {
|
|
197
197
|
co_await winrt::resume_background();
|
|
198
198
|
std::string reason("Explicit close");
|
|
199
|
-
m_packagerWebSocketConnection->Close(
|
|
199
|
+
m_packagerWebSocketConnection->Close(
|
|
200
|
+
Microsoft::React::Networking::WinRTWebSocketResource::CloseCode::GoingAway, reason);
|
|
200
201
|
co_return;
|
|
201
202
|
}
|
|
202
203
|
|
|
@@ -204,9 +205,10 @@ winrt::fire_and_forget InspectorPackagerConnection::connectAsync() {
|
|
|
204
205
|
co_await winrt::resume_background();
|
|
205
206
|
|
|
206
207
|
std::vector<winrt::Windows::Security::Cryptography::Certificates::ChainValidationResult> certExceptions;
|
|
207
|
-
m_packagerWebSocketConnection =
|
|
208
|
+
m_packagerWebSocketConnection =
|
|
209
|
+
std::make_shared<Microsoft::React::Networking::WinRTWebSocketResource>(std::move(certExceptions));
|
|
208
210
|
|
|
209
|
-
m_packagerWebSocketConnection->SetOnError([](const Microsoft::React::IWebSocketResource::Error &err) {
|
|
211
|
+
m_packagerWebSocketConnection->SetOnError([](const Microsoft::React::Networking::IWebSocketResource::Error &err) {
|
|
210
212
|
facebook::react::tracing::error(err.Message.c_str());
|
|
211
213
|
});
|
|
212
214
|
|
|
@@ -267,8 +269,8 @@ winrt::fire_and_forget InspectorPackagerConnection::connectAsync() {
|
|
|
267
269
|
}
|
|
268
270
|
});
|
|
269
271
|
|
|
270
|
-
Microsoft::React::IWebSocketResource::Protocols protocols;
|
|
271
|
-
Microsoft::React::IWebSocketResource::Options options;
|
|
272
|
+
Microsoft::React::Networking::IWebSocketResource::Protocols protocols;
|
|
273
|
+
Microsoft::React::Networking::IWebSocketResource::Options options;
|
|
272
274
|
m_packagerWebSocketConnection->Connect(std::string{m_url}, protocols, options);
|
|
273
275
|
|
|
274
276
|
co_return;
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
#pragma once
|
|
5
5
|
|
|
6
6
|
#include <InspectorProxy.h>
|
|
7
|
-
#include <WinRTWebSocketResource.h>
|
|
7
|
+
#include <Networking/WinRTWebSocketResource.h>
|
|
8
8
|
#include <jsinspector/InspectorInterfaces.h>
|
|
9
9
|
|
|
10
10
|
namespace Microsoft::ReactNative {
|
|
@@ -42,7 +42,7 @@ class InspectorPackagerConnection final : public std::enable_shared_from_this<In
|
|
|
42
42
|
void sendMessageToVM(int64_t pageId, std::string &&message);
|
|
43
43
|
|
|
44
44
|
std::unordered_map<int64_t, std::unique_ptr<facebook::react::ILocalConnection>> m_localConnections;
|
|
45
|
-
std::shared_ptr<Microsoft::React::WinRTWebSocketResource> m_packagerWebSocketConnection;
|
|
45
|
+
std::shared_ptr<Microsoft::React::Networking::WinRTWebSocketResource> m_packagerWebSocketConnection;
|
|
46
46
|
std::shared_ptr<IBundleStatusProvider> m_bundleStatusProvider;
|
|
47
47
|
std::string m_url;
|
|
48
48
|
};
|
package/Shared/JSI/ChakraApi.cpp
CHANGED