Skip to content

chore(deps): bump the non-breaking group across 1 directory with 5 updates#12

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pub/non-breaking-3c1f783b0b
Closed

chore(deps): bump the non-breaking group across 1 directory with 5 updates#12
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pub/non-breaking-3c1f783b0b

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 3, 2026

Copy link
Copy Markdown
Contributor

Bumps the non-breaking group with 5 updates in the / directory:

Package From To
dbus 0.7.12 0.7.13
flutter_local_notifications 21.0.0 22.0.0-dev.3
dartssh2 2.13.0 2.17.1
flutter_secure_storage 10.2.0 10.3.1
go_router 17.2.3 17.3.0

Updates dbus from 0.7.12 to 0.7.13

Changelog

Sourced from dbus's changelog.

0.7.13

  • Make able to work on Windows by not supporting control messages there (they are not supported).
  • Depend on xml 7.x.
Commits

Updates flutter_local_notifications from 21.0.0 to 22.0.0-dev.3

Release notes

Sourced from flutter_local_notifications's releases.

flutter_local_notifications-v22.0.0-dev.3

  • [Android] calling the requestNotificationPolicyAccess() method belonging to the AndroidFlutterLocalNotificationsPlugin class will now highlight associated application. Thanks to the PR from Claudius Kienle
  • [Windows] bumped xml dependency so that supported range is >=6.5.0 <8.0.0

flutter_local_notifications-v22.0.0-dev.2

  • [Web] Breaking change renamed the details parameter associated with the show() method to notificationDetails. This was done to be consistent with other APIs across all of the platforms
  • [Web] Breaking changes removed the hasPermission and isPermissionDenied boolean properties associated with the WebFlutterLocalNotificationsPlugin class. This was done to simplify the plugin as the permissionStatus property already exists and can be used
  • [Web] Fixed an issue where isSupported property in the WebFlutterLocalNotificationsPlugin was not exposed

flutter_local_notifications-v22.0.0-dev.1

  • [Web] added web platform support. Thanks to the initial PR from Levi Lesches and completion by Gaurav
  • [Windows] when calling periodicallyShow() the message when the UnsupportedError is thrown has been updated to say Windows devices cannot periodically show notifications instead. This has happened as a result of shifting the responsibility of reporting the UnsupportedError so it is done by flutter_local_notifications_windows instead of flutter_local_notifications
Commits
  • 560d487 [various] prepare for 22.0.0-dev.3 release (#2776)
  • 70bc077 [flutter_local_notifications] highlight app row when opening DND access setti...
  • b35b35b Bump xml from 6.6.1 to 7.0.1 in /flutter_local_notifications_windows (#2774)
  • d50f5d7 [various] prepare for 22.0.0-dev.2 release (#2772)
  • d9a0764 [flutter_local_notifications_web] update README snippets to use web-specific ...
  • 6b33aeb [various] prepare for 22.0.0-dev.1 prerelease (#2767)
  • b206423 [flutter_local_notifications] Add Web Platform Support (#2757)
  • See full diff in compare view

Updates dartssh2 from 2.13.0 to 2.17.1

Release notes

Sourced from dartssh2's releases.

2.17.1

What's Changed

New Contributors

Full Changelog: TerminalStudio/dartssh2@v2.17.0...v2.17.1

2.17.0

What's Changed

Full Changelog: TerminalStudio/dartssh2@v2.16.0...v2.17.0

2.16.0

What's Changed

Full Changelog: TerminalStudio/dartssh2@v2.15.0...v2.16.0

2.15.0

What's Changed

New Contributors

Full Changelog: TerminalStudio/dartssh2@v2.14.0...v2.15.0

2.14.0

What's Changed

... (truncated)

Changelog

Sourced from dartssh2's changelog.

[2.17.1] - 2026-04-12

  • Made SSHPem.decode accept CRLF (\r\n) line endings in addition to LF when parsing PEM content #157. Thanks [@​gkc].

[2.17.0] - 2026-03-28

  • Improved Web/WASM compatibility by updating SSHSocket conditional imports so web runtimes consistently use the web socket shim and avoid incorrect native socket selection #88. Thanks [@​vicajilau].
  • Added local dynamic forwarding (SSHClient.forwardDynamic) with SOCKS5 NO AUTH + CONNECT, including configurable handshake/connect timeouts and connection limits.
  • Added AES-GCM (aes128-gcm@openssh.com, aes256-gcm@openssh.com) AEAD groundwork in transport and cipher negotiation; currently opt-in (not enabled by default yet). chacha20-poly1305@openssh.com remains pending #26. Thanks [@​vicajilau].

[2.16.0] - 2026-03-24

  • BREAKING: Changed SSHChannelController.sendEnv() from void to Future<bool> to properly await environment variable setup responses and avoid race conditions with PTY requests #102. Thanks [@​itzhoujun] and [@​vicajilau].
  • Clarified shell stdio wiring for CLI-only usage and guarded example/shell.dart against missing local terminal handles (for example GUI-launched Windows .exe) #121. Thanks [@​bradmartin333] and [@​vicajilau].
  • Added support for parsing legacy unencrypted EC PRIVATE KEY PEM format in SSHKeyPair.fromPem #109. Thanks [@​jooy2] and [@​vicajilau].
  • Added SSHClient.runWithResult() to expose command output together with exitCode and exitSignal while keeping run() as a convenience API #99. Thanks [@​falrom] and [@​vicajilau].
  • Added non-breaking high-level SFTP download() / downloadTo() APIs and read pipeline tuning knobs (chunkSize, maxPendingRequests) for improved large-file throughput while preserving stream compatibility #124. Thanks [@​vicajilau].
  • Made SFTP directory/file name parsing tolerant to malformed UTF-8 bytes to avoid FormatException on non-UTF-8 server filenames #95. Thanks [@​vicajilau].

[2.15.0] - 2026-03-20

  • Updated pointycastle dependency to ^4.0.0 #131. Thanks [@​vicajilau].
  • Added foundational X11 forwarding support with session x11-req API, incoming x11 channel handling, and protocol tests #1. Thanks [@​vicajilau].
  • Exposed SSH ident configuration from SSHClient #135. Thanks [@​Remulic] and [@​vicajilau].
  • Propagated the underlying exception in SSHAuthAbortError through reason for better diagnostics #133. Thanks [@​james-thorpe] and [@​vicajilau].
  • Accepted SSH-1.99-* server banners as SSH-2 compatible during version exchange and added regression tests #132. Thanks [@​james-thorpe] and [@​vicajilau].
  • Added SSH agent forwarding support (auth-agent-req@openssh.com) with in-memory agent handling and RSA sign-request flag support #139. Thanks [@​Wackymax] and [@​vicajilau].
  • Normalized HTTP response line parsing in SSHHttpClientResponse to handle CRLF endings consistently and avoid trailing line-ending artifacts in parsed status/header fields #145. Thanks [@​vicajilau].
  • Fixed SFTP packet encoding/decoding consistency: SftpInitPacket.decode now parses extension pairs correctly and SftpExtendedReplyPacket.encode now preserves raw payload bytes #145. Thanks [@​vicajilau].

[2.14.0] - 2026-03-19

  • Fixed SSH connections through bastion hosts where the target server sends its version string immediately upon connection (which is standard behavior per RFC 4253) #141. Thanks [@​shihuili1218].
  • Adds a new forwardLocalUnix() function, which is an equivalent of ssh -L localPort:remoteSocketPath #140. Thanks [@​isegal].
Commits

Updates flutter_local_notifications from 21.0.0 to 22.0.0-dev.3

Release notes

Sourced from flutter_local_notifications's releases.

flutter_local_notifications-v22.0.0-dev.3

  • [Android] calling the requestNotificationPolicyAccess() method belonging to the AndroidFlutterLocalNotificationsPlugin class will now highlight associated application. Thanks to the PR from Claudius Kienle
  • [Windows] bumped xml dependency so that supported range is >=6.5.0 <8.0.0

flutter_local_notifications-v22.0.0-dev.2

  • [Web] Breaking change renamed the details parameter associated with the show() method to notificationDetails. This was done to be consistent with other APIs across all of the platforms
  • [Web] Breaking changes removed the hasPermission and isPermissionDenied boolean properties associated with the WebFlutterLocalNotificationsPlugin class. This was done to simplify the plugin as the permissionStatus property already exists and can be used
  • [Web] Fixed an issue where isSupported property in the WebFlutterLocalNotificationsPlugin was not exposed

flutter_local_notifications-v22.0.0-dev.1

  • [Web] added web platform support. Thanks to the initial PR from Levi Lesches and completion by Gaurav
  • [Windows] when calling periodicallyShow() the message when the UnsupportedError is thrown has been updated to say Windows devices cannot periodically show notifications instead. This has happened as a result of shifting the responsibility of reporting the UnsupportedError so it is done by flutter_local_notifications_windows instead of flutter_local_notifications
Commits
  • 560d487 [various] prepare for 22.0.0-dev.3 release (#2776)
  • 70bc077 [flutter_local_notifications] highlight app row when opening DND access setti...
  • b35b35b Bump xml from 6.6.1 to 7.0.1 in /flutter_local_notifications_windows (#2774)
  • d50f5d7 [various] prepare for 22.0.0-dev.2 release (#2772)
  • d9a0764 [flutter_local_notifications_web] update README snippets to use web-specific ...
  • 6b33aeb [various] prepare for 22.0.0-dev.1 prerelease (#2767)
  • b206423 [flutter_local_notifications] Add Web Platform Support (#2757)
  • See full diff in compare view

Updates flutter_secure_storage from 10.2.0 to 10.3.1

Release notes

Sourced from flutter_secure_storage's releases.

v10.3.1

Android

  • Fixed AEADBadTagException when biometric authentication is cancelled on first launch: a stale IV is now cleared and the cipher re-initialised in encrypt mode so the next authentication attempt succeeds.
  • Fixed NullPointerException when retrying an operation after a cancelled biometric prompt: preferences is now only assigned once cipher initialisation completes successfully, allowing a clean retry.

v10.3.0

Android

  • Added AndroidBiometricType enum and biometricType option to AndroidOptions to control which authentication methods are accepted during biometric prompts (requires KeyCipherAlgorithm.AES_GCM_NoPadding).
    • AndroidBiometricType.biometricOrDeviceCredential (default) accepts Class 3 biometrics or device credentials (PIN/pattern/password), preserving previous behaviour.
    • AndroidBiometricType.strongBiometricOnly restricts authentication to Class 3 (strong) biometrics only; device credentials are explicitly rejected.
  • Fully enforced on Android 11+ (API 30+) via setAllowedAuthenticators on BiometricPrompt and setUserAuthenticationParameters on the KeyStore key. On earlier API levels the system may still permit device credentials.
  • Added biometricPromptNegativeButton option to AndroidOptions to customise the dismiss button label on the biometric prompt. Required when using strongBiometricOnly or on Android 10 and lower.

iOS / macOS

  • Fixed secStoreAvailabilitySink not being called when protected data availability changes.
  • Fixed kSecUseDataProtectionKeychain being added to Keychain queries unconditionally; it is now only set when useDataProtectionKeychain is explicitly enabled.

Windows

  • Fixed deleteAll and containsKey not acquiring the mutex lock, which could cause data races under concurrent access. If you are on Dart >=3.10.0, this fix is applied automatically. Otherwise, pin flutter_secure_storage_windows: ^4.2.2 in your pubspec.yaml to opt in and make sure your constraint is set for minimum of Dart >=3.10.0.

Linux

  • Fixed deleteKeyring storing the string "null" instead of an empty JSON object {}.
  • Fixed non-UTF-8 error messages from libsecret causing a FormatException on the Dart side; messages are now sanitised before being sent through the method channel.
  • Fixed locked or unavailable keyring now surfacing as a catchable PlatformException with code KeyringLocked.
  • Fixed JSON parse errors and other C++ exceptions now surfacing as a PlatformException with code StorageError instead of sending malformed bytes through the channel.
Commits
  • 3fc4c53 fix: revert updated darwin package for backwards compatibility
  • 6b9e8f4 fix: added changelog entries
  • 0b9ed95 Merge pull request #1148 from CORDEA/fix/defer-preferences-until-cipher-initi...
  • c557a53 Merge pull request #1147 from CORDEA/fix/reset-stale-cipher-iv-on-biometric-f...
  • be0674a Use a single SharedPreferences.Editor when resetting stale IV
  • 5817b55 Reset stale cipher IV when biometric auth fails before completion
  • 635013b Defer setting preferences until storageCipher is initialized
  • 35da5ae fix: badge
  • a86a1ef release of v10.3.0
  • 9d09d99 release of v0.3.2
  • Additional commits viewable in compare view

Updates go_router from 17.2.3 to 17.3.0

Commits
  • 40733eb [go_router] Batch release (#11813)
  • 6246800 [vector_graphics_compiler] Support xml 7 (#11804)
  • 0bceb64 Migrated video_player_android to Built-in Kotlin (#11798)
  • e930ced [vector_graphics_compiler]: Fix Stack Overflow and CPU/Memory DoS on SVGs wit...
  • 10cbdc5 [in_app_purchase_android] Update Play Billing library to 8.0.0 (#10816)
  • b74a269 [google_maps_flutter] Federate READMEs (#11790)
  • c19a48d [google_maps_flutter] Remove duplicated privacy manifest entries (#11791)
  • db270b4 [go_router] Allow users to specify onExit as optional (#11150)
  • 6da2737 [google_maps_flutter] Add Android and iOS attribution ID (#11731)
  • 874b823 [dependabot]: Bump org.json:json from 20251224 to 20260522 in /packages/in_ap...
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…dates

Bumps the non-breaking group with 5 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [dbus](https://github.com/canonical/dbus.dart) | `0.7.12` | `0.7.13` |
| [flutter_local_notifications](https://github.com/MaikuB/flutter_local_notifications) | `21.0.0` | `22.0.0-dev.3` |
| [dartssh2](https://github.com/TerminalStudio/dartssh2) | `2.13.0` | `2.17.1` |
| [flutter_secure_storage](https://github.com/mogol/flutter_secure_storage) | `10.2.0` | `10.3.1` |
| [go_router](https://github.com/flutter/packages/tree/main/packages) | `17.2.3` | `17.3.0` |



Updates `dbus` from 0.7.12 to 0.7.13
- [Changelog](https://github.com/canonical/dbus.dart/blob/main/CHANGELOG.md)
- [Commits](https://github.com/canonical/dbus.dart/commits)

Updates `flutter_local_notifications` from 21.0.0 to 22.0.0-dev.3
- [Release notes](https://github.com/MaikuB/flutter_local_notifications/releases)
- [Commits](MaikuB/flutter_local_notifications@flutter_local_notifications-v21.0.0...flutter_local_notifications-v22.0.0-dev.3)

Updates `dartssh2` from 2.13.0 to 2.17.1
- [Release notes](https://github.com/TerminalStudio/dartssh2/releases)
- [Changelog](https://github.com/TerminalStudio/dartssh2/blob/master/CHANGELOG.md)
- [Commits](https://github.com/TerminalStudio/dartssh2/commits/v2.17.1)

Updates `flutter_local_notifications` from 21.0.0 to 22.0.0-dev.3
- [Release notes](https://github.com/MaikuB/flutter_local_notifications/releases)
- [Commits](MaikuB/flutter_local_notifications@flutter_local_notifications-v21.0.0...flutter_local_notifications-v22.0.0-dev.3)

Updates `flutter_secure_storage` from 10.2.0 to 10.3.1
- [Release notes](https://github.com/mogol/flutter_secure_storage/releases)
- [Commits](juliansteenbakker/flutter_secure_storage@v10.2.0...v10.3.1)

Updates `go_router` from 17.2.3 to 17.3.0
- [Commits](https://github.com/flutter/packages/commits/go_router-v17.3.0/packages)

---
updated-dependencies:
- dependency-name: dbus
  dependency-version: 0.7.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking
- dependency-name: flutter_local_notifications
  dependency-version: 22.0.0-dev.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: non-breaking
- dependency-name: dartssh2
  dependency-version: 2.17.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking
- dependency-name: flutter_local_notifications
  dependency-version: 22.0.0-dev.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: non-breaking
- dependency-name: flutter_secure_storage
  dependency-version: 10.3.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking
- dependency-name: go_router
  dependency-version: 17.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking
...

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

dependabot Bot commented on behalf of github Jun 3, 2026

Copy link
Copy Markdown
Contributor Author

Labels

The following labels could not be found: dependencies. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot @github

dependabot Bot commented on behalf of github Jun 8, 2026

Copy link
Copy Markdown
Contributor Author

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Jun 8, 2026
@dependabot dependabot Bot deleted the dependabot/pub/non-breaking-3c1f783b0b branch June 8, 2026 23:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants