react-native 0.85.0-rc.5 → 0.85.0-rc.6

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 = 85;
31
31
  static patch: number = 0;
32
- static prerelease: string | null = 'rc.5';
32
+ static prerelease: string | null = 'rc.6';
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: @(85),
26
26
  RCTVersionPatch: @(0),
27
- RCTVersionPrerelease: @"rc.5",
27
+ RCTVersionPrerelease: @"rc.6",
28
28
  };
29
29
  });
30
30
  return __rnVersion;
@@ -1,4 +1,4 @@
1
- VERSION_NAME=0.85.0-rc.5
1
+ VERSION_NAME=0.85.0-rc.6
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 85,
17
17
  "patch" to 0,
18
- "prerelease" to "rc.5"
18
+ "prerelease" to "rc.6"
19
19
  )
20
20
  }
@@ -25,7 +25,7 @@ Pod::Spec.new do |s|
25
25
  s.author = "Meta Platforms, Inc. and its affiliates"
26
26
  s.platforms = min_supported_versions
27
27
  s.source = source
28
- s.source_files = "*.{h,m,swift}"
28
+ s.source_files = podspec_sources("*.{h,m,swift}", "")
29
29
  s.public_header_files = "*.h"
30
30
  s.module_name = "RCTSwiftUI"
31
31
  s.header_dir = "RCTSwiftUI"
@@ -22,7 +22,7 @@ struct ReactNativeVersionType {
22
22
  int32_t Major = 0;
23
23
  int32_t Minor = 85;
24
24
  int32_t Patch = 0;
25
- std::string_view Prerelease = "rc.5";
25
+ std::string_view Prerelease = "rc.6";
26
26
  };
27
27
 
28
28
  constexpr ReactNativeVersionType ReactNativeVersion;
@@ -44,7 +44,7 @@ yoga-proguard-annotations = "1.19.0"
44
44
  boost="1_83_0"
45
45
  doubleconversion="1.1.6"
46
46
  fastFloat="8.0.0"
47
- fmt="11.0.2"
47
+ fmt="12.1.0"
48
48
  folly="2024.11.18.00"
49
49
  glog="0.3.5"
50
50
  gflags="2.2.0"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native",
3
- "version": "0.85.0-rc.5",
3
+ "version": "0.85.0-rc.6",
4
4
  "description": "A framework for building native apps using React",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -149,7 +149,7 @@
149
149
  "featureflags": "node ./scripts/featureflags/index.js"
150
150
  },
151
151
  "peerDependencies": {
152
- "@react-native/jest-preset": "0.85.0-rc.5",
152
+ "@react-native/jest-preset": "0.85.0-rc.6",
153
153
  "@types/react": "^19.1.1",
154
154
  "react": "^19.2.3"
155
155
  },
@@ -162,13 +162,13 @@
162
162
  }
163
163
  },
164
164
  "dependencies": {
165
- "@react-native/assets-registry": "0.85.0-rc.5",
166
- "@react-native/codegen": "0.85.0-rc.5",
167
- "@react-native/community-cli-plugin": "0.85.0-rc.5",
168
- "@react-native/gradle-plugin": "0.85.0-rc.5",
169
- "@react-native/js-polyfills": "0.85.0-rc.5",
170
- "@react-native/normalize-colors": "0.85.0-rc.5",
171
- "@react-native/virtualized-lists": "0.85.0-rc.5",
165
+ "@react-native/assets-registry": "0.85.0-rc.6",
166
+ "@react-native/codegen": "0.85.0-rc.6",
167
+ "@react-native/community-cli-plugin": "0.85.0-rc.6",
168
+ "@react-native/gradle-plugin": "0.85.0-rc.6",
169
+ "@react-native/js-polyfills": "0.85.0-rc.6",
170
+ "@react-native/normalize-colors": "0.85.0-rc.6",
171
+ "@react-native/virtualized-lists": "0.85.0-rc.6",
172
172
  "abort-controller": "^3.0.0",
173
173
  "anser": "^1.4.9",
174
174
  "ansi-regex": "^5.0.0",
@@ -25,7 +25,7 @@ Pod::Spec.new do |spec|
25
25
  spec.dependency "DoubleConversion"
26
26
  spec.dependency "glog"
27
27
  spec.dependency "fast_float", "8.0.0"
28
- spec.dependency "fmt", "11.0.2"
28
+ spec.dependency "fmt", "12.1.0"
29
29
  spec.compiler_flags = '-Wno-documentation -faligned-new'
30
30
  spec.source_files = 'folly/String.cpp',
31
31
  'folly/Conv.cpp',
@@ -8,14 +8,14 @@ fmt_git_url = fmt_config[:git]
8
8
 
9
9
  Pod::Spec.new do |spec|
10
10
  spec.name = "fmt"
11
- spec.version = "11.0.2"
11
+ spec.version = "12.1.0"
12
12
  spec.license = { :type => "MIT" }
13
13
  spec.homepage = "https://github.com/fmtlib/fmt"
14
14
  spec.summary = "{fmt} is an open-source formatting library for C++. It can be used as a safe and fast alternative to (s)printf and iostreams."
15
15
  spec.authors = "The fmt contributors"
16
16
  spec.source = {
17
17
  :git => fmt_git_url,
18
- :tag => "11.0.2"
18
+ :tag => "12.1.0"
19
19
  }
20
20
  spec.pod_target_xcconfig = {
21
21
  "CLANG_CXX_LANGUAGE_STANDARD" => rct_cxx_language_standard(),