Skip to content

Commit

Permalink
Merge pull request #2043 from bugsnag/release/v7.22.2
Browse files Browse the repository at this point in the history
  • Loading branch information
yousif-bugsnag authored Nov 21, 2023
2 parents 73cb5c4 + aab5c8f commit a2cd51c
Show file tree
Hide file tree
Showing 30 changed files with 5,401 additions and 4,932 deletions.
19 changes: 15 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## v7.22.2 (2023-11-21)

### Changed

- (react-native) Update bugsnag-android from v5.28.4 to [v5.31.3](https://github.com/bugsnag/bugsnag-android/blob/master/CHANGELOG.md#5313-2023-11-06)
- (react-native) Update bugsnag-cocoa from v6.26.2 to [v6.27.3](https://github.com/bugsnag/bugsnag-cocoa/blob/master/CHANGELOG.md#6273-2023-11-15)

### Fixed

- (electron) Do not sync to NativeClient when `autoDetectErrors` or `nativeCrashes` are disabled [#2040](https://github.com/bugsnag/bugsnag-js/pull/2040)

## 7.22.1 (2023-10-31)

### Fixed
Expand All @@ -9,7 +20,7 @@

## 7.22.0 (2023-09-13)

### Changes
### Changed

(react-native-cli) Update the react native cli to install and configure the `@bugsnag/cli` package to upload javascript source maps for react native android [#1990](https://github.com/bugsnag/bugsnag-js/pull/1990)

Expand All @@ -28,15 +39,15 @@ This release adds support for apps using React Native New Architecture

## 7.20.2 (2023-04-25)

### Changes
### Changed

- (react-native) Update bugsnag-android from v5.28.3 to [v5.28.4](https://github.com/bugsnag/bugsnag-android/blob/master/CHANGELOG.md#5284-2023-02-08)
- (react-native) Update bugsnag-cocoa from v6.25.2 to [v6.26.2](https://github.com/bugsnag/bugsnag-cocoa/blob/master/CHANGELOG.md#6262-2023-04-20)
- (delivery-xml-http-request) Ensure delivery errors are passed to the post report callback [#1938](https://github.com/bugsnag/bugsnag-js/pull/1938)

## 7.20.1 (2023-02-08)

### Changes
### Changed

- (web-worker) Change default configuration for autoDetectErrors to false [#1919](https://github.com/bugsnag/bugsnag-js/pull/1919)

Expand All @@ -49,7 +60,7 @@ This release adds support for service workers and web workers [#1915](https://gi
- (delivery-fetch) Create fetch based delivery package [#1894](https://github.com/bugsnag/bugsnag-js/pull/1894)
- (web-worker) Create web-worker notifier package [#1896](https://github.com/bugsnag/bugsnag-js/pull/1896)

### Changes
### Changed

- (plugin-browser-device) Refactor parameters for improved guarding [#1896](https://github.com/bugsnag/bugsnag-js/pull/1896)

Expand Down
6 changes: 3 additions & 3 deletions packages/electron-test-helpers/src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ interface ClientTestHelpers {
export function makeClientForPlugin ({
config = {},
schema = {},
plugin = undefined
}: { config?: object, schema?: object, plugin?: Plugin } = {}): ClientTestHelpers {
plugins = []
}: { config?: object, schema?: object, plugins?: Plugin[] } = {}): ClientTestHelpers {
const client = new Client(
{
apiKey: 'abcabcabcabcabcabcabc1234567890f',
logger: { debug: jest.fn(), info: jest.fn(), warn: jest.fn(), error: jest.fn() },
...config
},
{ ...defaultSchema, ...schema },
plugin !== undefined ? [plugin] : []
plugins
)

let lastSession: SessionPayload
Expand Down
Loading

0 comments on commit a2cd51c

Please sign in to comment.