@office-iss/react-native-win32 0.72.6 → 0.72.7

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, 09 Oct 2023 15:13:04 GMT",
5
+ "date": "Mon, 16 Oct 2023 23:50:25 GMT",
6
+ "tag": "@office-iss/react-native-win32_v0.72.7",
7
+ "version": "0.72.7",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "jthysell@microsoft.com",
12
+ "package": "@office-iss/react-native-win32",
13
+ "commit": "9cf08d5f6bc6d07b1490a6ead29994a7e14ad1ef",
14
+ "comment": "Integrate RN 0.72.6"
15
+ }
16
+ ]
17
+ }
18
+ },
19
+ {
20
+ "date": "Mon, 09 Oct 2023 15:13:27 GMT",
6
21
  "tag": "@office-iss/react-native-win32_v0.72.6",
7
22
  "version": "0.72.6",
8
23
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,17 +1,25 @@
1
1
  # Change Log - @office-iss/react-native-win32
2
2
 
3
- This log was last generated on Mon, 09 Oct 2023 15:13:04 GMT and should not be manually modified.
3
+ This log was last generated on Mon, 16 Oct 2023 23:50:25 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
- ## 0.72.6
7
+ ## 0.72.7
8
8
 
9
- Mon, 09 Oct 2023 15:13:04 GMT
9
+ Mon, 16 Oct 2023 23:50:25 GMT
10
10
 
11
11
  ### Patches
12
12
 
13
- - Have RCTNetworking.win32 fork RCTNetworking.ios (#12199) (julio.rocha@microsoft.com)
13
+ - Integrate RN 0.72.6 (jthysell@microsoft.com)
14
14
 
15
+ ## 0.72.6
16
+
17
+ Mon, 09 Oct 2023 15:13:27 GMT
18
+
19
+ ### Patches
20
+
21
+ - Have RCTNetworking.win32 fork RCTNetworking.ios (#12199) (julio.rocha@microsoft.com)
22
+
15
23
  ## 0.72.5
16
24
 
17
25
  Wed, 27 Sep 2023 21:02:34 GMT
@@ -12,6 +12,6 @@
12
12
  exports.version = {
13
13
  major: 0,
14
14
  minor: 72,
15
- patch: 5,
15
+ patch: 6,
16
16
  prerelease: null,
17
17
  };
@@ -109,7 +109,9 @@ export default class EventEmitter<TEventToArgsMap: {...}>
109
109
  Registration<$ElementType<TEventToArgsMap, TEvent>>,
110
110
  > = this._registry[eventType];
111
111
  if (registrations != null) {
112
- for (const registration of [...registrations]) {
112
+ // Copy `registrations` to take a snapshot when we invoke `emit`, in case
113
+ // registrations are added or removed when listeners are invoked.
114
+ for (const registration of Array.from(registrations)) {
113
115
  registration.listener.apply(registration.context, args);
114
116
  }
115
117
  }
package/overrides.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "**/__snapshots__/**",
8
8
  "src/rntypes/**"
9
9
  ],
10
- "baseVersion": "0.72.5",
10
+ "baseVersion": "0.72.6",
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.72.6",
3
+ "version": "0.72.7",
4
4
  "description": "Implementation of react native on top of Office's Win32 platform.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -83,7 +83,7 @@
83
83
  "just-scripts": "^1.3.3",
84
84
  "prettier": "^2.4.1",
85
85
  "react": "18.2.0",
86
- "react-native": "0.72.5",
86
+ "react-native": "0.72.6",
87
87
  "react-native-platform-override": "^1.9.4",
88
88
  "typescript": "^4.9.5"
89
89
  },