react-native 0.83.0-rc.2 → 0.83.0-rc.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.
@@ -29,7 +29,7 @@ export default class ReactNativeVersion {
29
29
  static major: number = 0;
30
30
  static minor: number = 83;
31
31
  static patch: number = 0;
32
- static prerelease: string | null = 'rc.2';
32
+ static prerelease: string | null = 'rc.3';
33
33
 
34
34
  static getVersionString(): string {
35
35
  return `${this.major}.${this.minor}.${this.patch}${this.prerelease != null ? `-${this.prerelease}` : ''}`;
@@ -24,7 +24,7 @@ NSDictionary* RCTGetReactNativeVersion(void)
24
24
  RCTVersionMajor: @(0),
25
25
  RCTVersionMinor: @(83),
26
26
  RCTVersionPatch: @(0),
27
- RCTVersionPrerelease: @"rc.2",
27
+ RCTVersionPrerelease: @"rc.3",
28
28
  };
29
29
  });
30
30
  return __rnVersion;
@@ -1,4 +1,4 @@
1
- VERSION_NAME=0.83.0-rc.2
1
+ VERSION_NAME=0.83.0-rc.3
2
2
  react.internal.publishingGroup=com.facebook.react
3
3
  react.internal.hermesPublishingGroup=com.facebook.hermes
4
4
 
@@ -15,6 +15,6 @@ public object ReactNativeVersion {
15
15
  "major" to 0,
16
16
  "minor" to 83,
17
17
  "patch" to 0,
18
- "prerelease" to "rc.2"
18
+ "prerelease" to "rc.3"
19
19
  )
20
20
  }
@@ -22,7 +22,7 @@ constexpr struct {
22
22
  int32_t Major = 0;
23
23
  int32_t Minor = 83;
24
24
  int32_t Patch = 0;
25
- std::string_view Prerelease = "rc.2";
25
+ std::string_view Prerelease = "rc.3";
26
26
  } ReactNativeVersion;
27
27
 
28
28
  } // namespace facebook::react
@@ -21,3 +21,10 @@ target_link_libraries(react_networking
21
21
  jsinspector_tracing
22
22
  react_performance_timeline
23
23
  react_timing)
24
+
25
+ if(${CMAKE_BUILD_TYPE} MATCHES Debug OR REACT_NATIVE_DEBUG_OPTIMIZED)
26
+ target_compile_options(react_networking PRIVATE
27
+ -DREACT_NATIVE_DEBUGGER_ENABLED=1
28
+ -DREACT_NATIVE_DEBUGGER_ENABLED_DEVONLY=1
29
+ )
30
+ endif ()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native",
3
- "version": "0.83.0-rc.2",
3
+ "version": "0.83.0-rc.3",
4
4
  "description": "A framework for building native apps using React",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -160,13 +160,13 @@
160
160
  },
161
161
  "dependencies": {
162
162
  "@jest/create-cache-key-function": "^29.7.0",
163
- "@react-native/assets-registry": "0.83.0-rc.2",
164
- "@react-native/codegen": "0.83.0-rc.2",
165
- "@react-native/community-cli-plugin": "0.83.0-rc.2",
166
- "@react-native/gradle-plugin": "0.83.0-rc.2",
167
- "@react-native/js-polyfills": "0.83.0-rc.2",
168
- "@react-native/normalize-colors": "0.83.0-rc.2",
169
- "@react-native/virtualized-lists": "0.83.0-rc.2",
163
+ "@react-native/assets-registry": "0.83.0-rc.3",
164
+ "@react-native/codegen": "0.83.0-rc.3",
165
+ "@react-native/community-cli-plugin": "0.83.0-rc.3",
166
+ "@react-native/gradle-plugin": "0.83.0-rc.3",
167
+ "@react-native/js-polyfills": "0.83.0-rc.3",
168
+ "@react-native/normalize-colors": "0.83.0-rc.3",
169
+ "@react-native/virtualized-lists": "0.83.0-rc.3",
170
170
  "abort-controller": "^3.0.0",
171
171
  "anser": "^1.4.9",
172
172
  "ansi-regex": "^5.0.0",
@@ -59,8 +59,10 @@ class ReactNativePodsUtils
59
59
  def self.set_gcc_preprocessor_definition_for_debugger(installer)
60
60
  self.add_build_settings_to_pod(installer, "GCC_PREPROCESSOR_DEFINITIONS", "REACT_NATIVE_DEBUGGER_ENABLED=1", "React-jsinspector", :debug)
61
61
  self.add_build_settings_to_pod(installer, "GCC_PREPROCESSOR_DEFINITIONS", "REACT_NATIVE_DEBUGGER_ENABLED=1", "React-RCTNetwork", :debug)
62
+ self.add_build_settings_to_pod(installer, "GCC_PREPROCESSOR_DEFINITIONS", "REACT_NATIVE_DEBUGGER_ENABLED=1", "React-networking", :debug)
62
63
  self.add_build_settings_to_pod(installer, "GCC_PREPROCESSOR_DEFINITIONS", "REACT_NATIVE_DEBUGGER_ENABLED_DEVONLY=1", "React-jsinspector", :debug)
63
64
  self.add_build_settings_to_pod(installer, "GCC_PREPROCESSOR_DEFINITIONS", "REACT_NATIVE_DEBUGGER_ENABLED_DEVONLY=1", "React-RCTNetwork", :debug)
65
+ self.add_build_settings_to_pod(installer, "GCC_PREPROCESSOR_DEFINITIONS", "REACT_NATIVE_DEBUGGER_ENABLED_DEVONLY=1", "React-networking", :debug)
64
66
  end
65
67
 
66
68
  def self.turn_off_resource_bundle_react_core(installer)
@@ -1 +1 @@
1
- hermes-v250829098.0.3
1
+ hermes-v250829098.0.4
@@ -1,2 +1,2 @@
1
1
  HERMES_VERSION_NAME=0.14.0
2
- HERMES_V1_VERSION_NAME=250829098.0.3
2
+ HERMES_V1_VERSION_NAME=250829098.0.4