@office-iss/react-native-win32 0.72.3 → 0.72.4

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 CHANGED
@@ -2,7 +2,22 @@
2
2
  "name": "@office-iss/react-native-win32",
3
3
  "entries": [
4
4
  {
5
- "date": "Mon, 28 Aug 2023 15:14:00 GMT",
5
+ "date": "Mon, 11 Sep 2023 15:13:59 GMT",
6
+ "tag": "@office-iss/react-native-win32_v0.72.4",
7
+ "version": "0.72.4",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "30809111+acoates-ms@users.noreply.github.com",
12
+ "package": "@office-iss/react-native-win32",
13
+ "commit": "7564111bec1b57cfc4aecc22dea06c895804be99",
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:10 GMT",
6
21
  "tag": "@office-iss/react-native-win32_v0.72.3",
7
22
  "version": "0.72.3",
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, 28 Aug 2023 15:14:00 GMT and should not be manually modified.
3
+ This log was last generated on Mon, 11 Sep 2023 15:13:59 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
- ## 0.72.3
7
+ ## 0.72.4
8
8
 
9
- Mon, 28 Aug 2023 15:14:00 GMT
9
+ Mon, 11 Sep 2023 15:13:59 GMT
10
10
 
11
11
  ### Patches
12
12
 
13
- - fix a11yState and add support for aria-required and -multiselectable (krsiler@microsoft.com)
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.72.3
16
+
17
+ Mon, 28 Aug 2023 15:14:10 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.72.2
17
25
 
18
26
  Mon, 14 Aug 2023 15:18:19 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 = this._resolver.asset.httpServerLocation
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@office-iss/react-native-win32",
3
- "version": "0.72.3",
3
+ "version": "0.72.4",
4
4
  "description": "Implementation of react native on top of Office's Win32 platform.",
5
5
  "repository": {
6
6
  "type": "git",