Skip to content

chore(deps): bump share_plus, device_info_plus, wakelock_plus, package_info_plus and file_picker#750

Merged
Livinglist merged 1 commit into
masterfrom
dependabot/pub/multi-60facf8223
May 23, 2026
Merged

chore(deps): bump share_plus, device_info_plus, wakelock_plus, package_info_plus and file_picker#750
Livinglist merged 1 commit into
masterfrom
dependabot/pub/multi-60facf8223

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 18, 2026

Bumps share_plus, device_info_plus, wakelock_plus, package_info_plus and file_picker. These dependencies needed to be updated together.
Updates share_plus from 12.0.2 to 13.1.0

Commits

Updates device_info_plus from 12.4.0 to 13.1.0

Commits
  • 6427bc6 chore(release): prepare for release (#3805)
  • 6d73e0d feat(device_info_plus): Lower requirements to Dart 3.10 and Flutter 3.38.1 (#...
  • 6982a68 chore(release): prepare for release (#3793)
  • f0da4b9 feat(package_info_plus)!: Bump win32 from 5.15.0 to 6.0.0 (#3760)
  • 5f93878 feat(device_info_plus)!: Bump win32 from 5.15.0 to 6.0.0 (#3791)
  • See full diff in compare view

Updates wakelock_plus from 1.5.2 to 1.6.1

Commits
  • 219ab5a wakelock_plus, version 1.6.1. Addresses PR #133.
  • b1ed7fb Merge pull request #133 from diegotori/wakelock_plus_flutter_3.38_downgrade
  • 41c604d Added more resilient chromium-chromedriver install command.
  • 5a43a9c Library now supports Flutter 3.38 again.
  • 7ef9d30 wakelock_plus_platform_interface, version 1.5.1. Addresses PR #126.
  • 874c830 Merge pull request #126 from diegotori/wakelock_plus_platform_interface_flutt...
  • 8385d6f Restored Flutter 3.38 compatibility to wakelock_plus_platform_interface.
  • 22d7522 wakelock_plus, version 1.6.0. Addresses PRs #122 and #123.
  • d75c81e wakelock_plus_platform_interface, version 1.5.0. Addresses PRs #122 and #123.
  • a0669c0 Merge pull request #122 from dbebawy/feat/win32-6-support
  • Additional commits viewable in compare view

Updates package_info_plus from 9.0.1 to 10.1.0

Commits
  • 6427bc6 chore(release): prepare for release (#3805)
  • bed26b5 feat(package_info_plus): Lower requirements to Dart 3.10 and Flutter 3.38.1 (...
  • 6982a68 chore(release): prepare for release (#3793)
  • f0da4b9 feat(package_info_plus)!: Bump win32 from 5.15.0 to 6.0.0 (#3760)
  • See full diff in compare view

Updates file_picker from 11.0.2 to 12.0.0-beta.3

Release notes

Sourced from file_picker's releases.

12.0.0-beta.3

What's Changed

Full Changelog: miguelpruivo/flutter_file_picker@v12.0.0-beta.2...v12.0.0-beta.3

12.0.0-beta.2

What's Changed

Full Changelog: miguelpruivo/flutter_file_picker@v12.0.0-beta.1...v12.0.0-beta.2

12.0.0-beta.1

What's Changed

Full Changelog: miguelpruivo/flutter_file_picker@v11.0.2...v12.0.0-beta.1

Changelog

Sourced from file_picker's changelog.

12.0.0-beta.3

General

  • Added onFileLoading callback to saveFile and implemented status tracking via an event channel. saveFile now reports loading status (for example FilePickerStatus.loading and FilePickerStatus.done).
  • Offloaded file saving (writing bytes) to a background isolate to avoid blocking the UI when saving large files.
  • Ensured the event subscription used for loading status is always cancelled in a finally block to prevent leaks and spurious events.

Android

  • Fixed Android plugin registration when using AGP 9+ with android.builtInKotlin=false, while preserving support for older AGP setups.

12.0.0-beta.2

General

  • Updated dependencies: flutter_plugin_android_lifecycle to 2.0.34, path to 1.9.1, win32 to 6.2.0, cross_file to 0.3.5+2, web to 1.1.1, and dbus to 0.7.12.

Android

  • Added a controlled out_of_memory error when picking large files with withData, avoiding Android crashes and recommending withReadStream as a safer alternative for large or multiple selections. #1997 Breaking Change: FileType.image now opens the native image gallery instead of the document picker, ignoring allowedExtensions on Android. #2004

12.0.0-beta.1

General

  • Raised the minimum supported Flutter/Dart version to Flutter 3.38 / Dart 3.10 across all platforms. #1980

Windows

  • Migrated win32 dependency to 6.0.0 and updated the Windows file picker implementation to match the new Win32/COM APIs. #1980

Darwin

  • Migrated the iOS and macOS native implementations to shared Darwin sources.
  • BREAKING CHANGE: The minimum supported iOS deployment target is now 14.0.
  • Removed the DKImagePickerController / DKPhotoGallery dependency chain from the Darwin iOS path.

Android

  • Implemented support for Android Storage Access Framework (SAF) Persistable URI Grants, allowing long-term access to files and directories across device reboots. #1825 #721
  • Added AndroidSAFOptions and AndroidSAFHandle to configure and manage persistent permissions.
  • Introduced AndroidPlatformFile as a subclass of PlatformFile to encapsulate SAF-specific metadata.
  • Updated the Android Gradle Wrapper to 8.7 to ensure compatibility with Android Gradle Plugin (AGP) 8.5.1.
  • Improved saveFile naming behavior when a duplicate file exists, normalizing duplicate names to keep the extension suffix (for example, file (1).bak instead of file.bak (1)). #1947

Web

  • Fixed pickFiles() default withData behavior in the public API to correctly default to true on web when not explicitly provided. #1987
Commits
  • 181dda4 Merge pull request #2007 from daniJimen/feature/fix_1918_add_loading_into_save
  • 7df67e1 Add missing changelog entries
  • 16a2494 feat: add background saving and status tracking to saveFile
  • 839ff69 chore: remove redundant comment in _saveBytesIsolateEntry
  • 13f5cf9 Update lib/src/platform/file_picker_method_channel.dart
  • 97cd322 Merge branch 'master' into feature/fix_1918_add_loading_into_save
  • 8a3d9d9 Merge remote-tracking branch 'origin/feature/fix_1918_add_loading_into_save' ...
  • c7b0f22 fix: simplify exception handling in file_picker_utils.dart
  • d26ea85 Update lib/src/file_picker_utils.dart
  • 9e15199 refactor: simplify isolate argument validation using Dart pattern matching
  • 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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

…e_info_plus and file_picker

Bumps [share_plus](https://github.com/fluttercommunity/plus_plugins/tree/main/packages/share_plus), [device_info_plus](https://github.com/fluttercommunity/plus_plugins/tree/main/packages/device_info_plus), [wakelock_plus](https://github.com/fluttercommunity/wakelock_plus), [package_info_plus](https://github.com/fluttercommunity/plus_plugins/tree/main/packages/package_info_plus) and [file_picker](https://github.com/miguelpruivo/flutter_file_picker). These dependencies needed to be updated together.

Updates `share_plus` from 12.0.2 to 13.1.0
- [Release notes](https://github.com/fluttercommunity/plus_plugins/releases)
- [Commits](https://github.com/fluttercommunity/plus_plugins/commits/share_plus-v13.1.0/packages/share_plus)

Updates `device_info_plus` from 12.4.0 to 13.1.0
- [Release notes](https://github.com/fluttercommunity/plus_plugins/releases)
- [Commits](https://github.com/fluttercommunity/plus_plugins/commits/device_info_plus-v13.1.0/packages/device_info_plus)

Updates `wakelock_plus` from 1.5.2 to 1.6.1
- [Commits](fluttercommunity/wakelock_plus@wakelock_plus_1.5.2...wakelock_plus_1.6.1)

Updates `package_info_plus` from 9.0.1 to 10.1.0
- [Release notes](https://github.com/fluttercommunity/plus_plugins/releases)
- [Commits](https://github.com/fluttercommunity/plus_plugins/commits/package_info_plus-v10.1.0/packages/package_info_plus)

Updates `file_picker` from 11.0.2 to 12.0.0-beta.3
- [Release notes](https://github.com/miguelpruivo/flutter_file_picker/releases)
- [Changelog](https://github.com/miguelpruivo/flutter_file_picker/blob/master/CHANGELOG.md)
- [Commits](miguelpruivo/flutter_file_picker@v11.0.2...v12.0.0-beta.3)

---
updated-dependencies:
- dependency-name: share_plus
  dependency-version: 13.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: device_info_plus
  dependency-version: 13.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: wakelock_plus
  dependency-version: 1.6.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: package_info_plus
  dependency-version: 10.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: file_picker
  dependency-version: 12.0.0-beta.3
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@Livinglist Livinglist merged commit b726d5d into master May 23, 2026
2 checks passed
@Livinglist Livinglist deleted the dependabot/pub/multi-60facf8223 branch May 23, 2026 08:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant