Skip to content
Open
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
71 changes: 2 additions & 69 deletions .buildkite/basic/react-native-android-full-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,33 +89,8 @@ steps:
reactnative: "0.72"
reactnavigation: "false"

- label: ':android: Build react-native-navigation {{matrix}} test fixture APK (Old Arch)'
skip: true # Skipped pending PLAT-15027
key: "build-react-native-navigation-android-fixture-old-arch"
timeout_in_minutes: 30
agents:
queue: macos-node-22
env:
JAVA_VERSION: "17"
NODE_VERSION: "22"
RN_VERSION: "{{matrix}}"
RCT_NEW_ARCH_ENABLED: "0"
BUILD_ANDROID: "true"
REACT_NATIVE_NAVIGATION: "true"
artifact_paths:
- "test/react-native/features/fixtures/generated/react-native-navigation/old-arch/**/reactnative.apk"
commands:
- "bundle install"
- "node scripts/generate-react-native-fixture.js"
matrix:
- "0.72"
retry:
automatic:
- exit_status: "*"
limit: 1

- label: ':android: Build react-native-navigation {{matrix}} test fixture APK (New Arch)'
skip: true # Skipped pending PLAT-15027
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We are no longer skipping the test so this line should be deleted not just commented out

key: "build-react-native-navigation-android-fixture-new-arch"
timeout_in_minutes: 30
agents:
Expand All @@ -137,7 +112,7 @@ steps:
- exit_status: "*"
limit: 1
matrix:
- "0.72"
- "0.78"

#
# End-to-end tests
Expand Down Expand Up @@ -244,50 +219,8 @@ steps:
reactnative: "0.72"
reactnavigation: "false"

- label: ":bitbar: :android: react-native-navigation {{matrix}} Android 12 (Old Arch) end-to-end tests"
skip: true # Skipped pending PLAT-15027
depends_on: "build-react-native-navigation-android-fixture-old-arch"
timeout_in_minutes: 10
plugins:
artifacts#v1.9.0:
download: "test/react-native/features/fixtures/generated/react-native-navigation/old-arch/{{matrix}}/reactnative.apk"
upload: ./test/react-native/maze_output/**/*
docker-compose#v4.12.0:
pull: react-native-maze-runner
run: react-native-maze-runner
service-ports: true
command:
- --app=/app/features/fixtures/generated/react-native-navigation/old-arch/{{matrix}}/reactnative.apk
- --farm=bb
- --device=ANDROID_12
- --appium-version=2.19
- --fail-fast
- --no-tunnel
- --aws-public-ip
- features/react-native-navigation.feature
test-collector#v1.10.2:
files: "reports/TEST-*.xml"
format: "junit"
branch: "^main|next$$"
api-token-env-name: "REACT_NATIVE_BUILDKITE_ANALYTICS_TOKEN"
retry:
manual:
permit_on_passed: true
automatic:
- exit_status: 103 # Appium session failed
limit: 2
env:
RN_VERSION: "{{matrix}}"
RCT_NEW_ARCH_ENABLED: "0"
REACT_NATIVE_NAVIGATION: "true"
concurrency: 25
concurrency_group: "bitbar"
concurrency_method: eager
matrix:
- "0.72"

- label: ":bitbar: :android: react-native-navigation {{matrix}} Android 12 (New Arch) end-to-end tests"
skip: true # Skipped pending PLAT-15027
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same here - just delete the line instead of commenting out

depends_on: "build-react-native-navigation-android-fixture-new-arch"
timeout_in_minutes: 10
plugins:
Expand Down Expand Up @@ -326,4 +259,4 @@ steps:
concurrency_group: "bitbar"
concurrency_method: eager
matrix:
- "0.72"
- "0.78"
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [Unreleased]

### Added
- (react-native-navigation) Add support for react-native-navigation v8 [#2741](https://github.com/bugsnag/bugsnag-js/pull/2741)


## [8.9.0] - 2026-04-08

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/plugin-react-native-navigation/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
},
"peerDependencies": {
"@bugsnag/core": "^8.0.0",
"react-native-navigation": "2 - 7"
"react-native-navigation": "2 - 8"
},
"peerDependenciesMeta": {
"@bugsnag/core": {
Expand Down
2 changes: 1 addition & 1 deletion scripts/generate-react-native-fixture.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ const REACT_NAVIGATION_PEER_DEPENDENCIES = [
]

const REACT_NATIVE_NAVIGATION_PEER_DEPENDENCIES = [
'react-native-navigation@7.41.0' // Issue with 7.42.0
'react-native-navigation@8.5.0'
]

// add packages and dependencies for react-native-navigation (wix)
Expand Down
Loading