@office-iss/react-native-win32 0.71.15 → 0.71.16
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/Libraries/Image/resolveAssetSource.win32.js +6 -7
- package/package.json +1 -1
package/CHANGELOG.json
CHANGED
|
@@ -2,7 +2,22 @@
|
|
|
2
2
|
"name": "@office-iss/react-native-win32",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "Mon,
|
|
5
|
+
"date": "Mon, 11 Sep 2023 15:13:15 GMT",
|
|
6
|
+
"tag": "@office-iss/react-native-win32_v0.71.16",
|
|
7
|
+
"version": "0.71.16",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"author": "30809111+acoates-ms@users.noreply.github.com",
|
|
12
|
+
"package": "@office-iss/react-native-win32",
|
|
13
|
+
"commit": "18112893dd511de823af08cc36b01b818cb305f1",
|
|
14
|
+
"comment": "Webpack assets do not prefix paths with /, which causes a lost char in asset path"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"date": "Mon, 28 Aug 2023 15:14:29 GMT",
|
|
6
21
|
"tag": "@office-iss/react-native-win32_v0.71.15",
|
|
7
22
|
"version": "0.71.15",
|
|
8
23
|
"comments": {
|
package/CHANGELOG.md
CHANGED
|
@@ -1,18 +1,26 @@
|
|
|
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, 11 Sep 2023 15:13:15 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
-
## 0.71.
|
|
7
|
+
## 0.71.16
|
|
8
8
|
|
|
9
|
-
Mon,
|
|
9
|
+
Mon, 11 Sep 2023 15:13:15 GMT
|
|
10
10
|
|
|
11
11
|
### Patches
|
|
12
12
|
|
|
13
|
-
-
|
|
14
|
-
- Remove flow usage from saveAssetPlugin codeflow (30809111+acoates-ms@users.noreply.github.com)
|
|
13
|
+
- Webpack assets do not prefix paths with /, which causes a lost char in asset path (30809111+acoates-ms@users.noreply.github.com)
|
|
15
14
|
|
|
15
|
+
## 0.71.15
|
|
16
|
+
|
|
17
|
+
Mon, 28 Aug 2023 15:14:29 GMT
|
|
18
|
+
|
|
19
|
+
### Patches
|
|
20
|
+
|
|
21
|
+
- fix a11yState and add support for aria-required and -multiselectable (krsiler@microsoft.com)
|
|
22
|
+
- Remove flow usage from saveAssetPlugin codeflow (30809111+acoates-ms@users.noreply.github.com)
|
|
23
|
+
|
|
16
24
|
## 0.71.14
|
|
17
25
|
|
|
18
26
|
Fri, 11 Aug 2023 00:26:16 GMT
|
|
@@ -90,10 +90,13 @@ class AssetResolverLateScaleResolution {
|
|
|
90
90
|
}
|
|
91
91
|
|
|
92
92
|
_getBasePath(local: boolean) {
|
|
93
|
+
let basePath = this._resolver.asset.httpServerLocation;
|
|
94
|
+
if (basePath[0] === '/') {
|
|
95
|
+
basePath = basePath.substr(1);
|
|
96
|
+
}
|
|
97
|
+
|
|
93
98
|
if (local) {
|
|
94
|
-
const safePath =
|
|
95
|
-
.substr(1)
|
|
96
|
-
.replace(/\.\.\//g, '_');
|
|
99
|
+
const safePath = basePath.replace(/\.\.\//g, '_');
|
|
97
100
|
// If this asset was created with the newer saveAssetPlugin, then we should shorten the path
|
|
98
101
|
// This conditional is added to allow back compat of older bundles which might have been created without the saveAssetPlugin
|
|
99
102
|
if (this._resolver.asset.__useShortPath) {
|
|
@@ -102,10 +105,6 @@ class AssetResolverLateScaleResolution {
|
|
|
102
105
|
return safePath;
|
|
103
106
|
}
|
|
104
107
|
|
|
105
|
-
let basePath = this._resolver.asset.httpServerLocation;
|
|
106
|
-
if (basePath[0] === '/') {
|
|
107
|
-
basePath = basePath.substr(1);
|
|
108
|
-
}
|
|
109
108
|
return basePath;
|
|
110
109
|
}
|
|
111
110
|
|