react-native 0.73.0-rc.6 → 0.73.0-rc.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.
@@ -13,5 +13,5 @@ exports.version = {
13
13
  major: 0,
14
14
  minor: 73,
15
15
  patch: 0,
16
- prerelease: 'rc.6',
16
+ prerelease: 'rc.7',
17
17
  };
@@ -24,7 +24,7 @@ NSDictionary* RCTGetReactNativeVersion(void)
24
24
  RCTVersionMajor: @(0),
25
25
  RCTVersionMinor: @(73),
26
26
  RCTVersionPatch: @(0),
27
- RCTVersionPrerelease: @"rc.6",
27
+ RCTVersionPrerelease: @"rc.7",
28
28
  };
29
29
  });
30
30
  return __rnVersion;
@@ -1,4 +1,4 @@
1
- VERSION_NAME=0.73.0-rc.6
1
+ VERSION_NAME=0.73.0-rc.7
2
2
  react.internal.publishingGroup=com.facebook.react
3
3
 
4
4
  android.useAndroidX=true
@@ -1278,14 +1278,12 @@ public class ReactInstanceManager {
1278
1278
  uiManager.stopSurface(surfaceId);
1279
1279
  } else {
1280
1280
  FLog.w(ReactConstants.TAG, "Failed to stop surface, UIManager has already gone away");
1281
- reactRoot.getRootViewGroup().removeAllViews();
1282
1281
  }
1283
1282
  } else {
1284
1283
  ReactSoftExceptionLogger.logSoftException(
1285
1284
  TAG,
1286
1285
  new RuntimeException(
1287
1286
  "detachRootViewFromInstance called with ReactRootView with invalid id"));
1288
- reactRoot.getRootViewGroup().removeAllViews();
1289
1287
  }
1290
1288
  } else {
1291
1289
  reactContext
@@ -1294,8 +1292,7 @@ public class ReactInstanceManager {
1294
1292
  .unmountApplicationComponentAtRootTag(reactRoot.getRootViewTag());
1295
1293
  }
1296
1294
 
1297
- // The view is no longer attached, so mark it as such by resetting its ID.
1298
- reactRoot.getRootViewGroup().setId(View.NO_ID);
1295
+ clearReactRoot(reactRoot);
1299
1296
  }
1300
1297
 
1301
1298
  @ThreadConfined(UI)
@@ -18,5 +18,5 @@ public class ReactNativeVersion {
18
18
  "major", 0,
19
19
  "minor", 73,
20
20
  "patch", 0,
21
- "prerelease", "rc.6");
21
+ "prerelease", "rc.7");
22
22
  }
@@ -18,7 +18,7 @@ constexpr struct {
18
18
  int32_t Major = 0;
19
19
  int32_t Minor = 73;
20
20
  int32_t Patch = 0;
21
- std::string_view Prerelease = "rc.6";
21
+ std::string_view Prerelease = "rc.7";
22
22
  } ReactNativeVersion;
23
23
 
24
24
  } // namespace facebook::react
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native",
3
- "version": "0.73.0-rc.6",
3
+ "version": "0.73.0-rc.7",
4
4
  "description": "A framework for building native apps using React",
5
5
  "license": "MIT",
6
6
  "repository": {
Binary file
Binary file
Binary file
@@ -11,7 +11,7 @@
11
11
  },
12
12
  "dependencies": {
13
13
  "react": "18.2.0",
14
- "react-native": "0.73.0-rc.6"
14
+ "react-native": "0.73.0-rc.7"
15
15
  },
16
16
  "devDependencies": {
17
17
  "@babel/core": "^7.20.0",