Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v7.22.2 #2043

Merged
merged 17 commits into from
Nov 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
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
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
Loading