@office-iss/react-native-win32 0.83.0-preview.1 → 0.83.0

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
@@ -1,6 +1,42 @@
1
1
  {
2
2
  "name": "@office-iss/react-native-win32",
3
3
  "entries": [
4
+ {
5
+ "date": "Tue, 26 May 2026 08:35:27 GMT",
6
+ "version": "0.83.0",
7
+ "tag": "@office-iss/react-native-win32_v0.83.0",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "66076509+vineethkuttan@users.noreply.github.com",
12
+ "package": "@office-iss/react-native-win32",
13
+ "commit": "0fc74b3bd7d368b133e5633b387a79b4df844a96",
14
+ "comment": "Promote 0.83 to latest"
15
+ },
16
+ {
17
+ "author": "beachball",
18
+ "package": "@office-iss/react-native-win32",
19
+ "comment": "Bump react-native-platform-override to v0.83.0",
20
+ "commit": "not available"
21
+ }
22
+ ]
23
+ }
24
+ },
25
+ {
26
+ "date": "Wed, 22 Apr 2026 14:36:47 GMT",
27
+ "version": "0.83.0-preview.2",
28
+ "tag": "@office-iss/react-native-win32_v0.83.0-preview.2",
29
+ "comments": {
30
+ "prerelease": [
31
+ {
32
+ "author": "protikbiswas@microsoft.com",
33
+ "package": "@office-iss/react-native-win32",
34
+ "commit": "d23bf1e20c21916c5c28bf4d5c781aa58e3999f5",
35
+ "comment": "updating react-native version to 0.83.4 from RC builds"
36
+ }
37
+ ]
38
+ }
39
+ },
4
40
  {
5
41
  "date": "Thu, 26 Mar 2026 12:02:27 GMT",
6
42
  "version": "0.83.0-preview.1",
package/CHANGELOG.md CHANGED
@@ -1,9 +1,26 @@
1
1
  # Change Log - @office-iss/react-native-win32
2
2
 
3
- <!-- This log was last generated on Thu, 26 Mar 2026 12:02:27 GMT and should not be manually modified. -->
3
+ <!-- This log was last generated on Tue, 26 May 2026 08:35:27 GMT and should not be manually modified. -->
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 0.83.0
8
+
9
+ Tue, 26 May 2026 08:35:27 GMT
10
+
11
+ ### Patches
12
+
13
+ - Promote 0.83 to latest (66076509+vineethkuttan@users.noreply.github.com)
14
+ - Bump react-native-platform-override to v0.83.0
15
+
16
+ ## 0.83.0-preview.2
17
+
18
+ Wed, 22 Apr 2026 14:36:47 GMT
19
+
20
+ ### Changes
21
+
22
+ - updating react-native version to 0.83.4 from RC builds (protikbiswas@microsoft.com)
23
+
7
24
  ## 0.83.0-preview.1
8
25
 
9
26
  Thu, 26 Mar 2026 12:02:27 GMT
@@ -28,8 +28,8 @@
28
28
  export default class ReactNativeVersion {
29
29
  static major: number = 0;
30
30
  static minor: number = 83;
31
- static patch: number = 0;
32
- static prerelease: string | null = 'rc.5';
31
+ static patch: number = 4;
32
+ static prerelease: string | null = null;
33
33
 
34
34
  static getVersionString(): string {
35
35
  return `${this.major}.${this.minor}.${this.patch}${this.prerelease != null ? `-${this.prerelease}` : ''}`;
@@ -146,17 +146,34 @@ if (__DEV__) {
146
146
  ? guessHostFromDevServerUrl(devServer.url)
147
147
  : 'localhost';
148
148
 
149
- // Read the optional global variable for backward compatibility.
150
- // It was added in https://github.com/facebook/react-native/commit/bf2b435322e89d0aeee8792b1c6e04656c2719a0.
151
- const port =
149
+ // Derive scheme and port from the dev server URL when possible,
150
+ // falling back to ws://host:8097 for local development.
151
+ let wsScheme = 'ws';
152
+ let port = 8097;
153
+
154
+ if (
152
155
  // $FlowFixMe[prop-missing]
153
156
  // $FlowFixMe[incompatible-use]
154
157
  window.__REACT_DEVTOOLS_PORT__ != null
155
- ? window.__REACT_DEVTOOLS_PORT__
156
- : 8097;
158
+ ) {
159
+ // $FlowFixMe[prop-missing]
160
+ port = window.__REACT_DEVTOOLS_PORT__;
161
+ } else if (devServer.bundleLoadedFromServer) {
162
+ try {
163
+ const devUrl = new URL(devServer.url);
164
+ if (devUrl.protocol === 'https:') {
165
+ wsScheme = 'wss';
166
+ }
167
+ if (devUrl.port) {
168
+ port = parseInt(devUrl.port, 10);
169
+ } else if (devUrl.protocol === 'https:') {
170
+ port = 443;
171
+ }
172
+ } catch (e) {}
173
+ }
157
174
 
158
175
  const WebSocket = require('../WebSocket/WebSocket').default;
159
- ws = new WebSocket('ws://' + host + ':' + port);
176
+ ws = new WebSocket(wsScheme + '://' + host + ':' + port);
160
177
  ws.addEventListener('close', event => {
161
178
  isWebSocketOpen = false;
162
179
  });
package/overrides.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "**/__snapshots__/**",
8
8
  "src-win/rntypes/**"
9
9
  ],
10
- "baseVersion": "0.83.0-rc.5",
10
+ "baseVersion": "0.83.4",
11
11
  "overrides": [
12
12
  {
13
13
  "type": "derived",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@office-iss/react-native-win32",
3
- "version": "0.83.0-preview.1",
3
+ "version": "0.83.0",
4
4
  "description": "Implementation of react native on top of Office's Win32 platform.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -30,13 +30,13 @@
30
30
  "@react-native-community/cli-platform-android": "20.0.0",
31
31
  "@react-native-community/cli-platform-ios": "20.0.0",
32
32
  "@react-native/assets": "1.0.0",
33
- "@react-native/assets-registry": "0.83.0-rc.5",
34
- "@react-native/codegen": "0.83.0-rc.5",
35
- "@react-native/community-cli-plugin": "0.83.0-rc.5",
36
- "@react-native/gradle-plugin": "0.83.0-rc.5",
37
- "@react-native/js-polyfills": "0.83.0-rc.5",
38
- "@react-native/normalize-colors": "0.83.0-rc.5",
39
- "@react-native/virtualized-lists": "0.83.0-rc.5",
33
+ "@react-native/assets-registry": "0.83.4",
34
+ "@react-native/codegen": "0.83.4",
35
+ "@react-native/community-cli-plugin": "0.83.4",
36
+ "@react-native/gradle-plugin": "0.83.4",
37
+ "@react-native/js-polyfills": "0.83.4",
38
+ "@react-native/normalize-colors": "0.83.4",
39
+ "@react-native/virtualized-lists": "0.83.4",
40
40
  "abort-controller": "^3.0.0",
41
41
  "anser": "^1.4.9",
42
42
  "ansi-regex": "^5.0.0",
@@ -49,7 +49,7 @@
49
49
  "event-target-shim": "^5.0.1",
50
50
  "flow-enums-runtime": "^0.0.6",
51
51
  "glob": "^7.1.1",
52
- "hermes-compiler": "0.14.0",
52
+ "hermes-compiler": "0.14.1",
53
53
  "invariant": "^2.2.4",
54
54
  "jest-environment-node": "^29.7.0",
55
55
  "memoize-one": "^5.0.0",
@@ -73,7 +73,7 @@
73
73
  "devDependencies": {
74
74
  "@babel/core": "^7.25.2",
75
75
  "@babel/eslint-parser": "^7.25.1",
76
- "@react-native/metro-config": "0.83.0-rc.5",
76
+ "@react-native/metro-config": "0.83.4",
77
77
  "@rnw-scripts/babel-react-native-config": "0.0.0",
78
78
  "@rnw-scripts/eslint-config": "1.2.38",
79
79
  "@rnw-scripts/jest-out-of-tree-snapshot-resolver": "^1.1.42",
@@ -90,21 +90,21 @@
90
90
  "just-scripts": "^1.3.3",
91
91
  "prettier": "2.8.8",
92
92
  "react": "19.2.0",
93
- "react-native": "0.83.0-rc.5",
94
- "react-native-platform-override": "0.83.0-preview.1",
93
+ "react-native": "0.83.4",
94
+ "react-native-platform-override": "0.83.0",
95
95
  "typescript": "5.0.4"
96
96
  },
97
97
  "peerDependencies": {
98
98
  "@types/react": "^19.1.1",
99
99
  "react": "^19.2.0",
100
- "react-native": "0.83.0-rc.5"
100
+ "react-native": "^0.83.0"
101
101
  },
102
102
  "beachball": {
103
- "defaultNpmTag": "preview",
103
+ "defaultNpmTag": "latest",
104
104
  "disallowedChangeTypes": [
105
105
  "major",
106
106
  "minor",
107
- "patch",
107
+ "prerelease",
108
108
  "premajor",
109
109
  "preminor",
110
110
  "prepatch"