Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 6, 2025

Bumps the all-dependencies group with 2 updates in the /packages/stream_chat_flutter directory: alchemist and desktop_drop.
Bumps the all-dependencies group with 6 updates in the /sample_app directory:

Package From To
firebase_core 3.15.2 4.2.1
flutter_slidable 3.1.2 4.0.3
flutter_local_notifications 18.0.1 19.5.0
go_router 14.8.1 17.0.0
firebase_messaging 15.2.10 16.0.4
sentry_flutter 8.14.2 9.8.0

Updates alchemist from 0.12.1 to 0.13.0

Release notes

Sourced from alchemist's releases.

v0.13.0

What's Changed

⚠️ Breaking Changes

Betterment/alchemist#165 disabled anti-aliasing on BlockedTextPaintingContext which may change goldens output.

New Contributors

Full Changelog: Betterment/alchemist@v0.12.1...v0.13.0

Changelog

Sourced from alchemist's changelog.

0.13.0

What's Changed

⚠️ Breaking Changes

Betterment/alchemist#165 disabled anti-aliasing on BlockedTextPaintingContext which may change goldens output.

New Contributors

Full Changelog: Betterment/alchemist@v0.12.1...v0.13.0

Commits
  • d7ad4bb chore: prep v0.13.0 (#168)
  • d1de06b chore: ensure tests are compatible with all supported Flutter versions (and b...
  • b6c3357 fix: Anti-aliasing cross-platform issue (#165)
  • 2cd7618 fix: push changes in update goldens workflow (#166)
  • 482b78e chore: use git commit instead of git-auto-commit action (#163)
  • e5da5fb ci: use mobile messaging app for Slack notifs (#158)
  • See full diff in compare view

Updates desktop_drop from 0.6.1 to 0.7.0

Release notes

Sourced from desktop_drop's releases.

desktop_drop-v0.7.0

What's Changed

New Contributors

Full Changelog: MixinNetwork/flutter-plugins@desktop_drop-v0.6.1...desktop_drop-v0.7.0

Commits
  • bdfe1bb [desktop_drop] update version to 0.7.0
  • 10ace57 [ogg_opus_player] refactor for android
  • 7bd9850 [desktop_drop] bump version to 0.7.1
  • 6d7ce6f upgrade Android compileSdk and Kotlin version (#444)
  • 671e996 [desktop_multi_window] update readme for register plugin in sub window
  • 985d816 [mixin_logger] support Android 15 with 16k page size
  • ef98858 fix typo
  • c0974e5 update gradle
  • 30eb979 update lock file
  • 4181b95 [desktop_drop] 0.7.0: macOS: robust multi-source drag & drop (#434)
  • See full diff in compare view

Updates firebase_core from 3.15.2 to 4.2.1

Commits
  • 1fc2adf chore(release): publish packages
  • 795567a fix(core, web): More explicit interop types (#17809)
  • 3c8c83d feat(web): add registerVersion support for packages (#17780)
  • 455a068 chore(release): publish packages (#17787)
  • 3edfc18 feat: bump Android SDK to version 34.4.0 (#17786)
  • 51ed3fb feat: bump Firebase iOS SDK to 12.4.0 (#17779)
  • 09d03aa fix: a bug with the demoProjectId arg to Firebase.initializeApp() (#17703)
  • 007b2b3 feat: bump Firebase JS SDK to 12.3.0 (#17743)
  • 063df87 chore(release): publish packages (#17734)
  • 0b6b13d docs(firebase_core): correct androidClientId docs (was incorrectly labeled iO...
  • Additional commits viewable in compare view

Updates flutter_slidable from 3.1.2 to 4.0.3

Changelog

Sourced from flutter_slidable's changelog.

4.0.3

Fixed

  • Fixes issue with dismissal #537

4.0.2

Fixed

  • Issue when actionPaneConfigurator is null when calling openCurrentActionPane. Thanks to @​EM-Sabeel.

4.0.1

Fixed

  • Issue in auto_close_behavior where removeStatusListener was not called.

4.0.0

Changed

  • Minimum version of Flutter (3.27.0 now)

Fixed

  • Icon color in actions #512
  • Use withValues instead of withOpacity
Commits

Updates flutter_local_notifications from 18.0.1 to 19.5.0

Release notes

Sourced from flutter_local_notifications's releases.

flutter_local_notifications-v19.5.0

  • [iOS][macOS] added requestProvidesAppNotificationSettings option to DarwinInitializationSettings class, and isProvidesAppNotificationSettingsEnabled to NotificationsEnabledOptions class. This allows applications to show a "Configure Notifications in " option when showing the context menu for an individual notification. This can be used for scenarios where an application can respond to the user selecting this option to show a custom page for controlling notification settings. Please note this whilst the API changes are applicable for iOS and macOS, the actual functionality only appears to be supported by Apple when it comes to iOS devices. See example app to see how this new functionality can be implemented. Thanks to the PR from Luke Memet

flutter_local_notifications-v19.4.2

  • [Windows] fixed issue where non-ASCII characters for the notification application name weren't being displayed properly. Thanks to the PR from yoyoIU

flutter_local_notifications-v19.4.1

  • [Android] fixed issue #2675 where addition of invisible flag to notification actions could cause scheduled notifications with actions created prior to 19.4.0 to fail to show
  • Updated the Android release build configuration section to point to the latest location of the official Android docs on how to configure which resources (e.g. notification icons) are kept so they are not discarded by the Android compiler. It has also been reworded to make it clearer that this applies to all Android resources

flutter_local_notifications-v19.4.0

  • [Android] added ability to read dataMimeType and dataUri when calling getActiveNotifications() to read details of an active Android notification using the messaging style. Thanks to the PR from Matt Bajorek
  • [Android] added support for Android semantic actions. Thanks to the PR from Jared Szechy

flutter_local_notifications-v19.3.1

  • [Windows] fixed issue #2648 where non-ASCII characters in the notification payload were not being handled properly. Thanks to the PR from yoyoIU
  • [Windows] fixed issue #2651 where unresolved symbols occurred with changes in introduced in newer Windows SDKs. Thanks to the PR from Sebastien

flutter_local_notifications-v19.3.0

  • [Android][iOS][macOS] added cancelAllPendingNotifications() method for cancelling all pending notifications that have been scheduled. Thanks to the PR from Kwon Tae Hyung

flutter_local_notifications-v19.2.1

  • [macOS] removed redundant code that was only applicable on macOS versions lower than 10.14. This should be a non-functional change since 18.0.0 bumped the minimum Flutter SDK requirements that in turn required macOS 10.14 at a minimum. Thanks to the PR from Blin Qipa
  • [Android] bumped robolectric dependency. This fixes an issue where some users reported receiving instances of java.lang.NoClassDefFoundError around the plugin's Android unit tests. Thanks to the PR from Turtlepaw

flutter_local_notifications-v19.2.0

  • [Android] added support to bypass have notifications bypass the device's Do Not Disturb (DnD) settings. Thanks the PR from Michel v. Varendorff that added the following changes
    • The hasNotificationPolicyAccess() method that checks if the application can modify the notification policy
    • The requestNotificationPolicyAccess() method that was added the AndroidFlutterNotificationsPlugin class. This can be used request access for the calling application modify the notification policy
    • Added bypassDnd the property of the AndroidNotificationChannel class and channelBypassDnd to the AndroidNotificationDetails class. These can used to indicate if notifications associated with the channel can bypass the DnD settings of the device
  • Bumped msix dev dependency in example app. This to fix the issue where the msix package stopped being able to created MSIX installers

flutter_local_notifications-v19.1.0

  • [iOS][macOS] added supported to specify the volume for critical alerts. Thanks to the PR from bannzai
  • Updated Gradle setup information in the readme to clarify that desugaring needs to be enabled even if scheduled notifications aren't used

flutter_local_notifications-v19.0.0

  • [Android] Breaking change bumped compileSdk to 35 and updated readme to mention this
  • [Android] bumped GSON dependency to 2.12. As a result of doing so, applications should no longer need ProGuard rules related to this plugin that were needed for release builds to function. The readme has been updated to remove the associated setup to reflect this. Thanks to the PR from Koji Wakamiya
  • [Android] bumped Android Gradle Plugin to 8.6.0 to align with the minimum version to use compileSdk version 35 (Android 15)
  • [Android] bumped desugaring library to 2.1.4 and set Java compatibility to 11 instead of 8. Readme has been updated to reflect these changes wheresourceCompatibility and targetCompability should be set to JavaVersion.VERSION_11 (i.e. Java 11), and jvmTarget is set to 11
  • [iOS] Breaking change removed uiLocalNotificationDateInterpretation parameter from zonedSchedule() method. This was done as it actually no relevant as of the 18.0.0 that dropped support for iOS versions older than 10, which in turn meant that the deprecated UILocalNotification APIs from Apple were no longer used. The corresponding UILocalNotificationDateInterpretation enum has already been removed as well
  • [iOS][macOS] Breaking changes the DarwinNotificationActionOption and DarwinNotificationCategoryOption are now enhanced enums with values accessible through the value property that are exactly the same as their native representations. Previously a bitwise left shift operation was applied to the index value
  • [iOS][macOS] Breaking change renamed Converters header and implementation to FlutterLocalNotificationsConverters. This would likely not affect any users of the plugin. Done to fix/mitigate issues #2160 and #2529 where the original name could clash
  • [iOS][macOS] added Swift Package Manager support
  • [Windows] Added support for Windows. Thanks to PR Levi Lesches that continued the work done initially done by Kenneth and lightrabbit
  • Breaking change bumped minimum Flutter SDK requirement to 3.22.0 and Dart SDK requirement to 3.4.0. The minimum supported Android version is now 5.0 (API level 21)
  • Bumped timezone dependency so that minimum version is now 0.10.0
  • Bumped multiple dependencies in example app
  • Bumped minimum plugin_platform_interface version to 2.1.8

... (truncated)

Commits
  • 6c7378d [various] fixed/updated format GitHub workflow (#2705)
  • 92a0681 [flutter_local_notifications] prepare for 19.5.0 release (#2704)
  • 6fdeb5d Clang Format
  • 79242b4 [flutter_local_notifications] Add support for `providesAppNotificationSetting...
  • ecd66b1 [various] prepare for 19.4.2 release (#2685)
  • 55e85a0 Clang format
  • 25d41e0 fix(windows): non-ascii characters in DisplayName (#2668)
  • 759f4fa [flutter_local_notifications] added null safe handling for invisible Android ...
  • 8e73c91 updated Android release build configuration section in readme (#2669)
  • ca523de [flutter_local_notification] prepare for 19.4.0 release (#2663)
  • Additional commits viewable in compare view

Updates go_router from 14.8.1 to 17.0.0

Commits
  • 8176ffd [go_router] ShellRoute will merge GoRouter's observers (#9436)
  • b87777c [pigeon] Update analyzer version (#10352)
  • a5e887b [camera_platform_interface] Adds support for video stabilization to camera_pl...
  • 5cae9ca [google_maps_flutter] Raise MapUsedAfterWidgetDisposedError when map contro...
  • 6646deb [pigeon] Replace containsKey with contains in Kotlin generator (#10274)
  • da23dff [video_player] Remove package in example AndroidManifest.xml file (#10245)
  • e186c0a [in_app_purchase] Remove use of Pigeon's Dart test generator (#10328)
  • 3d926aa [dependabot]: Bump com.squareup.okhttp3:okhttp from 5.1.0 to 5.3.0 in /packag...
  • 3b6170f [google_sign_in] Remove use of OCMock (#10290)
  • 0718bf1 [interactive_media_ads] Pin iOS dependency maximum (#10349)
  • Additional commits viewable in compare view

Updates firebase_messaging from 15.2.10 to 16.0.4

Commits
  • 1fc2adf chore(release): publish packages
  • ec5813a refactor(messaging, web): convert classes to extension types for improved int...
  • 3c8c83d feat(web): add registerVersion support for packages (#17780)
  • 455a068 chore(release): publish packages (#17787)
  • 96dda6f Update remote_notification.dart to fix typo in docs (#17636)
  • 7fe893c fix(firebase_messaging): fix null apple notification when sound is of type St...
  • 08a0433 fix(firebase_messaging): update APNS token error message for clarity (#17763)
  • 063df87 chore(release): publish packages (#17734)
  • 4e80234 chore(release): publish packages (#17681)
  • fb5076e chore(release): publish packages (#17571)
  • Additional commits viewable in compare view

Updates sentry_flutter from 8.14.2 to 9.8.0

Release notes

Sourced from sentry_flutter's releases.

9.8.0

Features

Enhancements

  • Refactor setExtra and removeExtra to use FFI/JNI (#3314)
  • Refactor setTag and removeTag to use FFI/JNI (#3313)
  • Refactor setContexts and removeContexts to use FFI/JNI (#3312)
  • Refactor setUser to use FFI/JNI (#3295)
  • Refactor native breadcrumbs sync to use FFI/JNI (#3293)
  • Refactor app hang and crash apis to use FFI/JNI (#3289)
  • Refactor AndroidReplayRecorder to use the new worker isolate api (#3296)
  • Refactor fetching app start and display refresh rate to use FFI and JNI (#3288)
  • Offload captureEnvelope to background isolate for Cocoa and Android (#3232)
  • Add sentry.replay_id to flutter logs (#3257)

Fixes

  • Fix unsafe json access in sentry_device (#3309)

9.7.0

Features

  • Add W3C traceparent header support (#3246)
    • Enable the option propagateTraceparent to allow the propagation of the W3C Trace Context HTTP header traceparent on outgoing HTTP requests.
  • Add nativeDatabasePath option to SentryFlutterOptions to set the database path for Sentry Native (#3236)
  • Add sentry.origin to logs created by LoggingIntegration (#3153)
  • Tag all spans with thread info on non-web platforms (#3101, #3144)
  • Feedback Widget: add option to disable keyboard resize (#3154)
  • Support firebase_remote_config: >=5.4.3 <7.0.0 (#3213)

Enhancements

  • Prefix firebase remote config feature flags with firebase: (#3258)
  • Replay: continue processing if encountering InheritedWidget (#3200)
    • Prevents false debug warnings when using provider for example which extensively uses InheritedWidget
  • Add DioException response data to error breadcrumb (#3164)
    • Bumped dio min version to 5.2.0
  • Use FFI/JNI for captureEnvelope on iOS and Android (#3115)
  • Log a warning when dropping envelope items (#3165)
  • Call options.log for structured logs (#3187)
  • Remove async usage from FlutterErrorIntegration (#3202)
  • Tag all spans during app start with start type info (#3190)
  • Refactor loadContexts and loadDebugImages to use JNI and FFI (#3224)
  • Improve envelope conversion to Uint8List in FileSystemTransport (#3147)

Fixes

... (truncated)

Changelog

Sourced from sentry_flutter's changelog.

9.8.0

Features

Enhancements

  • Refactor setExtra and removeExtra to use FFI/JNI (#3314)
  • Refactor setTag and removeTag to use FFI/JNI (#3313)
  • Refactor setContexts and removeContexts to use FFI/JNI (#3312)
  • Refactor setUser to use FFI/JNI (#3295)
  • Refactor native breadcrumbs sync to use FFI/JNI (#3293)
  • Refactor app hang and crash apis to use FFI/JNI (#3289)
  • Refactor AndroidReplayRecorder to use the new worker isolate api (#3296)
  • Refactor fetching app start and display refresh rate to use FFI and JNI (#3288)
  • Offload captureEnvelope to background isolate for Cocoa and Android (#3232)
  • Add sentry.replay_id to flutter logs (#3257)

Fixes

  • Fix unsafe json access in sentry_device (#3309)

9.7.0

Features

  • Add W3C traceparent header support (#3246)
    • Enable the option propagateTraceparent to allow the propagation of the W3C Trace Context HTTP header traceparent on outgoing HTTP requests.
  • Add nativeDatabasePath option to SentryFlutterOptions to set the database path for Sentry Native (#3236)
  • Add sentry.origin to logs created by LoggingIntegration (#3153)
  • Tag all spans with thread info on non-web platforms (#3101, #3144)
  • feat(feedback): Add option to disable keyboard resize (#3154)
  • Support firebase_remote_config: >=5.4.3 <7.0.0 (#3213)

Enhancements

  • Prefix firebase remote config feature flags with firebase: (#3258)
  • Replay: continue processing if encountering InheritedWidget (#3200)
    • Prevents false debug warnings when using provider for example which extensively uses InheritedWidget
  • Add DioException response data to error breadcrumb (#3164)
    • Bumped dio min verion to 5.2.0
  • Use FFI/JNI for captureEnvelope on iOS and Android (#3115)
  • Log a warning when dropping envelope items (#3165)
  • Call options.log for structured logs (#3187)
  • Remove async usage from FlutterErrorIntegration (#3202)
  • Tag all spans during app start with start type info (#3190)
  • Refactor loadContexts and loadDebugImages to use JNI and FFI (#3224)
  • Improve envelope conversion to Uint8List in FileSystemTransport (#3147)

... (truncated)

Commits
  • a8e3ded Replace Android emulator test step with unit test (#3319)
  • e68a702 release: 9.8.0
  • e1ab497 enh: refactor setExtra and removeExtra to FFI/JNI (#3314)
  • bfabaf2 enh: refactor setTag and removeTag to FFI/JNI (#3313)
  • d3fb366 enh: refactor setContexts and removeContexts to FFI/JNI (#3312)
  • a69a51f Fix unsafe json access in sentry_device (#3309)
  • 393f8ec Refactor: use FFI/JNI for setUser (#3295)
  • c0dde50 Refactor: move native breadcrumbs sync to FFI/JNI (#3293)
  • ad121c0 Refactor app hang and native crash apis to FFI/JNI (#3289)
  • 29e8ebe Refactor app start and refresh rate to use FFI and JNI (#3288)
  • Additional commits viewable in compare view

Updates firebase_messaging from 15.2.10 to 16.0.4

Commits
  • 1fc2adf chore(release): publish packages
  • ec5813a refactor(messaging, web): convert classes to extension types for improved int...
  • 3c8c83d feat(web): add registerVersion support for packages (#17780)
  • 455a068 chore(release): publish packages (#17787)
  • 96dda6f Update remote_notification.dart to fix typo in docs (#17636)
  • 7fe893c fix(firebase_messaging): fix null apple notification when sound is of type St...
  • 08a0433 fix(firebase_messaging): update APNS token error message for clarity (#17763)
  • 063df87 chore(release): publish packages (#17734)
  • 4e80234 chore(release): publish packages (#17681)
  • fb5076e chore(release): publish packages (#17571)
  • Additional commits viewable in compare view

Updates flutter_local_notifications from 18.0.1 to 19.5.0

Release notes

Sourced from flutter_local_notifications's releases.

flutter_local_notifications-v19.5.0

  • [iOS][macOS] added requestProvidesAppNotificationSettings option to DarwinInitializationSettings class, and isProvidesAppNotificationSettingsEnabled to NotificationsEnabledOptions class. This allows applications to show a "Configure Notifications in " option when showing the context menu for an individual notification. This can be used for scenarios where an application can respond to the user selecting this option to show a custom page for controlling notification settings. Please note this whilst the API changes are applicable for iOS and macOS, the actual functionality only appears to be supported by Apple when it comes to iOS devices. See example app to see how this new functionality can be implemented. Thanks to the PR from Luke Memet

flutter_local_notifications-v19.4.2

  • [Windows] fixed issue where non-ASCII characters for the notification application name weren't being displayed properly. Thanks to the PR from yoyoIU

flutter_local_notifications-v19.4.1

  • [Android] fixed issue #2675 where addition of invisible flag to notification actions could cause scheduled notifications with actions created prior to 19.4.0 to fail to show
  • Updated the Android release build configuration section to point to the latest location of the official Android docs on how to configure which resources (e.g. notification icons) are kept so they are not discarded by the Android compiler. It has also been reworded to make it clearer that this applies to all Android resources

flutter_local_notifications-v19.4.0

  • [Android] added ability to read dataMimeType and dataUri when calling getActiveNotifications() to read details of an active Android notification using the messaging style. Thanks to the PR from Matt Bajorek
  • [Android] added support for Android semantic actions. Thanks to the PR from Jared Szechy

flutter_local_notifications-v19.3.1

  • [Windows] fixed issue #2648 where non-ASCII characters in the notification payload were not being handled properly. Thanks to the PR from yoyoIU
  • [Windows] fixed issue #2651 where unresolved symbols occurred with changes in introduced in newer Windows SDKs. Thanks to the PR from Sebastien

flutter_local_notifications-v19.3.0

  • [Android][iOS][macOS] added cancelAllPendingNotifications() method for cancelling all pending notifications that have been scheduled. Thanks to the PR from Kwon Tae Hyung

flutter_local_notifications-v19.2.1

  • [macOS] removed redundant code that was only applicable on macOS versions lower than 10.14. This should be a non-functional change since 18.0.0 bumped the minimum Flutter SDK requirements that in turn required macOS 10.14 at a minimum. Thanks to the PR from Blin Qipa
  • [Android] bumped robolectric dependency. This fixes an issue where some users reported receiving instances of java.lang.NoClassDefFoundError around the plugin's Android unit tests. Thanks to the PR from Turtlepaw

flutter_local_notifications-v19.2.0

  • [Android] added support to bypass have notifications bypass the device's Do Not Disturb (DnD) settings. Thanks the PR from Michel v. Varendorff that added the following changes
    • The hasNotificationPolicyAccess() method that checks if the application can modify the notification policy
    • The requestNotificationPolicyAccess() method that was added the AndroidFlutterNotificationsPlugin class. This can be used request access for the calling application modify the notification policy
    • Added bypassDnd the property of the AndroidNotificationChannel class and channelBypassDnd to the AndroidNotificationDetails class. These can used to indicate if notifications associated with the channel can bypass the DnD settings of the device
  • Bumped msix dev dependency in example app. This to fix the issue where the msix package stopped being able to created MSIX installers

flutter_local_notifications-v19.1.0

  • [iOS][macOS] added supported to specify the volume for critical alerts. Thanks to the PR from bannzai
  • Updated Gradle setup information in the readme to clarify that desugaring needs to be enabled even if scheduled notifications aren't used

flutter_local_notifications-v19.0.0

  • [Android] Breaking change bumped compileSdk to 35 and updated readme to mention this
  • [Android] bumped GSON dependency to 2.12. As a result of doing so, applications should no longer need ProGuard rules related to this plugin that were needed for release builds to function. The readme has been updated to remove the associated setup to reflect this. Thanks to the PR from Koji Wakamiya
  • [Android] bumped Android Gradle Plugin to 8.6.0 to align with the minimum version to use compileSdk version 35 (Android 15)
  • [Android] bumped desugaring library to 2.1.4 and set Java compatibility to 11 instead of 8. Readme has been updated to reflect these changes wheresourceCompatibility and targetCompability should be set to JavaVersion.VERSION_11 (i.e. Java 11), and jvmTarget is set to 11
  • [iOS] Breaking change removed uiLocalNotificationDateInterpretation parameter from zonedSchedule() method. This was done as it actually no relevant as of the 18.0.0 that dropped support for iOS versions older than 10, which in turn meant that the deprecated UILocalNotification APIs from Apple were no longer used. The corresponding UILocalNotificationDateInterpretation enum has already been removed as well
  • [iOS][macOS] Breaking changes the DarwinNotificationActionOption and DarwinNotificationCategoryOption are now enhanced enums with values accessible through the value property that are exactly the same as their native representations. Previously a bitwise left shift operation was applied to the index value
  • [iOS][macOS] Breaking change renamed Converters header and implementation to FlutterLocalNotificationsConverters. This would likely not affect any users of the plugin. Done to fix/mitigate issues #2160 and #2529 where the original name could clash
  • [iOS][macOS] added Swift Package Manager support
  • [Windows] Added support for Windows. Thanks to PR Levi Lesches that continued the work done initially done by Kenneth and lightrabbit
  • Breaking change bumped minimum Flutter SDK requirement to 3.22.0 and Dart SDK requirement to 3.4.0. The minimum supported Android version is now 5.0 (API level 21)
  • Bumped timezone dependency so that minimum version is now 0.10.0
  • Bumped multiple dependencies in example app
  • Bumped minimum plugin_platform_interface version to 2.1.8

... (truncated)

Commits
  • 6c7378d [various] fixed/updated format GitHub workflow (#2705)
  • 92a0681 [flutter_local_notifications] prepare for 19.5.0 release (#2704)
  • 6fdeb5d Clang Format
  • 79242b4 [flutter_local_notifications] Add support for `providesAppNotificationSetting...
  • ecd66b1 [various] prepare for 19.4.2 release (#2685)
  • 55e85a0 Clang format
  • 25d41e0 fix(windows): non-ascii characters in DisplayName (#2668)
  • 759f4fa [flutter_local_notifications] added null safe handling for invisible Android ...
  • 8e73c91 updated Android release build configuration section in readme (#2669)
  • ca523de [flutter_local_notification] prepare for 19.4.0 release (#2663)
  • Additional commits viewable in compare view

Updates flutter_slidable from 3.1.2 to 4.0.3

Changelog

Sourced from flutter_slidable's changelog.

4.0.3

Fixed

  • Fixes issue with dismissal #537

4.0.2

Fixed

  • Issue when actionPaneConfigurator is null when calling openCurrentActionPane. Thanks to @​EM-Sabeel.

4.0.1

Fixed

  • Issue in auto_close_behavior where removeStatusListener was not called.

4.0.0

Changed

  • Minimum version of Flutter (3.27.0 now)

Fixed

  • Icon color in actions #512
  • Use withValues instead of withOpacity
Commits

Updates go_router from 14.8.1 to 17.0.0

Commits
  • 8176ffd [go_router] ShellRoute will merge GoRouter's observers (#9436)
  • b87777c [pigeon] Update analyzer version (#10352)
  • a5e887b [camera_platform_interface] Adds support for video stabilization to camera_pl...
  • 5cae9ca [google_maps_flutter] Raise MapUsedAfterWidgetDisposedError when map contro...
  • 6646deb [pigeon] Replace containsKey with contains in Kotlin generator (#10274)
  • da23dff [video_player] Remove package in example AndroidManifest.xml file (#10245)
  • e186c0a [in_app_purchase] Remove use of Pigeon's Dart test generator (#10328)
  • 3d926aa [dependabot]: Bu...

    Description has been truncated

…h 8 updates

Bumps the all-dependencies group with 2 updates in the /packages/stream_chat_flutter directory: [alchemist](https://github.com/Betterment/alchemist) and [desktop_drop](https://github.com/MixinNetwork/flutter-plugins/tree/main/packages).
Bumps the all-dependencies group with 6 updates in the /sample_app directory:

| Package | From | To |
| --- | --- | --- |
| [firebase_core](https://github.com/firebase/flutterfire/tree/main/packages/firebase_core) | `3.15.2` | `4.2.1` |
| [flutter_slidable](https://github.com/letsar/flutter_slidable) | `3.1.2` | `4.0.3` |
| [flutter_local_notifications](https://github.com/MaikuB/flutter_local_notifications) | `18.0.1` | `19.5.0` |
| [go_router](https://github.com/flutter/packages/tree/main/packages) | `14.8.1` | `17.0.0` |
| [firebase_messaging](https://github.com/firebase/flutterfire/tree/main/packages/firebase_messaging) | `15.2.10` | `16.0.4` |
| [sentry_flutter](https://github.com/getsentry/sentry-dart) | `8.14.2` | `9.8.0` |



Updates `alchemist` from 0.12.1 to 0.13.0
- [Release notes](https://github.com/Betterment/alchemist/releases)
- [Changelog](https://github.com/Betterment/alchemist/blob/main/CHANGELOG.md)
- [Commits](Betterment/alchemist@v0.12.1...v0.13.0)

Updates `desktop_drop` from 0.6.1 to 0.7.0
- [Release notes](https://github.com/MixinNetwork/flutter-plugins/releases)
- [Commits](https://github.com/MixinNetwork/flutter-plugins/commits/desktop_drop-v0.7.0/packages)

Updates `firebase_core` from 3.15.2 to 4.2.1
- [Release notes](https://github.com/firebase/flutterfire/releases)
- [Commits](https://github.com/firebase/flutterfire/commits/firebase_core-v4.2.1/packages/firebase_core)

Updates `flutter_slidable` from 3.1.2 to 4.0.3
- [Release notes](https://github.com/letsar/flutter_slidable/releases)
- [Changelog](https://github.com/letsar/flutter_slidable/blob/master/CHANGELOG.md)
- [Commits](https://github.com/letsar/flutter_slidable/commits)

Updates `flutter_local_notifications` from 18.0.1 to 19.5.0
- [Release notes](https://github.com/MaikuB/flutter_local_notifications/releases)
- [Commits](MaikuB/flutter_local_notifications@flutter_local_notifications-v18.0.1...flutter_local_notifications-v19.5.0)

Updates `go_router` from 14.8.1 to 17.0.0
- [Commits](https://github.com/flutter/packages/commits/go_router-v17.0.0/packages)

Updates `firebase_messaging` from 15.2.10 to 16.0.4
- [Release notes](https://github.com/firebase/flutterfire/releases)
- [Commits](https://github.com/firebase/flutterfire/commits/firebase_messaging-v16.0.4/packages/firebase_messaging)

Updates `sentry_flutter` from 8.14.2 to 9.8.0
- [Release notes](https://github.com/getsentry/sentry-dart/releases)
- [Changelog](https://github.com/getsentry/sentry-dart/blob/main/CHANGELOG.md)
- [Commits](getsentry/sentry-dart@8.14.2...9.8.0)

Updates `firebase_messaging` from 15.2.10 to 16.0.4
- [Release notes](https://github.com/firebase/flutterfire/releases)
- [Commits](https://github.com/firebase/flutterfire/commits/firebase_messaging-v16.0.4/packages/firebase_messaging)

Updates `flutter_local_notifications` from 18.0.1 to 19.5.0
- [Release notes](https://github.com/MaikuB/flutter_local_notifications/releases)
- [Commits](MaikuB/flutter_local_notifications@flutter_local_notifications-v18.0.1...flutter_local_notifications-v19.5.0)

Updates `flutter_slidable` from 3.1.2 to 4.0.3
- [Release notes](https://github.com/letsar/flutter_slidable/releases)
- [Changelog](https://github.com/letsar/flutter_slidable/blob/master/CHANGELOG.md)
- [Commits](https://github.com/letsar/flutter_slidable/commits)

Updates `go_router` from 14.8.1 to 17.0.0
- [Commits](https://github.com/flutter/packages/commits/go_router-v17.0.0/packages)

Updates `sentry_flutter` from 8.14.2 to 9.8.0
- [Release notes](https://github.com/getsentry/sentry-dart/releases)
- [Changelog](https://github.com/getsentry/sentry-dart/blob/main/CHANGELOG.md)
- [Commits](getsentry/sentry-dart@8.14.2...9.8.0)

---
updated-dependencies:
- dependency-name: alchemist
  dependency-version: 0.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: desktop_drop
  dependency-version: 0.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: firebase_core
  dependency-version: 4.2.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: flutter_slidable
  dependency-version: 4.0.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: flutter_local_notifications
  dependency-version: 19.5.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: go_router
  dependency-version: 17.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: firebase_messaging
  dependency-version: 16.0.4
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: sentry_flutter
  dependency-version: 9.8.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: firebase_messaging
  dependency-version: 16.0.4
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: flutter_local_notifications
  dependency-version: 19.5.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: flutter_slidable
  dependency-version: 4.0.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: go_router
  dependency-version: 17.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: sentry_flutter
  dependency-version: 9.8.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@coderabbitai
Copy link
Contributor

coderabbitai bot commented Nov 6, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Note

Free review on us!

CodeRabbit is offering free reviews until Fri Nov 07 2025 to showcase some of the refinements we've made.

Comment @coderabbitai help to get the list of available commands and usage tips.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dart Pull requests that update Dart code dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant