react-native 0.76.2 → 0.76.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.
@@ -16,7 +16,7 @@ const version: $ReadOnly<{
16
16
  }> = {
17
17
  major: 0,
18
18
  minor: 76,
19
- patch: 2,
19
+ patch: 3,
20
20
  prerelease: null,
21
21
  };
22
22
 
@@ -23,7 +23,7 @@ NSDictionary* RCTGetReactNativeVersion(void)
23
23
  __rnVersion = @{
24
24
  RCTVersionMajor: @(0),
25
25
  RCTVersionMinor: @(76),
26
- RCTVersionPatch: @(2),
26
+ RCTVersionPatch: @(3),
27
27
  RCTVersionPrerelease: [NSNull null],
28
28
  };
29
29
  });
@@ -31,9 +31,8 @@ if(CCACHE_FOUND)
31
31
  endif(CCACHE_FOUND)
32
32
 
33
33
  set(BUILD_DIR ${PROJECT_BUILD_DIR})
34
- if(CMAKE_HOST_WIN32)
35
- string(REPLACE "\\" "/" BUILD_DIR ${BUILD_DIR})
36
- endif()
34
+ file(TO_CMAKE_PATH "${BUILD_DIR}" BUILD_DIR)
35
+ file(TO_CMAKE_PATH "${REACT_ANDROID_DIR}" REACT_ANDROID_DIR)
37
36
 
38
37
  file(GLOB input_SRC CONFIGURE_DEPENDS
39
38
  ${REACT_ANDROID_DIR}/cmake-utils/default-app-setup/*.cpp
@@ -1,4 +1,4 @@
1
- VERSION_NAME=0.76.2
1
+ VERSION_NAME=0.76.3
2
2
  react.internal.publishingGroup=com.facebook.react
3
3
 
4
4
  android.useAndroidX=true
@@ -36,9 +36,13 @@ fun getSDKPath(): String {
36
36
  fun getSDKManagerPath(): String {
37
37
  val metaSdkManagerPath = File("${getSDKPath()}/cmdline-tools/latest/bin/sdkmanager")
38
38
  val ossSdkManagerPath = File("${getSDKPath()}/tools/bin/sdkmanager")
39
+ val windowsMetaSdkManagerPath = File("${getSDKPath()}/cmdline-tools/latest/bin/sdkmanager.bat")
40
+ val windowsOssSdkManagerPath = File("${getSDKPath()}/tools/bin/sdkmanager.bat")
39
41
  return when {
40
42
  metaSdkManagerPath.exists() -> metaSdkManagerPath.absolutePath
43
+ windowsMetaSdkManagerPath.exists() -> windowsMetaSdkManagerPath.absolutePath
41
44
  ossSdkManagerPath.exists() -> ossSdkManagerPath.absolutePath
45
+ windowsOssSdkManagerPath.exists() -> windowsOssSdkManagerPath.absolutePath
42
46
  else -> throw GradleException("Could not find sdkmanager executable.")
43
47
  }
44
48
  }
@@ -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", 76,
20
- "patch", 2,
20
+ "patch", 3,
21
21
  "prerelease", null);
22
22
  }
@@ -17,7 +17,7 @@ namespace facebook::react {
17
17
  constexpr struct {
18
18
  int32_t Major = 0;
19
19
  int32_t Minor = 76;
20
- int32_t Patch = 2;
20
+ int32_t Patch = 3;
21
21
  std::string_view Prerelease = "";
22
22
  } ReactNativeVersion;
23
23
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native",
3
- "version": "0.76.2",
3
+ "version": "0.76.3",
4
4
  "description": "A framework for building native apps using React",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -109,13 +109,13 @@
109
109
  },
110
110
  "dependencies": {
111
111
  "@jest/create-cache-key-function": "^29.6.3",
112
- "@react-native/assets-registry": "0.76.2",
113
- "@react-native/codegen": "0.76.2",
114
- "@react-native/community-cli-plugin": "0.76.2",
115
- "@react-native/gradle-plugin": "0.76.2",
116
- "@react-native/js-polyfills": "0.76.2",
117
- "@react-native/normalize-colors": "0.76.2",
118
- "@react-native/virtualized-lists": "0.76.2",
112
+ "@react-native/assets-registry": "0.76.3",
113
+ "@react-native/codegen": "0.76.3",
114
+ "@react-native/community-cli-plugin": "0.76.3",
115
+ "@react-native/gradle-plugin": "0.76.3",
116
+ "@react-native/js-polyfills": "0.76.3",
117
+ "@react-native/normalize-colors": "0.76.3",
118
+ "@react-native/virtualized-lists": "0.76.3",
119
119
  "abort-controller": "^3.0.0",
120
120
  "anser": "^1.4.9",
121
121
  "ansi-regex": "^5.0.0",
Binary file
Binary file
Binary file
Binary file