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
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,14 @@
- (plugin-network-instrumentation) Report HTTP Errors as handled [#2662](https://github.com/bugsnag/bugsnag-js/pull/2662)
- (plugin-network-instrumentation) Omit stacktraces from HTTP Error events [#2684](https://github.com/bugsnag/bugsnag-js/pull/2684)
- (react-native) Report error cause with native stacktrace for Turbo Module exceptions [#2686] (https://github.com/bugsnag/bugsnag-js/pull/2686)

### Dependencies

- Update bugsnag-cocoa to [v6.35.0](https//github.com/bugsnag/bugsnag-cocoa/releases/tag/v6.35.0) [#2663](https://github.com/bugsnag/bugsnag-js/pull/2663)
- Update bugsnag-android to [v6.22.0](https//github.com/bugsnag/bugsnag-android/releases/tag/v6.22.0) [#2656](https://github.com/bugsnag/bugsnag-js/pull/2656)
- Update bugsnag-android to [v6.23.0](https//github.com/bugsnag/bugsnag-android/releases/tag/v6.23.0) [#2673](https://github.com/bugsnag/bugsnag-js/pull/2673)
- Update bugsnag-android to [v6.25.0](https//github.com/bugsnag/bugsnag-android/releases/tag/v6.25.0) [#2689](https://github.com/bugsnag/bugsnag-js/pull/2689)
- Update bugsnag-cocoa to [v6.36.0](https//github.com/bugsnag/bugsnag-cocoa/releases/tag/v6.36.0) [#2707](https://github.com/bugsnag/bugsnag-js/pull/2707)

## [8.8.1] - 2026-01-26

Expand All @@ -29,7 +30,6 @@
## [8.8.0] - 2026-01-20

This release adds support for notitfying failed network requests using the new `plugin-network-instrumentation` package

### Added

- (plugin-network-instrumentation) Add new plugin to notify failed network requests [#2647](https://github.com/bugsnag/bugsnag-js/pull/2647)
Expand Down
2 changes: 1 addition & 1 deletion packages/react-native/ios/vendor/bugsnag-cocoa
Submodule bugsnag-cocoa updated 51 files
+2 −2 .jazzy.yaml
+2 −2 Bugsnag.podspec.json
+92 −24 Bugsnag.xcodeproj/project.pbxproj
+18 −0 Bugsnag/BugsnagInternals.h
+2 −0 Bugsnag/Configuration/BugsnagConfiguration+Private.h
+21 −2 Bugsnag/Configuration/BugsnagConfiguration.m
+29 −0 Bugsnag/Helpers/BSGHttpKeys.h
+37 −0 Bugsnag/Payload/BugsnagEvent.m
+1 −1 Bugsnag/Payload/BugsnagNotifier.m
+101 −0 Bugsnag/Payload/BugsnagRequest.m
+55 −0 Bugsnag/Payload/BugsnagResponse.m
+2 −0 Bugsnag/include/Bugsnag/Bugsnag.h
+10 −0 Bugsnag/include/Bugsnag/BugsnagEvent.h
+37 −0 Bugsnag/include/Bugsnag/BugsnagHttpRequest.h
+29 −0 Bugsnag/include/Bugsnag/BugsnagHttpResponse.h
+3 −3 BugsnagNetworkRequestPlugin.podspec.json
+99 −3 BugsnagNetworkRequestPlugin/BugsnagNetworkRequestPlugin.xcodeproj/project.pbxproj
+3 −0 BugsnagNetworkRequestPlugin/BugsnagNetworkRequestPlugin/BSGURLSessionTracingDelegate.h
+71 −1 BugsnagNetworkRequestPlugin/BugsnagNetworkRequestPlugin/BSGURLSessionTracingDelegate.m
+61 −0 BugsnagNetworkRequestPlugin/BugsnagNetworkRequestPlugin/BugsnagInstrumentedHTTPRequest.m
+85 −0 BugsnagNetworkRequestPlugin/BugsnagNetworkRequestPlugin/BugsnagInstrumentedHTTPResponse.m
+64 −0 BugsnagNetworkRequestPlugin/BugsnagNetworkRequestPlugin/BugsnagNetworkRequestFailuresConfiguration.m
+28 −0 BugsnagNetworkRequestPlugin/BugsnagNetworkRequestPlugin/BugsnagNetworkRequestPlugin.m
+17 −0 BugsnagNetworkRequestPlugin/BugsnagNetworkRequestPlugin/BugsnagSharedSessionProxy.h
+60 −0 BugsnagNetworkRequestPlugin/BugsnagNetworkRequestPlugin/BugsnagSharedSessionProxy.mm
+7 −3 BugsnagNetworkRequestPlugin/BugsnagNetworkRequestPlugin/NSURLSession+Tracing.m
+65 −0 ...uestPlugin/BugsnagNetworkRequestPlugin/include/BugsnagNetworkRequestPlugin/BugsnagInstrumentedHTTPRequest.h
+98 −0 ...estPlugin/BugsnagNetworkRequestPlugin/include/BugsnagNetworkRequestPlugin/BugsnagInstrumentedHTTPResponse.h
+34 −0 ...ugsnagNetworkRequestPlugin/include/BugsnagNetworkRequestPlugin/BugsnagNetworkRequestFailuresConfiguration.h
+13 −0 ...RequestPlugin/BugsnagNetworkRequestPlugin/include/BugsnagNetworkRequestPlugin/BugsnagNetworkRequestPlugin.h
+15 −0 CHANGELOG.md
+1 −1 Framework/Info.plist
+1 −1 Gemfile
+95 −0 Tests/BugsnagTests/BSGLoadConfigTests.m
+1 −1 Tests/BugsnagTests/Data/BugsnagEvents/BugsnagEvent1.json
+1 −1 Tests/BugsnagTests/Info.plist
+1 −1 Tests/TestHost-iOS/Info.plist
+1 −1 VERSION
+2 −2 docker-compose.yml
+20 −0 features/fixtures/ios/iOSTestApp.xcodeproj/project.pbxproj
+23 −3 features/fixtures/macos/macOSTestApp.xcodeproj/project.pbxproj
+47 −0 features/fixtures/shared/scenarios/AutoInstrumentNetworkSharedSessionInvalidateScenario.swift
+50 −0 features/fixtures/shared/scenarios/HttpErrorOnErrorCallbackScenario.swift
+50 −0 features/fixtures/shared/scenarios/HttpErrorOnResponseCallbackScenario.swift
+55 −0 features/fixtures/shared/scenarios/HttpErrorSendPostScenario.swift
+44 −0 features/fixtures/shared/scenarios/HttpErrorSendScenario.swift
+16 −0 features/release/breadcrumbs.feature
+7 −0 features/release/config_from_plist.feature
+2 −0 features/release/customer_controlled_delivery.feature
+95 −0 features/release/http_errors.feature
+4 −0 features/support/env.rb
Loading