react-native-windows 0.80.5 → 0.80.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.
@@ -0,0 +1,52 @@
1
+ #ifndef SRC_NODE_API_TYPES_H_
2
+ #define SRC_NODE_API_TYPES_H_
3
+
4
+ #include "js_native_api_types.h"
5
+
6
+ typedef struct napi_callback_scope__* napi_callback_scope;
7
+ typedef struct napi_async_context__* napi_async_context;
8
+ typedef struct napi_async_work__* napi_async_work;
9
+
10
+ #if NAPI_VERSION >= 3
11
+ typedef void(NAPI_CDECL* napi_cleanup_hook)(void* arg);
12
+ #endif // NAPI_VERSION >= 3
13
+
14
+ #if NAPI_VERSION >= 4
15
+ typedef struct napi_threadsafe_function__* napi_threadsafe_function;
16
+ #endif // NAPI_VERSION >= 4
17
+
18
+ #if NAPI_VERSION >= 4
19
+ typedef enum {
20
+ napi_tsfn_release,
21
+ napi_tsfn_abort
22
+ } napi_threadsafe_function_release_mode;
23
+
24
+ typedef enum {
25
+ napi_tsfn_nonblocking,
26
+ napi_tsfn_blocking
27
+ } napi_threadsafe_function_call_mode;
28
+ #endif // NAPI_VERSION >= 4
29
+
30
+ typedef void(NAPI_CDECL* napi_async_execute_callback)(napi_env env, void* data);
31
+ typedef void(NAPI_CDECL* napi_async_complete_callback)(napi_env env,
32
+ napi_status status,
33
+ void* data);
34
+ #if NAPI_VERSION >= 4
35
+ typedef void(NAPI_CDECL* napi_threadsafe_function_call_js)(
36
+ napi_env env, napi_value js_callback, void* context, void* data);
37
+ #endif // NAPI_VERSION >= 4
38
+
39
+ typedef struct {
40
+ uint32_t major;
41
+ uint32_t minor;
42
+ uint32_t patch;
43
+ const char* release;
44
+ } napi_node_version;
45
+
46
+ #if NAPI_VERSION >= 8
47
+ typedef struct napi_async_cleanup_hook_handle__* napi_async_cleanup_hook_handle;
48
+ typedef void(NAPI_CDECL* napi_async_cleanup_hook)(
49
+ napi_async_cleanup_hook_handle handle, void* data);
50
+ #endif // NAPI_VERSION >= 8
51
+
52
+ #endif // SRC_NODE_API_TYPES_H_
@@ -10,11 +10,11 @@
10
10
  -->
11
11
  <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
12
12
  <PropertyGroup>
13
- <ReactNativeWindowsVersion>0.80.5</ReactNativeWindowsVersion>
13
+ <ReactNativeWindowsVersion>0.80.6</ReactNativeWindowsVersion>
14
14
  <ReactNativeWindowsMajor>0</ReactNativeWindowsMajor>
15
15
  <ReactNativeWindowsMinor>80</ReactNativeWindowsMinor>
16
- <ReactNativeWindowsPatch>5</ReactNativeWindowsPatch>
16
+ <ReactNativeWindowsPatch>6</ReactNativeWindowsPatch>
17
17
  <ReactNativeWindowsCanary>false</ReactNativeWindowsCanary>
18
- <ReactNativeWindowsCommitId>2f4935ac69841dfca983dd947ce93d4a11e04c8d</ReactNativeWindowsCommitId>
18
+ <ReactNativeWindowsCommitId>fb0c0cd0305a26b0e7be159084a39f19e3edd7b9</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.80.5",
3
+ "version": "0.80.6",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -26,7 +26,7 @@
26
26
  "@react-native-community/cli": "17.0.0",
27
27
  "@react-native-community/cli-platform-android": "17.0.0",
28
28
  "@react-native-community/cli-platform-ios": "17.0.0",
29
- "@react-native-windows/cli": "0.80.1",
29
+ "@react-native-windows/cli": "0.80.2",
30
30
  "@react-native/assets": "1.0.0",
31
31
  "@react-native/assets-registry": "0.80.0",
32
32
  "@react-native/codegen": "0.80.0",
@@ -68,7 +68,7 @@
68
68
  "yargs": "^17.6.2"
69
69
  },
70
70
  "devDependencies": {
71
- "@react-native-windows/codegen": "0.80.1",
71
+ "@react-native-windows/codegen": "0.80.2",
72
72
  "@react-native/metro-config": "0.80.0",
73
73
  "@rnw-scripts/babel-react-native-config": "0.0.0",
74
74
  "@rnw-scripts/eslint-config": "1.2.36",
@@ -85,7 +85,7 @@
85
85
  "prettier": "2.8.8",
86
86
  "react": "19.1.0",
87
87
  "react-native": "0.80.0",
88
- "react-native-platform-override": "0.80.5",
88
+ "react-native-platform-override": "0.80.6",
89
89
  "react-refresh": "^0.14.0",
90
90
  "typescript": "5.0.4"
91
91
  },
@@ -95,7 +95,7 @@
95
95
  "react-native": "^0.80.0"
96
96
  },
97
97
  "beachball": {
98
- "defaultNpmTag": "latest",
98
+ "defaultNpmTag": "v0.80-stable",
99
99
  "disallowedChangeTypes": [
100
100
  "major",
101
101
  "minor",