Skip to content

chore(deps): bump the flutter-dependencies group across 1 directory with 6 updates - #287

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pub/flutter-dependencies-25648c3dbd
Open

chore(deps): bump the flutter-dependencies group across 1 directory with 6 updates#287
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pub/flutter-dependencies-25648c3dbd

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 17, 2026

Copy link
Copy Markdown

Bumps the flutter-dependencies group with 6 updates in the / directory:

Package From To
build_runner 2.5.4 2.16.0
flutter_lints 5.0.0 6.0.0
google_navigation_flutter 0.9.4 0.10.0
mockito 5.4.6 5.8.1
melos 6.3.3 8.3.0
pigeon 25.3.2 27.3.1

Updates build_runner from 2.5.4 to 2.16.0

Release notes

Sourced from build_runner's releases.

package:build_runner v2.16.0

  • New default output behavior: always fix incorrect generated files. For example: if you "dart run build_runner build", modify a generated file, then build again, it will be fixed, undoing your modifications.
  • New option, --keep-modified-outputs. Use this to get the old output behavior: manual modifications to generated files are kept. They will be overwritten if a build is triggered due to an input file change, a configuration change or dart run build_runner clean.
  • New option, --only-check, for use in continuous builds and tests. With this option build_runner writes nothing, but builds and compares with the files already on disk. If there is any difference between disk and expected output then the differences are logged and the build fails.
  • Allow package_config 3.0.0.

package:build_runner v2.15.3

  • Simplify deletion of stale outputs: don't try to handle package renames.
  • The daemon asset server now rejects various non-local connections.
  • Bug fix: in incremental builds, when an input was deleted, its output was deleted at the start of the build. Make it consistent with other output deletions: wait until the end of the build.
  • Bug fix: post process builders with build_to: source can only write to output packages.
  • Bug fix: post process builders with build_to: cache can only write output corresponding to known packages.
  • Bug fix: reject incorrect builder config that has duplicate builder keys.
  • Bug fix: reject invalid builder factories in build.yaml.
  • Bug fix: correctly filter served or --output post process output.
  • Bug fix: serve mode only serves the specified package subdirectories.
  • Bug fix: serve live reload websocket checks for localhost origin.
  • Bug fix: don't follow symlinks when cleaning up output folders.
  • Bug fix: catch Windows-specific absolute paths.

package:build_runner v2.15.2

  • Allow analyzer 14.x, require 13.3.0.
  • Require Dart 3.11.0.

package:build_runner v2.15.1

  • Pass Dart SDK --packages arg to builder compiles, so they can be compiled with different packages to the current version solve.
  • More efficient watching for file changes in workspaces and other setups with nested packages.
  • Support builders with no declared outputs. They can't output anything, but they can do processing, write log messages and choose whether to fail the build.
  • Mention in command usage that --define values are parsed as JSON with a fallback.
  • Performance: reduce size of serialized build state when there are optional outputs that are not written.
  • Bug fix: handle errors from post process builders in previous runs without crashing.

... (truncated)

Commits

Updates flutter_lints from 5.0.0 to 6.0.0

Commits
  • 6eebe72 [flutter_lints] Bump lints dependency to 6.0.0 and bump package to 6.0.0 (#9108)
  • 0093e2e [video_player_android] Add note about Android platform views known issue (#9312)
  • 62f38a1 [camera_android_camerax] Implement enableAudio for video recording (#9264)
  • 9c11e9b [video_player_android] isBuffering flag always return true after calling seek...
  • 6efa04b [camera,video_player] replace onSurfaceDestroyed with onSurfaceCleanup (#9316)
  • c33fa39 [camera,video_player] Update Android to 3.29 minimum (#9317)
  • 5a7d40f Update repo for 3.32 stable (#9311)
  • 2a847d7 [camera_avfoundation] Correct pigeon configuration output paths (#9313)
  • d692e43 [process] Remove from the repository (#9310)
  • fe5dd86 Ensure Example Packages Work on Android API 36 (#9241)
  • Additional commits viewable in compare view

Updates google_navigation_flutter from 0.9.4 to 0.10.0

Release notes

Sourced from google_navigation_flutter's releases.

v0.10.0

0.10.0 (2026-07-02)

⚠ BREAKING CHANGES

  • updated the minimum Kotlin version to 2.3.0 (#735)

Features

  • add navigation UI enabled listener for auto views (#721) (2e6f838)
  • navigation header styling support (#728) (b5c2805)
  • upgrade android sdk to 7.7.0 and ios sdk to 10.14.0 (#735) (e04e3fe)

Bug Fixes

Changelog

Sourced from google_navigation_flutter's changelog.

0.10.0 (2026-07-02)

⚠ BREAKING CHANGES

  • updated the minimum Kotlin version to 2.3.0 (#735)

Features

  • add navigation UI enabled listener for auto views (#721) (2e6f838)
  • navigation header styling support (#728) (b5c2805)
  • upgrade android sdk to 7.7.0 and ios sdk to 10.14.0 (#735) (e04e3fe)

Bug Fixes

Commits

Updates mockito from 5.4.6 to 5.8.1

Release notes

Sourced from mockito's releases.

package:mockito v5.8.1

  • Cast dummy values for extension types to the extension type so they satisfy static type checking in generic return types like Future<ExtensionType>. #4590
  • Use canonical asset path in generated header comments so symlink paths are excluded. #4545
  • Deterministically select library to import when multiple libraries export the same type. #4549
  • Prefer importing public entrypoints over /src/ implementation libraries when multiple libraries export the same type. #4551
  • Throw InvalidMockitoAnnotationException with a clear message when @GenerateMocks customMocks or @GenerateNiceMocks mocks is not a list literal, instead of crashing with a type cast exception. #4428
  • Remove redundant per-class // ignore: must_be_immutable comment to prevent duplicate_ignore warnings. #4588
  • Clarify in README.md that generated .mocks.dart filenames are based on the source file name. #4599
  • Suppress experimental_member_use warnings in generated mock files. #4602
  • Document missing stub behavior for void and Future<void>.

package:mockito v5.8.0

  • Add support for JS interop extension type mock generation to mockito.
  • It is now an error to generate mocks for non-JS interop extension types. Instead, mock the representation type and cast to the extension type where needed.
  • Remove Mockito version number from generated output.
  • Allow analyzer 14.0.0.

package:mockito v5.7.0

  • Handle JS interop extension types and provide dummy values for them. #4498

package:mockito v5.6.5

  • Require analyzer 13.0.0.

package:mockito v5.6.4

  • Allow analyzer 11.0.0 and 12.0.0.
  • Move to dart-lang/build monorepo.
Commits

Updates melos from 6.3.3 to 8.3.0

Changelog

Sourced from melos's changelog.

melos - v8.3.0

  • FIX(intellij): honor PUB_CACHE when generating IDE files (#1059). (4c2fa471)
  • FIX(version): honour --yes for manual versioning prompts (#1058). (ad39d0ff)
  • FEAT(version): add optional fixed versioning mode (#1056). (9af2ac1d)

2026-07-13

Changes


Packages with breaking changes:

  • There are no breaking changes in this release.

Packages with other changes:


melos - v8.2.2

  • FIX(scripts): expand env variables inherited from a parent melos process on Windows (#1054). (705819d0)

2026-07-12

Changes


Packages with breaking changes:

  • There are no breaking changes in this release.

Packages with other changes:


melos - v8.2.1

  • FIX(scripts): expand env variables regardless of the platform shell (#1050). (8188958d)
  • FIX(deps): require cli_launcher ^0.3.3+2 for Flutter workspace relaunch fix (#1047). (396e32dc)

... (truncated)

Commits
  • caf0db3 chore(release): Publish packages (#1060)
  • 4c2fa47 fix(intellij): honor PUB_CACHE when generating IDE files (#1059)
  • 9af2ac1 feat(version): add optional fixed versioning mode (#1056)
  • ad39d0f fix(version): honour --yes for manual versioning prompts (#1058)
  • c09d24d chore(release): Publish packages (#1055)
  • 705819d fix(scripts): expand env variables inherited from a parent melos process on W...
  • a374204 test: raise per-test timeout on Windows to fix flaky CI (#1053)
  • ebd7f84 chore(release): Publish packages (#1052)
  • 8188958 fix(scripts): expand env variables regardless of the platform shell (#1050)
  • a59f74d test(analyze): raise timeout so Windows CI does not flake (#1051)
  • Additional commits viewable in compare view

Updates pigeon from 25.3.2 to 27.3.1

Commits
  • df17293 [pigeon] add support for analyzer 13 and 14 (#12358)
  • 17c97d0 [cupertino_ui, material_ui] Fix bad doc references (#12381)
  • 4e3f83d Sync release-go_router-17.4.0 to main (#12370)
  • 5579f26 [go_router] Add route metadata support to GoRouterState. (#11773)
  • b1424e2 [go_router] Document regex constraints for path parameters (#12281)
  • b9e4c50 Sync release-cupertino_ui-0.0.3 to main (#12367)
  • f9da37b [camera_android_camerax] Fix video recording after backgrounding app (#12145)
  • 8dfde8f [material_ui and cupertino_ui] Remove workspaces and fix CI (#12351)
  • 961eb80 Sync release-material_ui-0.0.3 to main (#12352)
  • 3498b9d Sync release-material_ui-0.0.2 to main (#12268)
  • Additional commits viewable in compare view

Updates flutter_lints from 5.0.0 to 6.0.0

Commits
  • 6eebe72 [flutter_lints] Bump lints dependency to 6.0.0 and bump package to 6.0.0 (#9108)
  • 0093e2e [video_player_android] Add note about Android platform views known issue (#9312)
  • 62f38a1 [camera_android_camerax] Implement enableAudio for video recording (#9264)
  • 9c11e9b [video_player_android] isBuffering flag always return true after calling seek...
  • 6efa04b [camera,video_player] replace onSurfaceDestroyed with onSurfaceCleanup (#9316)
  • c33fa39 [camera,video_player] Update Android to 3.29 minimum (#9317)
  • 5a7d40f Update repo for 3.32 stable (#9311)
  • 2a847d7 [camera_avfoundation] Correct pigeon configuration output paths (#9313)
  • d692e43 [process] Remove from the repository (#9310)
  • fe5dd86 Ensure Example Packages Work on Android API 36 (#9241)
  • Additional commits viewable in compare view

Updates google_navigation_flutter from 0.9.4 to 0.10.0

Release notes

Sourced from google_navigation_flutter's releases.

v0.10.0

0.10.0 (2026-07-02)

⚠ BREAKING CHANGES

  • updated the minimum Kotlin version to 2.3.0 (#735)

Features

  • add navigation UI enabled listener for auto views (#721) (2e6f838)
  • navigation header styling support (#728) (b5c2805)
  • upgrade android sdk to 7.7.0 and ios sdk to 10.14.0 (#735) (e04e3fe)

Bug Fixes

Changelog

Sourced from google_navigation_flutter's changelog.

0.10.0 (2026-07-02)

⚠ BREAKING CHANGES

  • updated the minimum Kotlin version to 2.3.0 (#735)

Features

  • add navigation UI enabled listener for auto views (#721) (2e6f838)
  • navigation header styling support (#728) (b5c2805)
  • upgrade android sdk to 7.7.0 and ios sdk to 10.14.0 (#735) (e04e3fe)

Bug Fixes

Commits

Updates melos from 6.3.3 to 8.3.0

Changelog

Sourced from melos's changelog.

melos - v8.3.0

  • FIX(intellij): honor PUB_CACHE when generating IDE files (#1059). (4c2fa471)
  • FIX(version): honour --yes for manual versioning prompts (#1058). (ad39d0ff)
  • FEAT(version): add optional fixed versioning mode (#1056). (9af2ac1d)

2026-07-13

Changes


Packages with breaking changes:

  • There are no breaking changes in this release.

Packages with other changes:


melos - v8.2.2

  • FIX(scripts): expand env variables inherited from a parent melos process on Windows (#1054). (705819d0)

2026-07-12

Changes


Packages with breaking changes:

  • There are no breaking changes in this release.

Packages with other changes:


melos - v8.2.1

  • FIX(scripts): expand env variables regardless of the platform shell (#1050). (8188958d)
  • FIX(deps): require cli_launcher ^0.3.3+2 for Flutter workspace relaunch fix (#1047). (396e32dc)

... (truncated)

Commits
  • caf0db3 chore(release): Publish packages (#1060)
  • 4c2fa47 fix(intellij): honor PUB_CACHE when generating IDE files (#1059)
  • 9af2ac1 feat(version): add optional fixed versioning mode (#1056)
  • ad39d0f fix(version): honour --yes for manual versioning prompts (#1058)
  • c09d24d chore(release): Publish packages (#1055)
  • 705819d fix(scripts): expand env variables inherited from a parent melos process on W...
  • a374204 test: raise per-test timeout on Windows to fix flaky CI (#1053)
  • ebd7f84 chore(release): Publish packages (#1052)
  • 8188958 fix(scripts): expand env variables regardless of the platform shell (#1050)
  • a59f74d test(analyze): raise timeout so Windows CI does not flake (#1051)
  • Additional commits viewable in compare view

Updates mockito from 5.4.6 to 5.8.1

Release notes

Sourced from mockito's releases.

package:mockito v5.8.1

  • Cast dummy values for extension types to the extension type so they satisfy static type checking in generic return types like Future<ExtensionType>. #4590
  • Use canonical asset path in generated header comments so symlink paths are excluded. #4545
  • Deterministically select library to import when multiple libraries export the same type. #4549
  • Prefer importing public entrypoints over /src/ implementation libraries when multiple libraries export the same type. #4551
  • Throw InvalidMockitoAnnotationException with a clear message when @GenerateMocks customMocks or @GenerateNiceMocks mocks is not a list literal, instead of crashing with a type cast exception. #4428
  • Remove redundant per-class // ignore: must_be_immutable comment to prevent duplicate_ignore warnings. #4588
  • Clarify in README.md that generated .mocks.dart filenames are based on the source file name. #4599
  • Suppress experimental_member_use warnings in generated mock files. #4602
  • Document missing stub behavior for void and Future<void>.

package:mockito v5.8.0

  • Add support for JS interop extension type mock generation to mockito.
  • It is now an error to generate mocks for non-JS interop extension types. Instead, mock the representation type and cast to the extension type where needed.
  • Remove Mockito version number from generated output.
  • Allow analyzer 14.0.0.

package:mockito v5.7.0

  • Handle JS interop extension types and provide dummy values for them. #4498

package:mockito v5.6.5

  • Require analyzer 13.0.0.

package:mockito v5.6.4

  • Allow analyzer 11.0.0 and 12.0.0.
  • Move to dart-lang/build monorepo.
Commits

Updates pigeon from 25.3.2 to 27.3.1

Commits
  • df17293 [pigeon] add support for analyzer 13 and 14 (#12358)
  • 17c97d0 [cupertino_ui, material_ui] Fix bad doc references (#12381)
  • 4e3f83d Sync release-go_router-17.4.0 to main (#12370)
  • 5579f26 [go_router] Add route metadata support to GoRouterState. (#11773)
  • b1424e2 [go_router] Document regex constraints for path parameters (#12281)
  • b9e4c50 Sync release-cupertino_ui-0.0.3 to main (#12367)
  • f9da37b [camera_android_camerax] Fix video recording after backgrounding app (#12145)
  • 8dfde8f [material_ui and cupertino_ui] Remove workspaces and fix CI (#12351)
  • 961eb80 Sync release-material_ui-0.0.3 to main (#12352)
  • 3498b9d Sync release-material_ui-0.0.2 to main (#12268)
  • 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

…ith 6 updates

Bumps the flutter-dependencies group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [build_runner](https://github.com/dart-lang/build) | `2.5.4` | `2.16.0` |
| [flutter_lints](https://github.com/flutter/packages/tree/main/packages) | `5.0.0` | `6.0.0` |
| [google_navigation_flutter](https://github.com/googlemaps/flutter-navigation-sdk) | `0.9.4` | `0.10.0` |
| [mockito](https://github.com/dart-lang/build/tree/master/builder_pkgs) | `5.4.6` | `5.8.1` |
| [melos](https://github.com/invertase/melos/tree/main/packages) | `6.3.3` | `8.3.0` |
| [pigeon](https://github.com/flutter/packages/tree/main/packages) | `25.3.2` | `27.3.1` |



Updates `build_runner` from 2.5.4 to 2.16.0
- [Release notes](https://github.com/dart-lang/build/releases)
- [Commits](dart-lang/build@build_runner-v2.5.4...build_runner-v2.16.0)

Updates `flutter_lints` from 5.0.0 to 6.0.0
- [Commits](https://github.com/flutter/packages/commits/flutter_lints-v6.0.0/packages)

Updates `google_navigation_flutter` from 0.9.4 to 0.10.0
- [Release notes](https://github.com/googlemaps/flutter-navigation-sdk/releases)
- [Changelog](https://github.com/googlemaps/flutter-navigation-sdk/blob/main/CHANGELOG.md)
- [Commits](googlemaps/flutter-navigation-sdk@0.9.4...0.10.0)

Updates `mockito` from 5.4.6 to 5.8.1
- [Release notes](https://github.com/dart-lang/build/releases)
- [Commits](https://github.com/dart-lang/build/commits/mockito-v5.8.1/builder_pkgs)

Updates `melos` from 6.3.3 to 8.3.0
- [Changelog](https://github.com/invertase/melos/blob/main/CHANGELOG.md)
- [Commits](https://github.com/invertase/melos/commits/melos-v8.3.0/packages)

Updates `pigeon` from 25.3.2 to 27.3.1
- [Commits](https://github.com/flutter/packages/commits/pigeon-v27.3.1/packages)

Updates `flutter_lints` from 5.0.0 to 6.0.0
- [Commits](https://github.com/flutter/packages/commits/flutter_lints-v6.0.0/packages)

Updates `google_navigation_flutter` from 0.9.4 to 0.10.0
- [Release notes](https://github.com/googlemaps/flutter-navigation-sdk/releases)
- [Changelog](https://github.com/googlemaps/flutter-navigation-sdk/blob/main/CHANGELOG.md)
- [Commits](googlemaps/flutter-navigation-sdk@0.9.4...0.10.0)

Updates `melos` from 6.3.3 to 8.3.0
- [Changelog](https://github.com/invertase/melos/blob/main/CHANGELOG.md)
- [Commits](https://github.com/invertase/melos/commits/melos-v8.3.0/packages)

Updates `mockito` from 5.4.6 to 5.8.1
- [Release notes](https://github.com/dart-lang/build/releases)
- [Commits](https://github.com/dart-lang/build/commits/mockito-v5.8.1/builder_pkgs)

Updates `pigeon` from 25.3.2 to 27.3.1
- [Commits](https://github.com/flutter/packages/commits/pigeon-v27.3.1/packages)

---
updated-dependencies:
- dependency-name: build_runner
  dependency-version: 2.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: flutter-dependencies
- dependency-name: flutter_lints
  dependency-version: 6.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: flutter-dependencies
- dependency-name: google_navigation_flutter
  dependency-version: 0.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: flutter-dependencies
- dependency-name: mockito
  dependency-version: 5.8.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: flutter-dependencies
- dependency-name: melos
  dependency-version: 8.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: flutter-dependencies
- dependency-name: pigeon
  dependency-version: 27.3.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: flutter-dependencies
- dependency-name: flutter_lints
  dependency-version: 6.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: flutter-dependencies
- dependency-name: google_navigation_flutter
  dependency-version: 0.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: flutter-dependencies
- dependency-name: melos
  dependency-version: 8.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: flutter-dependencies
- dependency-name: mockito
  dependency-version: 5.8.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: flutter-dependencies
- dependency-name: pigeon
  dependency-version: 27.3.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: flutter-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 Aug 17, 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.

1 participant