Skip to content

chore(deps): bump the all-dependencies group across 3 directories with 7 updates#2792

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/pub/packages/stream_chat/all-dependencies-6dce434f66
Open

chore(deps): bump the all-dependencies group across 3 directories with 7 updates#2792
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/pub/packages/stream_chat/all-dependencies-6dce434f66

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the all-dependencies group with 2 updates in the /packages/stream_chat directory: test and freezed.
Bumps the all-dependencies group with 4 updates in the /packages/stream_chat_flutter directory: chewie, share_plus, record and file_picker.
Bumps the all-dependencies group with 1 update in the /packages/stream_chat_persistence directory: sqlite3_flutter_libs.

Updates test from 1.31.1 to 1.31.2

Release notes

Sourced from test's releases.

package:test v1.31.2

  • Add support for running tests as native CLI bundles (vm platform only).
    • You can run tests this way with --compiler cli.
  • Impacts Configuration Support using the OS platform selector to configure browser tests. Previously tests loaded for the browser would have an operating system of "none", now they will have an operating system matching the system the browser is running on. This allows more specific configuration, such as skipping a particular browser test on a particular platform. This may impact existing configuration which relied on the configuration for browser tests being independent from any OS specific configuration. For instance a wide skip of all tests with OS 'windows' would previously still run browser tests on windows, but will now skip all tests including browser tests.
  • Use a DevTools URL instead of a defunct observatory URL.
  • Disable throttling in chrome launch arguments.
  • Allow package_config 3.x.x.
  • Require analyzer: '>=13.0.0 <15.0.0'
  • Use the compact or failures-only reporters by default for tests run directly instead of through the test runner.
Commits

Updates freezed from 3.2.5 to 4.0.0-dev.3

Commits

Updates chewie from 1.13.1 to 1.14.1

Changelog

Sourced from chewie's changelog.

[1.14.1]

  • 🛠️ #945: Flutter 3.38 downgrade. Thanks diegotori.
  • Library now supports Flutter and Dart versions 3.38.0 and 3.10 or higher respectively, restoring previous compatibility.

[1.14.0]

  • 🛠️ #944: Flutter 3.41 Upgrade. Thanks diegotori.
  • BREAKING CHANGE: Library now requires at least Flutter version 3.41.0 or higher due to wakelock_plus's upgrade to version 1.6.0, which now requires this minimum Flutter version.
Commits
  • 1bc03f4 chewie, version 1.14.1. Addresses PR #945.
  • acb0552 Merge pull request #945 from diegotori/flutter_3.38_downgrade
  • 69a8fc7 Downgraded the minimum Flutter version to 3.38.
  • b981427 chewie, version 1.14.0. Addresses PR #944.
  • d3c7b20 Merge pull request #944 from diegotori/flutter_3.41_upgrade
  • 3e503fd Upgraded codebase to Flutter 3.41.
  • See full diff in compare view

Updates share_plus from 12.0.2 to 13.2.0

Commits
  • 65ecfd0 chore(release): prepare for release (#3912)
  • cf00609 feat(share_plus): Updated Swift Package Manager setup for Flutter 3.44 (#3911)
  • 0c9b0ad feat(share_plus): Add support of built-in Kotlin (#3896)
  • d9b6f29 refactor(share_plus): change android gradle from groovy to kotlin (#3860)
  • 09d75d8 fix(share_plus): resolve js interop lint and maintain minimum sdk (#3846)
  • 6427bc6 chore(release): prepare for release (#3805)
  • d965e00 feat(share_plus): Lower requirements to Dart 3.10 and Flutter 3.38.1 (#3801)
  • 6982a68 chore(release): prepare for release (#3793)
  • 0e3eb91 feat(share_plus)!: Bump win32 from 5.15.0 to 6.0.0 (#3762)
  • See full diff in compare view

Updates record from 6.2.1 to 7.1.1

Commits
  • 1b1644b fix(ios): Guard ios specific calls.
  • 9bc7154 fix(web): Hide internals in src/ folder.
  • 6cb214b chore: Update version and changelog.
  • 3e2eee5 chore(Windows): Code improvements
  • 36a7301 feat(Windows): Add AAC ADTS stream.
  • 3e98a73 fix(Android/iOS/macOS): Throw for unsupported stream encoders.
  • 8bf3d48 fix(Android): Flac regression from CSD changes.
  • 0407df5 fix(Android): Improve consistency of device/codec caps adjustment flow.
  • 9eb1878 fix(Android): Potential result sent twice with SCO.
  • 8b74fa0 chore: Update version and changelog.
  • Additional commits viewable in compare view

Updates file_picker from 11.0.2 to 12.0.0-beta.7

Release notes

Sourced from file_picker's releases.

12.0.0-beta.7

No release notes provided.

12.0.0-beta.6

What's Changed

New Contributors

Full Changelog: miguelpruivo/flutter_file_picker@v12.0.0-beta.5...v12.0.0-beta.6

12.0.0-beta.5

What's Changed

Full Changelog: miguelpruivo/flutter_file_picker@v12.0.0-beta.4...v12.0.0-beta.5

v12.0.0-beta.4

What's Changed

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

12.0.0-beta.3

What's Changed

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

... (truncated)

Changelog

Sourced from file_picker's changelog.

12.0.0-beta.7

Web

  • Ensures XFile.fromData is only used on the web if bytes is not null, preventing potential null check errors.

12.0.0-beta.6

General

  • Improved PlatformFile.readAsBytes() so picked files can be read even when withData was not used and the file only has a local path or a stream source.
  • FileType.custom now shares a consistent allowedExtensions validation across platforms, throwing ArgumentError when filters are missing or used with a non-custom file type.
  • The ffi, win32, and flutter_lints dependencies have been updated.

Android

  • Prevents unresolved references when extracting hashCode under a forced JVM version. #2070

12.0.0-beta.5

Android

  • saveFile now writes file data using Kotlin Coroutines (CoroutineScope(Dispatchers.IO).launch), keeping all I/O off the main thread and preventing UI freezes.

iOS

  • Fixed a race condition when dismissing the file picker with a fast swipe, preventing the picker from getting stuck in a multiple_request state until app restart. #2021
  • iOS now preserves the selection order when picking multiple files: the list of returned files will match the order in which the user selected them.
  • saveFile now performs file writing on a background thread (DispatchQueue.global), preventing UI freezes when saving large files.

Web

  • Fixed PlatformFile.readAsBytes() so files picked on Web can recover data from blob: and data: URLs when withData was not used.
  • Added Web fallback to stream file bytes from blob:/data: URLs: when the ReadableStream API is supported.

12.0.0-beta.4

General

  • Added pickFile() static method as a convenience wrapper for single file selection, returning PlatformFile? directly. #1469
  • BREAKING CHANGE: Refactored saveFile() to make fileName and bytes required parameters across all platforms for a more consistent API. Improved the method's documentation for better clarity.
  • Improved documentation for PlatformFile properties (path, bytes, readStream) to clarify nullability and usage across platforms. #1469
  • BREAKING CHANGE: The allowMultiple parameter on pickFiles() now defaults to true. Use pickFile() for single-file selection. (allowMultiple is deprecated and will be removed in a future release.)
  • Deprecated withData, withReadStream, and readSequential on pickFiles()/pickFile(). Users should call PlatformFile.readAsBytes() or PlatformFile.readAsByteStream() to load file data on demand. These parameters will be removed in a future release.
  • Improved PlatformFile.toString() output to display byte length instead of full content.

Android

  • Fixed an issue where FileType.any would prevent subdirectories from being listed in the system file explorer by ensuring EXTRA_MIME_TYPES is correctly passed as an array. #2013
  • Removed explicit Kotlin Gradle Plugin (KGP) application and dependencies from build files to resolve warnings under AGP 9.0+.
  • Updated Android build tooling and dependencies: Android Gradle Plugin bumped to 8.5.2, androidx.core:core and androidx.core:core-ktx updated to 1.18.0, androidx.lifecycle:lifecycle-runtime updated to 2.10.0, and org.apache.tika:tika-core updated to 3.3.0.
  • Migrated Android build files from Groovy to Kotlin DSL (build.gradle.kts, settings.gradle.kts).
  • Added Android AGP compatibility CI workflow.

Darwin

  • Added missing FlutterFramework dependency to Package.swift for Swift Package Manager (SPM) compatibility.

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.

... (truncated)

Commits
  • 7fbe3ad Merge pull request #2075 from daniJimen/feature/fix_web_issue_with_xfile
  • a805298 Merge branch 'master' into feature/fix_web_issue_with_xfile
  • e51213d Clean up formatting in CHANGELOG.md
  • f85c933 Bump version to 12.0.0-beta.7
  • fc64c32 Ensure XFile.fromData is only used when bytes are non-null on Web
  • 2867a4e Fix PlatformFile.xFile getter on web when bytes are null
  • 3dcf7a4 Merge pull request #2072 from daniJimen/feature/update_dependencies
  • b6995c1 Update CHANGELOG.md
  • 992055a Improve CHANGELOG.md formatting
  • b497609 Update CHANGELOG.md with dependency changes
  • Additional commits viewable in compare view

Updates file_picker from 11.0.2 to 12.0.0-beta.7

Release notes

Sourced from file_picker's releases.

12.0.0-beta.7

No release notes provided.

12.0.0-beta.6

What's Changed

New Contributors

Full Changelog: miguelpruivo/flutter_file_picker@v12.0.0-beta.5...v12.0.0-beta.6

12.0.0-beta.5

What's Changed

Full Changelog: miguelpruivo/flutter_file_picker@v12.0.0-beta.4...v12.0.0-beta.5

v12.0.0-beta.4

What's Changed

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

12.0.0-beta.3

What's Changed

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

... (truncated)

Changelog

Sourced from file_picker's changelog.

12.0.0-beta.7

Web

  • Ensures XFile.fromData is only used on the web if bytes is not null, preventing potential null check errors.

12.0.0-beta.6

General

  • Improved PlatformFile.readAsBytes() so picked files can be read even when withData was not used and the file only has a local path or a stream source.
  • FileType.custom now shares a consistent allowedExtensions validation across platforms, throwing ArgumentError when filters are missing or used with a non-custom file type.
  • The ffi, win32, and flutter_lints dependencies have been updated.

Android

  • Prevents unresolved references when extracting hashCode under a forced JVM version. #2070

12.0.0-beta.5

Android

  • saveFile now writes file data using Kotlin Coroutines (CoroutineScope(Dispatchers.IO).launch), keeping all I/O off the main thread and preventing UI freezes.

iOS

  • Fixed a race condition when dismissing the file picker with a fast swipe, preventing the picker from getting stuck in a multiple_request state until app restart. #2021
  • iOS now preserves the selection order when picking multiple files: the list of returned files will match the order in which the user selected them.
  • saveFile now performs file writing on a background thread (DispatchQueue.global), preventing UI freezes when saving large files.

Web

  • Fixed PlatformFile.readAsBytes() so files picked on Web can recover data from blob: and data: URLs when withData was not used.
  • Added Web fallback to stream file bytes from blob:/data: URLs: when the ReadableStream API is supported.

12.0.0-beta.4

General

  • Added pickFile() static method as a convenience wrapper for single file selection, returning PlatformFile? directly. #1469
  • BREAKING CHANGE: Refactored saveFile() to make fileName and bytes required parameters across all platforms for a more consistent API. Improved the method's documentation for better clarity.
  • Improved documentation for PlatformFile properties (path, bytes, readStream) to clarify nullability and usage across platforms. #1469
  • BREAKING CHANGE: The allowMultiple parameter on pickFiles() now defaults to true. Use pickFile() for single-file selection. (allowMultiple is deprecated and will be removed in a future release.)
  • Deprecated withData, withReadStream, and readSequential on pickFiles()/pickFile(). Users should call PlatformFile.readAsBytes() or PlatformFile.readAsByteStream() to load file data on demand. These parameters will be removed in a future release.
  • Improved PlatformFile.toString() output to display byte length instead of full content.

Android

  • Fixed an issue where FileType.any would prevent subdirectories from being listed in the system file explorer by ensuring EXTRA_MIME_TYPES is correctly passed as an array. #2013
  • Removed explicit Kotlin Gradle Plugin (KGP) application and dependencies from build files to resolve warnings under AGP 9.0+.
  • Updated Android build tooling and dependencies: Android Gradle Plugin bumped to 8.5.2, androidx.core:core and androidx.core:core-ktx updated to 1.18.0, androidx.lifecycle:lifecycle-runtime updated to 2.10.0, and org.apache.tika:tika-core updated to 3.3.0.
  • Migrated Android build files from Groovy to Kotlin DSL (build.gradle.kts, settings.gradle.kts).
  • Added Android AGP compatibility CI workflow.

Darwin

  • Added missing FlutterFramework dependency to Package.swift for Swift Package Manager (SPM) compatibility.

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.

... (truncated)

Commits
  • 7fbe3ad Merge pull request #2075 from daniJimen/feature/fix_web_issue_with_xfile
  • a805298 Merge branch 'master' into feature/fix_web_issue_with_xfile
  • e51213d Clean up formatting in CHANGELOG.md
  • f85c933 Bump version to 12.0.0-beta.7
  • fc64c32 Ensure XFile.fromData is only used when bytes are non-null on Web
  • 2867a4e Fix PlatformFile.xFile getter on web when bytes are null
  • 3dcf7a4 Merge pull request #2072 from daniJimen/feature/update_dependencies
  • b6995c1 Update CHANGELOG.md
  • 992055a Improve CHANGELOG.md formatting
  • b497609 Update CHANGELOG.md with dependency changes
  • Additional commits viewable in compare view

Updates record from 6.2.1 to 7.1.1

Commits
  • 1b1644b fix(ios): Guard ios specific calls.
  • 9bc7154 fix(web): Hide internals in src/ folder.
  • 6cb214b chore: Update version and changelog.
  • 3e2eee5 chore(Windows): Code improvements
  • 36a7301 feat(Windows): Add AAC ADTS stream.
  • 3e98a73 fix(Android/iOS/macOS): Throw for unsupported stream encoders.
  • 8bf3d48 fix(Android): Flac regression from CSD changes.
  • 0407df5 fix(Android): Improve consistency of device/codec caps adjustment flow.
  • 9eb1878 fix(Android): Potential result sent twice with SCO.
  • 8b74fa0 chore: Update version and changelog.
  • Additional commits viewable in compare view

Updates share_plus from 12.0.2 to 13.2.0

Commits
  • 65ecfd0 chore(release): prepare for release (#3912)
  • cf00609 feat(share_plus): Updated Swift Package Manager setup for Flutter 3.44 (#3911)
  • 0c9b0ad feat(share_plus): Add support of built-in Kotlin (#3896)
  • d9b6f29 refactor(share_plus): change android gradle from groovy to kotlin (#3860)
  • 09d75d8 fix(share_plus): resolve js interop lint and maintain minimum sdk (#3846)
  • 6427bc6 chore(release): prepare for release (#3805)
  • d965e00 feat(share_plus): Lower requirements to Dart 3.10 and Flutter 3.38.1 (#3801)
  • 6982a68 chore(release): prepare for release (#3793)
  • 0e3eb91 feat(share_plus)!: Bump win32 from 5.15.0 to 6.0.0 (#3762)
  • See full diff in compare view

Updates sqlite3_flutter_libs from 0.5.42 to 0.6.0+eol

Commits

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

…h 7 updates

Bumps the all-dependencies group with 2 updates in the /packages/stream_chat directory: [test](https://github.com/dart-lang/test/tree/master/pkgs) and [freezed](https://github.com/rrousselGit/freezed).
Bumps the all-dependencies group with 4 updates in the /packages/stream_chat_flutter directory: [chewie](https://github.com/fluttercommunity/chewie), [share_plus](https://github.com/fluttercommunity/plus_plugins/tree/main/packages/share_plus), [record](https://github.com/llfbandit/record) and [file_picker](https://github.com/miguelpruivo/flutter_file_picker).
Bumps the all-dependencies group with 1 update in the /packages/stream_chat_persistence directory: [sqlite3_flutter_libs](https://github.com/simolus3/sqlite3.dart/tree/main/legacy).


Updates `test` from 1.31.1 to 1.31.2
- [Release notes](https://github.com/dart-lang/test/releases)
- [Commits](https://github.com/dart-lang/test/commits/test-v1.31.2/pkgs)

Updates `freezed` from 3.2.5 to 4.0.0-dev.3
- [Commits](rrousselGit/freezed@freezed-v3.2.5...freezed-v4.0.0-dev.3)

Updates `chewie` from 1.13.1 to 1.14.1
- [Changelog](https://github.com/fluttercommunity/chewie/blob/master/CHANGELOG.md)
- [Commits](fluttercommunity/chewie@v1.13.1...v1.14.1)

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

Updates `record` from 6.2.1 to 7.1.1
- [Commits](llfbandit/record@6.2.1...7.1.1)

Updates `file_picker` from 11.0.2 to 12.0.0-beta.7
- [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.7)

Updates `file_picker` from 11.0.2 to 12.0.0-beta.7
- [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.7)

Updates `record` from 6.2.1 to 7.1.1
- [Commits](llfbandit/record@6.2.1...7.1.1)

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

Updates `sqlite3_flutter_libs` from 0.5.42 to 0.6.0+eol
- [Release notes](https://github.com/simolus3/sqlite3.dart/releases)
- [Commits](https://github.com/simolus3/sqlite3.dart/commits/sqlite3_web-0.6.0/legacy)

---
updated-dependencies:
- dependency-name: test
  dependency-version: 1.31.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: freezed
  dependency-version: 4.0.0-dev.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: chewie
  dependency-version: 1.14.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: share_plus
  dependency-version: 13.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: record
  dependency-version: 7.1.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: file_picker
  dependency-version: 12.0.0-beta.7
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: file_picker
  dependency-version: 12.0.0-beta.7
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: record
  dependency-version: 7.1.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: share_plus
  dependency-version: 13.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: sqlite3_flutter_libs
  dependency-version: 0.6.0+eol
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dart Pull requests that update Dart code dependencies Pull requests that update a dependency file labels Jun 30, 2026
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.

0 participants