@office-iss/react-native-win32 0.77.1 → 0.77.3

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": "Thu, 27 Feb 2025 20:12:11 GMT",
5
+ "date": "Mon, 07 Apr 2025 15:25:36 GMT",
6
+ "version": "0.77.3",
7
+ "tag": "@office-iss/react-native-win32_v0.77.3",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "tatianakapos@microsoft.com",
12
+ "package": "@office-iss/react-native-win32",
13
+ "commit": "228eea1987290b0df2a8eb104fad98ed5cd8ecb8",
14
+ "comment": "use non-alpha version of @react-native-community/cli"
15
+ }
16
+ ]
17
+ }
18
+ },
19
+ {
20
+ "date": "Mon, 17 Mar 2025 15:30:02 GMT",
21
+ "version": "0.77.2",
22
+ "tag": "@office-iss/react-native-win32_v0.77.2",
23
+ "comments": {
24
+ "patch": [
25
+ {
26
+ "author": "tatianakapos@microsoft.com",
27
+ "package": "@office-iss/react-native-win32",
28
+ "commit": "f11ceab457bb81ac1848e0c2b6ca2e7f7cac35dc",
29
+ "comment": "integrate 0.77.1"
30
+ },
31
+ {
32
+ "author": "julio.rocha@microsoft.com",
33
+ "package": "@office-iss/react-native-win32",
34
+ "commit": "a1574f6381eab469ed68378ca9711dad8756fe8c",
35
+ "comment": "Refactor WebSocket resource class (#14377)"
36
+ }
37
+ ]
38
+ }
39
+ },
40
+ {
41
+ "date": "Thu, 27 Feb 2025 20:13:38 GMT",
6
42
  "version": "0.77.1",
7
43
  "tag": "@office-iss/react-native-win32_v0.77.1",
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 Thu, 27 Feb 2025 20:12:11 GMT and should not be manually modified. -->
3
+ <!-- This log was last generated on Mon, 07 Apr 2025 15:25:36 GMT and should not be manually modified. -->
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
- ## 0.77.1
7
+ ## 0.77.3
8
8
 
9
- Thu, 27 Feb 2025 20:12:11 GMT
9
+ Mon, 07 Apr 2025 15:25:36 GMT
10
10
 
11
11
  ### Patches
12
12
 
13
- - Promote 0.77 to legacy (tatianakapos@microsoft.com)
13
+ - use non-alpha version of @react-native-community/cli (tatianakapos@microsoft.com)
14
14
 
15
+ ## 0.77.2
16
+
17
+ Mon, 17 Mar 2025 15:30:02 GMT
18
+
19
+ ### Patches
20
+
21
+ - integrate 0.77.1 (tatianakapos@microsoft.com)
22
+ - Refactor WebSocket resource class (#14377) (julio.rocha@microsoft.com)
23
+
24
+ ## 0.77.1
25
+
26
+ Thu, 27 Feb 2025 20:13:38 GMT
27
+
28
+ ### Patches
29
+
30
+ - Promote 0.77 to legacy (tatianakapos@microsoft.com)
31
+
15
32
  ## 0.77.0
16
33
 
17
34
  Fri, 24 Jan 2025 21:11:34 GMT
@@ -16,7 +16,7 @@ const version: $ReadOnly<{
16
16
  }> = {
17
17
  major: 0,
18
18
  minor: 77,
19
- patch: 0,
19
+ patch: 1,
20
20
  prerelease: null,
21
21
  };
22
22
 
@@ -42,9 +42,8 @@ if (__DEV__) {
42
42
  if (!Platform.isTesting) {
43
43
  const HMRClient = require('../Utilities/HMRClient');
44
44
 
45
- if (global.__FUSEBOX_HAS_FULL_CONSOLE_SUPPORT__) {
46
- HMRClient.unstable_notifyFuseboxConsoleEnabled();
47
- } else if (console._isPolyfilled) {
45
+ // TODO(T214991636): Remove legacy Metro log forwarding
46
+ if (console._isPolyfilled) {
48
47
  // We assume full control over the console and send JavaScript logs to Metro.
49
48
  [
50
49
  'trace',
@@ -26,7 +26,6 @@ let hmrUnavailableReason: string | null = null;
26
26
  let currentCompileErrorMessage: string | null = null;
27
27
  let didConnect: boolean = false;
28
28
  let pendingLogs: Array<[LogLevel, $ReadOnlyArray<mixed>]> = [];
29
- let pendingFuseboxConsoleNotification = false;
30
29
 
31
30
  type LogLevel =
32
31
  | 'trace'
@@ -52,7 +51,6 @@ export type HMRClientNativeInterface = {|
52
51
  isEnabled: boolean,
53
52
  scheme?: string,
54
53
  ): void,
55
- unstable_notifyFuseboxConsoleEnabled(): void,
56
54
  |};
57
55
 
58
56
  /**
@@ -142,29 +140,6 @@ const HMRClient: HMRClientNativeInterface = {
142
140
  }
143
141
  },
144
142
 
145
- unstable_notifyFuseboxConsoleEnabled() {
146
- if (!hmrClient) {
147
- pendingFuseboxConsoleNotification = true;
148
- return;
149
- }
150
- hmrClient.send(
151
- JSON.stringify({
152
- type: 'log',
153
- level: 'info',
154
- data: [
155
- '\n' +
156
- '\u001B[7m' +
157
- ' \u001B[1m💡 JavaScript logs have moved!\u001B[22m They can now be ' +
158
- 'viewed in React Native DevTools. Tip: Type \u001B[1mj\u001B[22m in ' +
159
- 'the terminal to open (requires Google Chrome or Microsoft Edge).' +
160
- '\u001B[27m' +
161
- '\n',
162
- ],
163
- }),
164
- );
165
- pendingFuseboxConsoleNotification = false;
166
- },
167
-
168
143
  // Called once by the bridge on startup, even if Fast Refresh is off.
169
144
  // It creates the HMR client but doesn't actually set up the socket yet.
170
145
  setup(
@@ -341,9 +316,6 @@ function flushEarlyLogs(client: MetroHMRClient) {
341
316
  pendingLogs.forEach(([level, data]) => {
342
317
  HMRClient.log(level, data);
343
318
  });
344
- if (pendingFuseboxConsoleNotification) {
345
- HMRClient.unstable_notifyFuseboxConsoleEnabled();
346
- }
347
319
  } finally {
348
320
  pendingLogs.length = 0;
349
321
  }
@@ -25,7 +25,6 @@ const HMRClientProdShim: HMRClientNativeInterface = {
25
25
  disable() {},
26
26
  registerBundle() {},
27
27
  log() {},
28
- unstable_notifyFuseboxConsoleEnabled() {},
29
28
  };
30
29
 
31
30
  module.exports = HMRClientProdShim;
package/overrides.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "**/__snapshots__/**",
8
8
  "src-win/rntypes/**"
9
9
  ],
10
- "baseVersion": "0.77.0",
10
+ "baseVersion": "0.77.1",
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.77.1",
3
+ "version": "0.77.3",
4
4
  "description": "Implementation of react native on top of Office's Win32 platform.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -26,17 +26,17 @@
26
26
  "dependencies": {
27
27
  "@babel/runtime": "^7.0.0",
28
28
  "@jest/create-cache-key-function": "^29.6.3",
29
- "@react-native-community/cli": "15.0.0-alpha.2",
30
- "@react-native-community/cli-platform-android": "15.0.0-alpha.2",
31
- "@react-native-community/cli-platform-ios": "15.0.0-alpha.2",
29
+ "@react-native-community/cli": "^15.0.0",
30
+ "@react-native-community/cli-platform-android": "^15.0.0",
31
+ "@react-native-community/cli-platform-ios": "^15.0.0",
32
32
  "@react-native/assets": "1.0.0",
33
- "@react-native/assets-registry": "0.77.0",
34
- "@react-native/codegen": "0.77.0",
35
- "@react-native/community-cli-plugin": "0.77.0",
36
- "@react-native/gradle-plugin": "0.77.0",
37
- "@react-native/js-polyfills": "0.77.0",
38
- "@react-native/normalize-colors": "0.77.0",
39
- "@react-native/virtualized-lists": "0.77.0",
33
+ "@react-native/assets-registry": "0.77.1",
34
+ "@react-native/codegen": "0.77.1",
35
+ "@react-native/community-cli-plugin": "0.77.1",
36
+ "@react-native/gradle-plugin": "0.77.1",
37
+ "@react-native/js-polyfills": "0.77.1",
38
+ "@react-native/normalize-colors": "0.77.1",
39
+ "@react-native/virtualized-lists": "0.77.1",
40
40
  "abort-controller": "^3.0.0",
41
41
  "anser": "^1.4.9",
42
42
  "ansi-regex": "^5.0.0",
@@ -90,7 +90,7 @@
90
90
  "just-scripts": "^1.3.3",
91
91
  "prettier": "2.8.8",
92
92
  "react": "18.3.1",
93
- "react-native": "0.77.0",
93
+ "react-native": "0.77.1",
94
94
  "react-native-platform-override": "^1.9.49",
95
95
  "typescript": "5.0.4"
96
96
  },