@office-iss/react-native-win32 0.81.0 → 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,22 @@
2
2
  "name": "@office-iss/react-native-win32",
3
3
  "entries": [
4
4
  {
5
- "date": "Sat, 20 Dec 2025 12:01:47 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",
6
21
  "version": "0.81.0",
7
22
  "tag": "@office-iss/react-native-win32_v0.81.0",
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 Sat, 20 Dec 2025 12:01:47 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
7
+ ## 0.81.1
8
8
 
9
- Sat, 20 Dec 2025 12:01:47 GMT
9
+ Wed, 14 Jan 2026 06:04:45 GMT
10
10
 
11
11
  ### Patches
12
12
 
13
- - Promote 0.81 to latest (66076509+vineethkuttan@users.noreply.github.com)
14
- - Bump react-native-platform-override to v0.81.0
13
+ - Fix resolveAssetSource export (30809111+acoates-ms@users.noreply.github.com)
15
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
+
16
24
  ## 0.81.0-preview.6
17
25
 
18
26
  Mon, 15 Dec 2025 16:33:06 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",
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",
@@ -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;