@office-iss/react-native-win32 0.81.0-preview.6 → 0.81.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.
package/CHANGELOG.json CHANGED
@@ -2,7 +2,43 @@
2
2
  "name": "@office-iss/react-native-win32",
3
3
  "entries": [
4
4
  {
5
- "date": "Mon, 15 Dec 2025 16:32:37 GMT",
5
+ "date": "Wed, 14 Jan 2026 06:04:45 GMT",
6
+ "version": "0.81.1",
7
+ "tag": "@office-iss/react-native-win32_v0.81.1",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "30809111+acoates-ms@users.noreply.github.com",
12
+ "package": "@office-iss/react-native-win32",
13
+ "commit": "2589a216e30d0edb9b2be922ba8b5a3fb6ce2591",
14
+ "comment": "Fix resolveAssetSource export"
15
+ }
16
+ ]
17
+ }
18
+ },
19
+ {
20
+ "date": "Sat, 20 Dec 2025 12:02:33 GMT",
21
+ "version": "0.81.0",
22
+ "tag": "@office-iss/react-native-win32_v0.81.0",
23
+ "comments": {
24
+ "patch": [
25
+ {
26
+ "author": "66076509+vineethkuttan@users.noreply.github.com",
27
+ "package": "@office-iss/react-native-win32",
28
+ "commit": "81863d6ae455c6d92f9ec8db6c9c4fe350a1c5b5",
29
+ "comment": "Promote 0.81 to latest"
30
+ },
31
+ {
32
+ "author": "beachball",
33
+ "package": "@office-iss/react-native-win32",
34
+ "comment": "Bump react-native-platform-override to v0.81.0",
35
+ "commit": "not available"
36
+ }
37
+ ]
38
+ }
39
+ },
40
+ {
41
+ "date": "Mon, 15 Dec 2025 16:33:06 GMT",
6
42
  "version": "0.81.0-preview.6",
7
43
  "tag": "@office-iss/react-native-win32_v0.81.0-preview.6",
8
44
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,17 +1,34 @@
1
1
  # Change Log - @office-iss/react-native-win32
2
2
 
3
- <!-- This log was last generated on Mon, 15 Dec 2025 16:32:37 GMT and should not be manually modified. -->
3
+ <!-- This log was last generated on Wed, 14 Jan 2026 06:04:45 GMT and should not be manually modified. -->
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
- ## 0.81.0-preview.6
7
+ ## 0.81.1
8
8
 
9
- Mon, 15 Dec 2025 16:32:37 GMT
9
+ Wed, 14 Jan 2026 06:04:45 GMT
10
10
 
11
- ### Changes
11
+ ### Patches
12
12
 
13
- - Integrate 81.5 (66076509+vineethkuttan@users.noreply.github.com)
13
+ - Fix resolveAssetSource export (30809111+acoates-ms@users.noreply.github.com)
14
14
 
15
+ ## 0.81.0
16
+
17
+ Sat, 20 Dec 2025 12:02:33 GMT
18
+
19
+ ### Patches
20
+
21
+ - Promote 0.81 to latest (66076509+vineethkuttan@users.noreply.github.com)
22
+ - Bump react-native-platform-override to v0.81.0
23
+
24
+ ## 0.81.0-preview.6
25
+
26
+ Mon, 15 Dec 2025 16:33:06 GMT
27
+
28
+ ### Changes
29
+
30
+ - Integrate 81.5 (66076509+vineethkuttan@users.noreply.github.com)
31
+
15
32
  ## 0.81.0-preview.5
16
33
 
17
34
  Wed, 10 Dec 2025 18:44:29 GMT
@@ -33,4 +33,4 @@ function ensureShortPath(str) {
33
33
  return assetsPrefix + hash.toString();
34
34
  }
35
35
 
36
- module.exports = ensureShortPath;
36
+ export default ensureShortPath;
@@ -8,9 +8,9 @@
8
8
 
9
9
  'use strict';
10
10
 
11
- const resolveAssetSource = require('./resolveAssetSource.js'); // Get base impl
12
- const Platform = require('../Utilities/Platform').default;
13
- const ensureShortPath = require('./assetPaths.js');
11
+ import resolveAssetSource from './resolveAssetSource.js'; // Get base impl
12
+ import Platform from '../Utilities/Platform';
13
+ import ensureShortPath from './assetPaths';
14
14
 
15
15
  type IPackagerAsset = {
16
16
  __packager_asset: boolean,
@@ -123,9 +123,10 @@ class AssetResolverLateScaleResolution {
123
123
 
124
124
  // We should leave the resource scale out of the URI, and do that lookup on the native side.
125
125
  // That way we can handle dynamic dpi changes and multimon scenarios better
126
- resolveAssetSource.setCustomSourceTransformer(resolver => {
126
+ function setCustomSourceTransformer(resolver) {
127
127
  const lsrResolver = new AssetResolverLateScaleResolution(resolver);
128
128
  return lsrResolver.defaultAsset();
129
- });
129
+ }
130
130
 
131
- module.exports = resolveAssetSource;
131
+ resolveAssetSource.setCustomSourceTransformer = setCustomSourceTransformer;
132
+ export default resolveAssetSource;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@office-iss/react-native-win32",
3
- "version": "0.81.0-preview.6",
3
+ "version": "0.81.1",
4
4
  "description": "Implementation of react native on top of Office's Win32 platform.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -52,7 +52,7 @@
52
52
  "invariant": "^2.2.4",
53
53
  "jest-environment-node": "^29.7.0",
54
54
  "memoize-one": "^5.0.0",
55
- "metro-runtime": "^0.82.2",
55
+ "metro-runtime": "^0.83.1",
56
56
  "metro-source-map": "^0.82.2",
57
57
  "mkdirp": "^0.5.1",
58
58
  "nullthrows": "^1.1.1",
@@ -89,7 +89,7 @@
89
89
  "prettier": "2.8.8",
90
90
  "react": "19.1.0",
91
91
  "react-native": "0.81.5",
92
- "react-native-platform-override": "0.81.0-preview.10",
92
+ "react-native-platform-override": "0.81.0",
93
93
  "typescript": "5.0.4"
94
94
  },
95
95
  "peerDependencies": {
@@ -98,11 +98,11 @@
98
98
  "react-native": "0.81.5"
99
99
  },
100
100
  "beachball": {
101
- "defaultNpmTag": "preview",
101
+ "defaultNpmTag": "latest",
102
102
  "disallowedChangeTypes": [
103
103
  "major",
104
104
  "minor",
105
- "patch",
105
+ "prerelease",
106
106
  "premajor",
107
107
  "preminor",
108
108
  "prepatch"
@@ -1,6 +1,6 @@
1
1
  // @ts-check
2
- const path = require('path');
3
- const ensureShortPath = require('./Libraries/Image/assetPaths');
2
+ import path from 'path';
3
+ import ensureShortPath from './Libraries/Image/assetPaths';
4
4
 
5
5
  /**
6
6
  * @typedef {import("metro").AssetData} AssetData;