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
2 changes: 0 additions & 2 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ steps:
queue: "macos-15"
env:
EXPO_RELEASE_CHANNEL: ${BUILDKITE_BUILD_ID}
NODE_VERSION: "18.18"
JAVA_VERSION: "17"
artifact_paths: build/output.apk
commands:
Expand All @@ -34,7 +33,6 @@ steps:
env:
EXPO_RELEASE_CHANNEL: ${BUILDKITE_BUILD_ID}
XCODE_VERSION: "16.3.0"
NODE_VERSION: "18.18"
artifact_paths: build/output.ipa
commands:
- bundle install
Expand Down
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# Changelog

## [53.0.0] - 2025-05-21
## [54.0.0] - 2025-09-15

This release adds support for Expo 54

### Fixed

- (delivery-expo) Fix import for legacy FileSystem API [#231](https://github.com/bugsnag/bugsnag-expo/pull/231)

## [53.0.0] - 2025-05-21

This release adds support for Expo 53

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
12 changes: 6 additions & 6 deletions examples/expo-53/package.json → examples/expo-54/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "expo-53",
"name": "expo-54",
"version": "1.0.0",
"private": true,
"scripts": {
Expand All @@ -8,11 +8,11 @@
"ios": "expo start --ios"
},
"dependencies": {
"@bugsnag/expo": "^52.0.0",
"expo": "~53.0.9",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-native": "0.79.2"
"@bugsnag/expo": "^54.0.0",
"expo": "~54.0.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-native": "0.81.4"
},
"devDependencies": {
"@babel/core": "^7.20.0"
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions features/fixtures/test-app/app/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Bugsnag from '@bugsnag/expo'

export default class AppFeature extends Component {
defaultApp = () => {
bugsnagClient = Bugsnag.createClient({
const bugsnagClient = Bugsnag.createClient({
endpoints: endpoints,
autoTrackSessions: false,
codeBundleId: '691f4728-4bf5-4da3-a954-ea9a10fa17d2'
Expand All @@ -14,7 +14,7 @@ export default class AppFeature extends Component {
}

enhancedApp = () => {
bugsnagClient = Bugsnag.createClient({
const bugsnagClient = Bugsnag.createClient({
endpoints: endpoints,
autoTrackSessions: false,
codeBundleId: '691f4728-4bf5-4da3-a954-ea9a10fa17d2'
Expand Down
2 changes: 1 addition & 1 deletion features/fixtures/test-app/metro.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const workspaceRoot = path.resolve(projectRoot, '../../..');
const config = getDefaultConfig(projectRoot);

// 1. Watch all files within the monorepo
config.watchFolders = [workspaceRoot];
config.watchFolders.push(workspaceRoot);
// 2. Let Metro know where to resolve packages and in what order
config.resolver.nodeModulesPaths = [
path.resolve(projectRoot, 'node_modules'),
Expand Down
22 changes: 11 additions & 11 deletions features/fixtures/test-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@
"dependencies": {
"@bugsnag/expo": "*",
"@react-native-community/netinfo": "11.4.1",
"expo": "^53.0.9",
"expo-application": "~6.1.4",
"expo-constants": "~17.1.6",
"expo-crypto": "~14.1.4",
"expo-device": "~7.1.4",
"expo-file-system": "~18.1.10",
"expo-screen-orientation": "~8.1.6",
"expo-secure-store": "~14.2.3",
"expo-status-bar": "~2.2.3",
"react": "19.0.0",
"react-native": "0.79.2"
"expo": "^54.0.1",
"expo-application": "~7.0.6",
"expo-constants": "~18.0.8",
"expo-crypto": "~15.0.6",
"expo-device": "~8.0.6",
"expo-file-system": "~19.0.11",
"expo-screen-orientation": "~9.0.6",
"expo-secure-store": "~15.0.6",
"expo-status-bar": "~3.0.7",
"react": "19.1.0",
"react-native": "0.81.4"
},
"devDependencies": {
"@babel/core": "^7.20.0",
Expand Down
11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,20 @@
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-standard": "^4.0.1",
"expo": "^53.0.0",
"expo": "^54.0.1",
"jest": "^29.3.1",
"jest-expo": "~53.0.5",
"jest-expo": "~54.0.10",
"lerna": "^8.0.2",
"react": "19.0.0",
"react-native": "0.79.2",
"react": "19.1.0",
"react-native": "0.81.4",
"verdaccio": "^5.10.2"
},
"scripts": {
"test:unit": "jest",
"test:lint": "eslint --report-unused-disable-directives --max-warnings=0 .",
"local-npm:start": "verdaccio --config ./verdaccio-config.yml",
"local-npm:publish-all": "lerna publish --yes --force-publish --exact --no-push --no-git-reset --no-git-tag-version --registry 'http://localhost:4873'"
"local-npm:publish-all": "lerna publish --yes --force-publish --exact --no-push --no-git-reset --no-git-tag-version --registry 'http://localhost:4873'",
"expo-install:fix": "npx expo install --fix && npm exec --workspaces -- npx expo install --fix"
},
"private": true,
"workspaces": [
Expand Down
8 changes: 4 additions & 4 deletions packages/delivery-expo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
"devDependencies": {
"@bugsnag/core": "^8.2.0",
"@react-native-community/netinfo": "11.4.1",
"expo-crypto": "~14.1.4",
"expo-file-system": "~18.1.10"
"expo-crypto": "~15.0.6",
"expo-file-system": "~19.0.11"
},
"peerDependencies": {
"@bugsnag/core": "^8.2.0",
"@react-native-community/netinfo": "11.4.1",
"expo-crypto": "~14.1.4",
"expo-file-system": "~18.1.10"
"expo-crypto": "~15.0.6",
"expo-file-system": "~19.0.11"
}
}
2 changes: 1 addition & 1 deletion packages/delivery-expo/queue.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const FileSystem = require('expo-file-system')
const FileSystem = require('expo-file-system/legacy')

const MAX_ITEMS = 64
const PAYLOAD_PATH = `${FileSystem.cacheDirectory}bugsnag`
Expand Down
2 changes: 1 addition & 1 deletion packages/delivery-expo/test/delivery.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const noopLogger = {
error: () => {}
}

jest.mock('expo-file-system', () => ({
jest.mock('expo-file-system/legacy', () => ({
cacheDirectory: 'file://var/data/foo.bar.app/',
downloadAsync: jest.fn(() => Promise.resolve({ md5: 'md5', uri: 'uri' })),
getInfoAsync: jest.fn(() => Promise.resolve({ exists: true, md5: 'md5', uri: 'uri' })),
Expand Down
4 changes: 2 additions & 2 deletions packages/delivery-expo/test/queue.test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const Queue = require('../queue')
const FileSystem = require('expo-file-system')
const FileSystem = require('expo-file-system/legacy')

jest.mock('expo-file-system', () => ({
jest.mock('expo-file-system/legacy', () => ({
cacheDirectory: 'file://var/data/foo.bar.app/',
downloadAsync: jest.fn(() => Promise.resolve({ md5: 'md5', uri: 'uri' })),
getInfoAsync: jest.fn(() => Promise.resolve({ exists: true, md5: 'md5', uri: 'uri' })),
Expand Down
2 changes: 1 addition & 1 deletion packages/expo-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"author": "Bugsnag",
"license": "MIT",
"dependencies": {
"@expo/package-manager": "^1.5.2",
"@expo/package-manager": "^1.9.7",
"command-line-args": "^5.0.2",
"kleur": "^3.0.2",
"prompts": "^2.0.4",
Expand Down
6 changes: 3 additions & 3 deletions packages/expo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@
"bugsnag-build-reporter": "^2.0.0"
},
"devDependencies": {
"expo-constants": "~17.1.6"
"expo-constants": "~18.0.8"
},
"peerDependencies": {
"expo": "^53.0.0",
"expo-constants": "~17.1.6",
"expo": "^54.0.0",
"expo-constants": "~18.0.8",
"promise": "^8.3.0",
"react": "*"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/expo/test/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jest.mock('react-native', () => ({
}
}))

jest.mock('../../../node_modules/expo-file-system', () => ({
jest.mock('../../../node_modules/expo-file-system/legacy', () => ({
cacheDirectory: 'file://var/data/foo.bar.app/',
downloadAsync: jest.fn(() => Promise.resolve({ md5: 'md5', uri: 'uri' })),
getInfoAsync: jest.fn(() => Promise.resolve({ exists: true, md5: 'md5', uri: 'uri' })),
Expand Down
8 changes: 4 additions & 4 deletions packages/plugin-expo-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
"license": "MIT",
"devDependencies": {
"@bugsnag/core": "^8.2.0",
"expo-application": "~6.1.4",
"expo-constants": "~17.1.6"
"expo-application": "~7.0.6",
"expo-constants": "~18.0.8"
},
"peerDependencies": {
"@bugsnag/core": "^8.0.0",
"expo-application": "~6.1.4",
"expo-constants": "~17.1.6"
"expo-application": "~7.0.6",
"expo-constants": "~18.0.8"
}
}
12 changes: 6 additions & 6 deletions packages/plugin-expo-device/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@
},
"devDependencies": {
"@bugsnag/core": "^8.2.0",
"expo-constants": "~17.1.6",
"expo-device": "~7.1.4",
"expo-secure-store": "~14.2.3"
"expo-constants": "~18.0.8",
"expo-device": "~8.0.6",
"expo-secure-store": "~15.0.6"
},
"peerDependencies": {
"@bugsnag/core": "^8.0.0",
"expo-constants": "~17.1.6",
"expo-device": "~7.1.4",
"expo-secure-store": "~14.2.3"
"expo-constants": "~18.0.8",
"expo-device": "~8.0.6",
"expo-secure-store": "~15.0.6"
}
}
2 changes: 1 addition & 1 deletion packages/plugin-expo-eas-sourcemaps/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
},
"peerDependencies": {
"@bugsnag/source-maps": "^2.3.3",
"@expo/config": "~11.0.10"
"@expo/config": "~12.0.8"
},
"author": "Bugsnag",
"license": "MIT"
Expand Down