react-native-windows 0.75.0-preview.8 → 0.75.0

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,8 +16,8 @@ const version: $ReadOnly<{
16
16
  }> = {
17
17
  major: 0,
18
18
  minor: 75,
19
- patch: 0,
20
- prerelease: 'rc.7',
19
+ patch: 1,
20
+ prerelease: null,
21
21
  };
22
22
 
23
23
  module.exports = {version};
@@ -636,7 +636,8 @@ void ReactInstanceWin::InitializeBridgeless() noexcept {
636
636
  facebook::react::ReactInstance::JSRuntimeFlags options;
637
637
  m_bridgelessReactInstance->initializeRuntime(options, [=](facebook::jsi::Runtime &runtime) {
638
638
  auto logger = [loggingHook = GetLoggingCallback()](const std::string &message, unsigned int logLevel) {
639
- loggingHook(static_cast<facebook::react::RCTLogLevel>(logLevel), message.c_str());
639
+ if (loggingHook)
640
+ loggingHook(static_cast<facebook::react::RCTLogLevel>(logLevel), message.c_str());
640
641
  };
641
642
  facebook::react::bindNativeLogger(runtime, logger);
642
643
 
@@ -10,11 +10,11 @@
10
10
  -->
11
11
  <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
12
12
  <PropertyGroup>
13
- <ReactNativeWindowsVersion>0.75.0-preview.8</ReactNativeWindowsVersion>
13
+ <ReactNativeWindowsVersion>0.75.0</ReactNativeWindowsVersion>
14
14
  <ReactNativeWindowsMajor>0</ReactNativeWindowsMajor>
15
15
  <ReactNativeWindowsMinor>75</ReactNativeWindowsMinor>
16
16
  <ReactNativeWindowsPatch>0</ReactNativeWindowsPatch>
17
17
  <ReactNativeWindowsCanary>false</ReactNativeWindowsCanary>
18
- <ReactNativeWindowsCommitId>80cd62fadb1eb5237972fd554304077436f4c2e8</ReactNativeWindowsCommitId>
18
+ <ReactNativeWindowsCommitId>ba3dd8c01553d45225124eaab38a13d8aa0b8b20</ReactNativeWindowsCommitId>
19
19
  </PropertyGroup>
20
20
  </Project>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-windows",
3
- "version": "0.75.0-preview.8",
3
+ "version": "0.75.0",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -26,15 +26,15 @@
26
26
  "@react-native-community/cli": "14.0.0",
27
27
  "@react-native-community/cli-platform-android": "14.0.0",
28
28
  "@react-native-community/cli-platform-ios": "14.0.0",
29
- "@react-native-windows/cli": "0.75.0-preview.3",
29
+ "@react-native-windows/cli": "0.75.0",
30
30
  "@react-native/assets": "1.0.0",
31
- "@react-native/assets-registry": "0.75.0-rc.7",
32
- "@react-native/codegen": "0.75.0-rc.7",
33
- "@react-native/community-cli-plugin": "0.75.0-rc.7",
34
- "@react-native/gradle-plugin": "0.75.0-rc.7",
35
- "@react-native/js-polyfills": "0.75.0-rc.7",
36
- "@react-native/normalize-colors": "0.75.0-rc.7",
37
- "@react-native/virtualized-lists": "0.75.0-rc.7",
31
+ "@react-native/assets-registry": "0.75.1",
32
+ "@react-native/codegen": "0.75.1",
33
+ "@react-native/community-cli-plugin": "0.75.1",
34
+ "@react-native/gradle-plugin": "0.75.1",
35
+ "@react-native/js-polyfills": "0.75.1",
36
+ "@react-native/normalize-colors": "0.75.1",
37
+ "@react-native/virtualized-lists": "0.75.1",
38
38
  "abort-controller": "^3.0.0",
39
39
  "anser": "^1.4.9",
40
40
  "ansi-regex": "^5.0.0",
@@ -66,8 +66,8 @@
66
66
  "yargs": "^17.6.2"
67
67
  },
68
68
  "devDependencies": {
69
- "@react-native-windows/codegen": "0.75.0-preview.1",
70
- "@react-native/metro-config": "0.75.0-rc.7",
69
+ "@react-native-windows/codegen": "0.75.0",
70
+ "@react-native/metro-config": "0.75.1",
71
71
  "@rnw-scripts/babel-react-native-config": "0.0.0",
72
72
  "@rnw-scripts/eslint-config": "1.2.23",
73
73
  "@rnw-scripts/jest-out-of-tree-snapshot-resolver": "^1.1.27",
@@ -83,7 +83,7 @@
83
83
  "just-scripts": "^1.3.3",
84
84
  "prettier": "2.8.8",
85
85
  "react": "18.3.1",
86
- "react-native": "0.75.0-rc.7",
86
+ "react-native": "0.75.1",
87
87
  "react-native-platform-override": "^1.9.42",
88
88
  "react-refresh": "^0.14.0",
89
89
  "typescript": "5.0.4"
@@ -91,14 +91,14 @@
91
91
  "peerDependencies": {
92
92
  "@types/react": "^18.2.6",
93
93
  "react": "^18.2.0",
94
- "react-native": "0.75.0-rc.7"
94
+ "react-native": "^0.75.1"
95
95
  },
96
96
  "beachball": {
97
- "defaultNpmTag": "preview",
97
+ "defaultNpmTag": "latest",
98
98
  "disallowedChangeTypes": [
99
99
  "major",
100
100
  "minor",
101
- "patch",
101
+ "prerelease",
102
102
  "premajor",
103
103
  "preminor",
104
104
  "prepatch"