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

Update notifier dependencies #2291

Merged
merged 2 commits into from
Jan 24, 2025
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: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

- (plugin-angular) Generate type definition using Angular 17 [#2275](https://github.com/bugsnag/bugsnag-js/pull/2275)
- (plugin-angular) Update Angular support to cover v12 - 19 [#2278](https://github.com/bugsnag/bugsnag-js/pull/2278)
- (react-native) Update bugsnag-android from v6.10.0 to [v6.11.0](https://github.com/bugsnag/bugsnag-android/blob/next/CHANGELOG.md#6110-2025-01-02)
- (react-native) Update bugsnag-cocoa from v6.30.1 to [v6.31.0](https://github.com/bugsnag/bugsnag-cocoa/blob/master/CHANGELOG.md#6310-2025-01-13)

### Fixed

Expand Down
4 changes: 2 additions & 2 deletions packages/react-native/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ android {
}

dependencies {
api "com.bugsnag:bugsnag-android:6.10.0"
api "com.bugsnag:bugsnag-plugin-react-native:6.10.0"
api "com.bugsnag:bugsnag-android:6.11.0"
api "com.bugsnag:bugsnag-plugin-react-native:6.11.0"
implementation 'com.facebook.react:react-native:+'

testImplementation "junit:junit:4.12"
Expand Down
2 changes: 1 addition & 1 deletion packages/react-native/ios/vendor/bugsnag-cocoa
Submodule bugsnag-cocoa updated 93 files
+3 −0 .buildkite/block.full.yml
+371 −26 .buildkite/pipeline.full.yml
+114 −17 .buildkite/pipeline.yml
+2 −1 .github/workflows/downstream_updates.yml
+9 −3 .github/workflows/pull_request.yml
+73 −0 .github/workflows/scorecard.yml
+32 −0 .github/workflows/signing.yml
+3 −2 .github/workflows/update_docs.yml
+2 −0 .gitignore
+2 −2 .jazzy.yaml
+2 −2 Bugsnag.podspec.json
+129 −23 Bugsnag.xcodeproj/project.pbxproj
+13 −3 Bugsnag/BugsnagInternals.h
+1 −0 Bugsnag/Client/BugsnagClient+Private.h
+19 −19 Bugsnag/Client/BugsnagClient.m
+1 −1 Bugsnag/Configuration/BugsnagConfiguration+Private.h
+8 −8 Bugsnag/Configuration/BugsnagConfiguration.m
+1 −1 Bugsnag/Delivery/BSGEventUploadKSCrashReportOperation.m
+31 −0 Bugsnag/FeatureFlags/BSGAtomicFeatureFlagStore.h
+166 −0 Bugsnag/FeatureFlags/BSGAtomicFeatureFlagStore.m
+30 −0 Bugsnag/FeatureFlags/BSGCompositeFeatureFlagStore.h
+82 −0 Bugsnag/FeatureFlags/BSGCompositeFeatureFlagStore.m
+26 −0 Bugsnag/FeatureFlags/BSGFeatureFlagStore.h
+27 −0 Bugsnag/FeatureFlags/BSGMemoryFeatureFlagStore.h
+63 −60 Bugsnag/FeatureFlags/BSGMemoryFeatureFlagStore.m
+23 −0 Bugsnag/FeatureFlags/BSGPersistentFeatureFlagStore.h
+135 −0 Bugsnag/FeatureFlags/BSGPersistentFeatureFlagStore.m
+27 −0 Bugsnag/FeatureFlags/BSGStoredFeatureFlag.h
+44 −0 Bugsnag/FeatureFlags/BSGStoredFeatureFlag.m
+0 −44 Bugsnag/Helpers/BSGFeatureFlagStore.h
+4 −2 Bugsnag/Helpers/BSGRunContext.m
+1 −1 Bugsnag/Payload/BugsnagEvent+Private.h
+24 −9 Bugsnag/Payload/BugsnagEvent.m
+1 −1 Bugsnag/Payload/BugsnagNotifier.m
+1 −1 Bugsnag/Storage/BSGFileLocations.h
+1 −0 Bugsnag/Storage/BSGFileLocations.m
+3 −3 BugsnagNetworkRequestPlugin.podspec.json
+17 −0 CHANGELOG.md
+1 −0 CODEOWNERS
+1 −1 Framework/Info.plist
+0 −226 Gemfile.lock
+4 −0 Makefile
+5 −0 Package.swift
+15 −15 README.md
+12 −0 SECURITY.md
+14 −14 Tests/BugsnagTests/BSGFeatureFlagStoreTests.m
+2 −0 Tests/BugsnagTests/BugsnagClientMirrorTest.m
+1 −1 Tests/BugsnagTests/Info.plist
+1 −1 Tests/TestHost-iOS/Info.plist
+1 −1 VERSION
+4 −12 docker-compose.yml
+1 −1 features/app_hangs.feature
+12 −10 features/fixtures/ios/iOSTestApp.xcodeproj/project.pbxproj
+1,245 −0 features/fixtures/ios/iOSTestAppXcFramework.xcodeproj/project.pbxproj
+7 −0 features/fixtures/ios/iOSTestAppXcFramework.xcodeproj/project.xcworkspace/contents.xcworkspacedata
+77 −0 features/fixtures/ios/iOSTestAppXcFramework.xcodeproj/xcshareddata/xcschemes/iOSTestAppXcFramework.xcscheme
+10 −0 features/fixtures/ios/iOSTestAppXcFramework.xcworkspace/contents.xcworkspacedata
+8 −0 features/fixtures/ios/iOSTestAppXcFramework.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
+0 −23 features/fixtures/macos/Podfile
+32 −77 features/fixtures/macos/macOSTestApp.xcodeproj/project.pbxproj
+5 −2 features/fixtures/macos/macOSTestApp.xcworkspace/contents.xcworkspacedata
+1,131 −0 features/fixtures/macos/macOSTestAppXcFramework.xcodeproj/project.pbxproj
+7 −0 features/fixtures/macos/macOSTestAppXcFramework.xcodeproj/project.xcworkspace/contents.xcworkspacedata
+11 −0 features/fixtures/macos/macOSTestAppXcFramework/Assets.xcassets/AccentColor.colorset/Contents.json
+58 −0 features/fixtures/macos/macOSTestAppXcFramework/Assets.xcassets/AppIcon.appiconset/Contents.json
+6 −0 features/fixtures/macos/macOSTestAppXcFramework/Assets.xcassets/Contents.json
+27 −0 features/fixtures/macos/macOSTestAppXcFramework/Info.plist
+14 −0 features/fixtures/macos/macOSTestAppXcFramework/macOSTestAppXcFramework.entitlements
+10 −0 features/fixtures/shared/Bridge_InternalAPI.h
+9 −0 features/fixtures/shared/Bridge_PublicAPI.h
+1 −0 features/fixtures/shared/scenarios/CustomPluginNotifierDescriptionScenario.m
+0 −23 features/fixtures/shared/scenarios/CxxUnexpectedScenario.mm
+3 −0 features/fixtures/shared/scenarios/OOMSessionlessScenario.m
+1 −3 features/fixtures/shared/scenarios/Scenario.h
+0 −2 features/fixtures/shared/scenarios/Scenario.m
+1 −0 features/fixtures/shared/utils/Fixture.swift
+31 −0 features/fixtures/shared/utils/FixtureConfig.h
+28 −0 features/fixtures/shared/utils/FixtureConfig.m
+0 −33 features/fixtures/shared/utils/FixtureConfig.swift
+6 −0 features/fixtures/watchos/watchOSTestApp.xcodeproj/project.pbxproj
+3 −3 features/release/app_and_device_attributes.feature
+1 −5 features/release/barebone_tests.feature
+6 −6 features/release/config_from_plist.feature
+8 −0 features/release/delivery.feature
+8 −1 features/release/out_of_memory.feature
+3 −3 features/release/release_stage_errors.feature
+0 −11 features/release/unhandled_cpp_exception.feature
+0 −4 features/scripts/export_mac_app.sh
+34 −0 features/scripts/export_xcframework_ios_app.sh
+44 −0 features/scripts/export_xcframework_mac_app.sh
+9 −4 features/steps/app_steps.rb
+11 −9 features/support/env.rb
+3 −0 features/support/maze.buildkite.cfg
2 changes: 1 addition & 1 deletion packages/react-native/prepare-android-vendor.config
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version
6.10.0
6.11.0
Loading