Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .ado/jobs/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ jobs:
# https://github.com/microsoft/react-native-macos/issues/2580
# `nx release publish` gets confused by the output of RNM's prepack script.
# Let's call `yarn npm publish` directly instead on the packages we want to publish.
# yarn nx release publish --tag ${{ parameters['publishTag'] }} --excludeTaskDependencies
yarn ./packages/virtualized-lists npm publish --tag ${{ parameters['publishTag'] }}
yarn ./packages/react-native npm publish --tag ${{ parameters['publishTag'] }}
# yarn nx release publish --tag $(publishTag) --excludeTaskDependencies
yarn ./packages/virtualized-lists npm publish --tag $(publishTag)
yarn ./packages/react-native npm publish --tag $(publishTag)
fi
displayName: Publish packages
condition: and(succeeded(), eq(variables['publish_react_native_macos'], '1'))
Expand Down
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# the repo. Unless a later match takes precedence,
# the global will be requested for
# review when someone opens a pull request.
* @microsoft/apple-rn-team
* @microsoft/react-native-macos-write
5 changes: 5 additions & 0 deletions .nx/version-plans/version-plan-1753834838837.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
__default__: patch
---

Implement paused in Debugger overlay
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const version: $ReadOnly<{
}> = {
major: 0,
minor: 78,
patch: 5,
patch: 4,
prerelease: null,
};

Expand Down
2 changes: 1 addition & 1 deletion packages/react-native/React/Base/RCTVersion.m
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
__rnVersion = @{
RCTVersionMajor: @(0),
RCTVersionMinor: @(78),
RCTVersionPatch: @(5),
RCTVersionPatch: @(4),
RCTVersionPrerelease: [NSNull null],
};
});
Expand Down
2 changes: 1 addition & 1 deletion packages/react-native/ReactAndroid/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION_NAME=0.78.5
VERSION_NAME=0.78.4
react.internal.publishingGroup=com.facebook.react

android.useAndroidX=true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ public class ReactNativeVersion {
public static final Map<String, Object> VERSION = MapBuilder.<String, Object>of(
"major", 0,
"minor", 78,
"patch", 5,
"patch", 4,
"prerelease", null);
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespace facebook::react {
constexpr struct {
int32_t Major = 0;
int32_t Minor = 78;
int32_t Patch = 5;
int32_t Patch = 4;
std::string_view Prerelease = "";
} ReactNativeVersion;

Expand Down
4 changes: 2 additions & 2 deletions packages/react-native/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-macos",
"version": "0.78.5",
"version": "0.78.4",
"description": "React Native for macOS",
"license": "MIT",
"repository": {
Expand Down Expand Up @@ -111,7 +111,7 @@
},
"dependencies": {
"@jest/create-cache-key-function": "^29.6.3",
"@react-native-macos/virtualized-lists": "0.78.5",
"@react-native-macos/virtualized-lists": "0.78.4",
"@react-native/assets-registry": "0.78.2",
"@react-native/codegen": "0.78.2",
"@react-native/community-cli-plugin": "0.78.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/virtualized-lists/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-native-macos/virtualized-lists",
"version": "0.78.5",
"version": "0.78.4",
"description": "Virtualized lists for React Native macOS.",
"license": "MIT",
"repository": {
Expand Down