react-native 0.72.2 → 0.72.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.
@@ -12,6 +12,6 @@
12
12
  exports.version = {
13
13
  major: 0,
14
14
  minor: 72,
15
- patch: 2,
15
+ patch: 3,
16
16
  prerelease: null,
17
17
  };
@@ -23,7 +23,7 @@ NSDictionary* RCTGetReactNativeVersion(void)
23
23
  __rnVersion = @{
24
24
  RCTVersionMajor: @(0),
25
25
  RCTVersionMinor: @(72),
26
- RCTVersionPatch: @(2),
26
+ RCTVersionPatch: @(3),
27
27
  RCTVersionPrerelease: [NSNull null],
28
28
  };
29
29
  });
@@ -1,4 +1,4 @@
1
- VERSION_NAME=0.72.2
1
+ VERSION_NAME=0.72.3
2
2
  GROUP=com.facebook.react
3
3
 
4
4
  # JVM Versions
@@ -17,6 +17,6 @@ public class ReactNativeVersion {
17
17
  public static final Map<String, Object> VERSION = MapBuilder.<String, Object>of(
18
18
  "major", 0,
19
19
  "minor", 72,
20
- "patch", 2,
20
+ "patch", 3,
21
21
  "prerelease", null);
22
22
  }
@@ -33,8 +33,7 @@ Pod::Spec.new do |s|
33
33
  s.source = source
34
34
  s.source_files = "dummyFile.cpp"
35
35
  s.pod_target_xcconfig = { "USE_HEADERMAP" => "YES",
36
- "CLANG_CXX_LANGUAGE_STANDARD" => "c++17",
37
- "DEFINES_MODULE" => "YES" }
36
+ "CLANG_CXX_LANGUAGE_STANDARD" => "c++17" }
38
37
 
39
38
  if ENV['USE_FRAMEWORKS']
40
39
  s.header_mappings_dir = File.absolute_path('./')
@@ -17,7 +17,7 @@ namespace facebook::react {
17
17
  constexpr struct {
18
18
  int32_t Major = 0;
19
19
  int32_t Minor = 72;
20
- int32_t Patch = 2;
20
+ int32_t Patch = 3;
21
21
  std::string_view Prerelease = "";
22
22
  } ReactNativeVersion;
23
23
 
@@ -36,8 +36,7 @@ Pod::Spec.new do |s|
36
36
 
37
37
  s.header_dir = "jsi"
38
38
  s.compiler_flags = folly_compiler_flags + ' ' + boost_compiler_flags
39
- s.pod_target_xcconfig = { "HEADER_SEARCH_PATHS" => "\"$(PODS_ROOT)/boost\" \"$(PODS_ROOT)/RCT-Folly\" \"$(PODS_ROOT)/DoubleConversion\"",
40
- "DEFINES_MODULE" => "YES" }
39
+ s.pod_target_xcconfig = { "HEADER_SEARCH_PATHS" => "\"$(PODS_ROOT)/boost\" \"$(PODS_ROOT)/RCT-Folly\" \"$(PODS_ROOT)/DoubleConversion\"" }
41
40
 
42
41
  s.dependency "boost", "1.76.0"
43
42
  s.dependency "DoubleConversion"
@@ -27,8 +27,7 @@ Pod::Spec.new do |s|
27
27
  s.source = source
28
28
  s.source_files = "**/*.{cpp,h}"
29
29
  s.header_dir = "react/debug"
30
- s.pod_target_xcconfig = { "CLANG_CXX_LANGUAGE_STANDARD" => "c++17",
31
- "DEFINES_MODULE" => "YES" }
30
+ s.pod_target_xcconfig = { "CLANG_CXX_LANGUAGE_STANDARD" => "c++17" }
32
31
 
33
32
  if ENV['USE_FRAMEWORKS']
34
33
  s.module_name = "React_debug"
@@ -49,9 +49,7 @@ Pod::Spec.new do |s|
49
49
  header_search_paths = header_search_paths + ["\"$(PODS_TARGET_SRCROOT)/platform/ios\""]
50
50
  end
51
51
 
52
- s.pod_target_xcconfig = { "USE_HEADERMAP" => "NO",
53
- "HEADER_SEARCH_PATHS" => header_search_paths.join(" "),
54
- "DEFINES_MODULE" => "YES" }
52
+ s.pod_target_xcconfig = { "USE_HEADERMAP" => "NO", "HEADER_SEARCH_PATHS" => header_search_paths.join(" ") }
55
53
 
56
54
  s.dependency "glog"
57
55
  s.dependency "RCT-Folly/Fabric", folly_version
@@ -42,9 +42,9 @@ Pod::Spec.new do |s|
42
42
  s.compiler_flags = folly_compiler_flags
43
43
  s.header_dir = "react/utils"
44
44
  s.exclude_files = "tests"
45
- s.pod_target_xcconfig = { "CLANG_CXX_LANGUAGE_STANDARD" => "c++17",
46
- "HEADER_SEARCH_PATHS" => header_search_paths.join(' '),
47
- "DEFINES_MODULE" => "YES" }
45
+ s.pod_target_xcconfig = {
46
+ "CLANG_CXX_LANGUAGE_STANDARD" => "c++17",
47
+ "HEADER_SEARCH_PATHS" => header_search_paths.join(' ')}
48
48
 
49
49
  if ENV['USE_FRAMEWORKS']
50
50
  s.module_name = "React_utils"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native",
3
- "version": "0.72.2",
3
+ "version": "0.72.3",
4
4
  "bin": "./cli.js",
5
5
  "description": "A framework for building native apps using React",
6
6
  "license": "MIT",
@@ -139,7 +139,7 @@ def use_react_native! (
139
139
  pod 'Yoga', :path => "#{prefix}/ReactCommon/yoga", :modular_headers => true
140
140
 
141
141
  pod 'DoubleConversion', :podspec => "#{prefix}/third-party-podspecs/DoubleConversion.podspec"
142
- pod 'glog', :podspec => "#{prefix}/third-party-podspecs/glog.podspec", :modular_headers => true
142
+ pod 'glog', :podspec => "#{prefix}/third-party-podspecs/glog.podspec"
143
143
  pod 'boost', :podspec => "#{prefix}/third-party-podspecs/boost.podspec"
144
144
  pod 'RCT-Folly', :podspec => "#{prefix}/third-party-podspecs/RCT-Folly.podspec", :modular_headers => true
145
145
 
Binary file
Binary file
@@ -11,7 +11,7 @@
11
11
  },
12
12
  "dependencies": {
13
13
  "react": "18.2.0",
14
- "react-native": "0.72.2"
14
+ "react-native": "0.72.3"
15
15
  },
16
16
  "devDependencies": {
17
17
  "@babel/core": "^7.20.0",