Skip to content

Commit 494f565

Browse files
authored
chore: merge upstream to 0.81.6 (#2837)
## Summary: Merge to the latest upstream 0.81 release ## Test Plan: CI should pass
1 parent b583c5b commit 494f565

File tree

41 files changed

+383
-406
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+383
-406
lines changed

.ado/publish.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ extends:
3838
os: windows
3939
sdl:
4040
componentgovernance:
41-
ignoreDirectories: $(Build.SourcesDirectory)/packages/helloworld
41+
# Justification: helloworld is a test app, we don't publish docsite on stable branches
42+
ignoreDirectories: $(Build.SourcesDirectory)/packages/helloworld,$(Build.SourcesDirectory)/docsite
4243
credscan:
4344
suppressionsFile: .ado/CredScanSuppressions.json
4445
eslint:
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
__default__: patch
3+
---
4+
5+
Sync to upstream React Native 0.81.6 release

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-native-macos/monorepo",
3-
"version": "0.81.1",
3+
"version": "0.81.2",
44
"license": "MIT",
55
"packageManager": "yarn@4.12.0",
66
"scripts": {
@@ -56,8 +56,8 @@
5656
"@jest/create-cache-key-function": "^29.7.0",
5757
"@microsoft/api-extractor": "^7.52.2",
5858
"@nx/js": "^21.4.1",
59-
"@react-native/metro-babel-transformer": "0.81.5",
60-
"@react-native/metro-config": "0.81.5",
59+
"@react-native/metro-babel-transformer": "0.81.6",
60+
"@react-native/metro-config": "0.81.6",
6161
"@tsconfig/node22": "22.0.2",
6262
"@types/react": "^19.1.4",
6363
"@typescript-eslint/parser": "^7.1.1",

packages/assets/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-native/assets-registry",
3-
"version": "0.81.5",
3+
"version": "0.81.6",
44
"description": "Asset support code for React Native.",
55
"license": "MIT",
66
"repository": {

packages/babel-plugin-codegen/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-native/babel-plugin-codegen",
3-
"version": "0.81.5",
3+
"version": "0.81.6",
44
"description": "Babel plugin to generate native module and view manager code for React Native.",
55
"license": "MIT",
66
"repository": {

packages/community-cli-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-native/community-cli-plugin",
3-
"version": "0.81.5",
3+
"version": "0.81.6",
44
"description": "Core CLI commands for React Native",
55
"keywords": [
66
"react-native",

packages/community-cli-plugin/src/commands/bundle/assetPathUtils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ function getResourceIdentifier(asset: PackagerAsset): string {
7373
.toLowerCase()
7474
.replace(/\//g, '_') // Encode folder structure in file name
7575
.replace(/([^a-z0-9_])/g, '') // Remove illegal chars
76-
.replace(/^assets_/, ''); // Remove "assets_" prefix
76+
.replace(/^(?:assets|assetsunstable_path)_/, ''); // Remove "assets_" or "assetsunstable_path_" prefix
7777
}
7878

7979
function getBasePath(asset: PackagerAsset): string {

packages/core-cli-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-native/core-cli-utils",
3-
"version": "0.81.5",
3+
"version": "0.81.6",
44
"description": "React Native CLI library for Frameworks to build on",
55
"license": "MIT",
66
"main": "./src/index.flow.js",

packages/debugger-frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-native/debugger-frontend",
3-
"version": "0.81.5",
3+
"version": "0.81.6",
44
"description": "Debugger frontend for React Native based on Chrome DevTools",
55
"keywords": [
66
"react-native",

packages/debugger-shell/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-native/debugger-shell",
3-
"version": "0.81.5",
3+
"version": "0.81.6",
44
"description": "Experimental debugger shell for React Native for use with @react-native/debugger-frontend",
55
"keywords": [
66
"react-native",

0 commit comments

Comments
 (0)