Skip to content

deps: bump the pub-minor-and-patch group with 6 updates - #8

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pub/pub-minor-and-patch-0ee22bebd7
Open

deps: bump the pub-minor-and-patch group with 6 updates#8
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pub/pub-minor-and-patch-0ee22bebd7

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the pub-minor-and-patch group with 6 updates:

Package From To
build_runner 2.15.1 2.16.0
flutter_form_builder 10.3.0+2 11.0.0
shimmer 3.0.0 4.0.0
freezed 3.2.5 4.0.0
flutter_secure_storage 10.3.1 11.0.0
go_router 17.5.0 18.0.0

Updates build_runner from 2.15.1 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.
Commits

Updates flutter_form_builder from 10.3.0+2 to 11.0.0

Changelog

Sourced from flutter_form_builder's changelog.

11.0.0

BREAKING CHANGES

  • Migrate to the official material_ui package. See the migration guide on README.md for more details.
  • Set minimal Flutter version to 3.47.0
  • Set minimal Dart version to 3.13.0
  • [FormBuilderField] Change the default value of clearCustomError on validate method from true to false by @​majumdersubhanu on #1506

Features

Fixes

Docs

Chores

  • Update example native setup with Flutter 3.47.0
Commits
  • c058730 style: format files
  • 6b1610f chore(release): 11.0.0
  • 872131d docs: add migration to v11
  • 63f569b test: add missing tests for grouped related fields
  • caf8fad build: upgrade minimal Flutter and Dart version
  • aa8f17d feat: migrate to material_ui
  • d0f62bc ci: improve dependabot to only suggest major versions
  • c0bcb04 build: update example native setup with Flutter 3.47
  • b95f320 Merge pull request #1517 from flutter-form-builder-ecosystem/dependabot/githu...
  • df7a6a8 build(deps): bump actions/stale from 10 to 11
  • Additional commits viewable in compare view

Updates shimmer from 3.0.0 to 4.0.0

Changelog

Sourced from shimmer's changelog.

4.0.0

  • BREAKING: Use the standalone material_ui package instead of package:flutter/material.dart. Requires Flutter >=3.44.0 and Dart ^3.12.0.
  • Keep the animation duration in sync when period changes, and restart cleanly when enabled is toggled back on
  • Start infinite loops with AnimationController.repeat() instead of a first forward() cycle
  • Treat direction updates as paint work, not layout work
  • Expand widget tests for construction, animation, looping, and highlight geometry
  • Refresh README, example README, and add docs/ for architecture and optimization notes
  • Remove leftover lib/main.dart counter app from the package
Commits

Updates freezed from 3.2.5 to 4.0.0

Commits

Updates flutter_secure_storage from 10.3.1 to 11.0.0

Release notes

Sourced from flutter_secure_storage's releases.

flutter_secure_storage: v11.0.0

11.0.0 (2026-08-06)

Breaking changes

items deprecated in v10 have been removed. Any data saved using deprecated algorithms or features will be unusable after this upgrade. If you used a version prior to v10, upgrade to v10 first so existing data is migrated.

Android

  • Removed KeyCipherAlgorithm.RSA_ECB_PKCS1Padding. Upgrade to v10 first so existing data is migrated to RSA_ECB_OAEPwithSHA_256andMGF1Padding before upgrading to v11.
  • Removed StorageCipherAlgorithm.AES_CBC_PKCS7Padding. Upgrade to v10 first so existing data is migrated to AES_GCM_NoPadding before upgrading to v11.
  • Removed encryptedSharedPreferences parameter from AndroidOptions and AndroidOptions.biometric. The Jetpack Security (EncryptedSharedPreferences) backend is no longer supported; any remaining data was automatically migrated to custom cipher storage in v10.
  • Removed sharedPreferencesName from AndroidOptions. Use storageNamespace instead for full namespace isolation.
  • Raised minSdk to 24 and compileSdk to 37. Flutter 3.35 raised its own Android minimum to API 24, making API 23 support unverifiable with any supported Flutter version. The legacy AES-CBC cipher path that supported API 21-22 has been removed.

Features

  • android: add requireBiometricConfirmation option to AndroidOptions (7f5f7de)

Bug Fixes

  • android: catch Throwable on worker thread so keystore Errors don't crash the app (d5802ff)
  • android: don't swallow VM errors, catch Throwable on biometric thread too (d413d3f)
  • linux: handle missing default keyring (b39c7c1)
  • linux: fail closed on orphaned keyring data (2e720ff)
  • remove redundant ./ prefix from part directives (cc7018d)
Commits
  • e144260 chore(develop): release flutter_secure_storage 11.0.0 (#1198)
  • e133bdf chore(develop): release flutter_secure_storage_linux 3.0.2 (#1206)
  • 95d579b Merge pull request #1221 from juliansteenbakker/docs/changelog-headers-linux-...
  • c665f38 docs: add Changelog header to linux and main package
  • 45d1074 Merge pull request #1220 from juliansteenbakker/docs/changelog-headers-and-or...
  • cc2d907 Merge pull request #1215 from juliansteenbakker/dependabot/github_actions/act...
  • 9646d0e Merge pull request #1214 from juliansteenbakker/dependabot/github_actions/act...
  • 13c529f Merge pull request #1213 from juliansteenbakker/dependabot/github_actions/act...
  • a31742f Merge pull request #1219 from juliansteenbakker/ci/gate-master-promotion-on-p...
  • aa83172 docs: add Changelog header, fix platform_interface entry order
  • Additional commits viewable in compare view

Updates go_router from 17.5.0 to 18.0.0

Commits
  • a351d8c [go_router] Batch release (#12567)
  • 6bb3423 [pigeon] add modern concurrency support (#12382)
  • 959f062 [material_ui] Remove no-shuffle in scrollbar test (#12527)
  • 16fe084 [material_ui] Remove no-shuffle from dropdown test (#12528)
  • 252bb33 [material_ui] A typo in the README file of the package. (#12526)
  • 4856dc0 [material_ui] Animated theme test from flutter/flutter (#12487)
  • 4c34a52 Sync release-material_ui-1.0.1 to main (#12513)
  • 59f4145 [material_ui] [cupertino_ui] Add missing Widget of the Week videos to widget ...
  • e31dfab [camera_android_camerax] Add agentic guidance for adding native unit tests (#...
  • be0a4e0 [material_ui] SearchAnchor overlay expands to full screen when viewport size ...
  • Additional commits viewable in compare view

Updates flutter_form_builder from 10.3.0+2 to 11.0.0

Changelog

Sourced from flutter_form_builder's changelog.

11.0.0

BREAKING CHANGES

  • Migrate to the official material_ui package. See the migration guide on README.md for more details.
  • Set minimal Flutter version to 3.47.0
  • Set minimal Dart version to 3.13.0
  • [FormBuilderField] Change the default value of clearCustomError on validate method from true to false by @​majumdersubhanu on #1506

Features

Fixes

Docs

Chores

  • Update example native setup with Flutter 3.47.0
Commits
  • c058730 style: format files
  • 6b1610f chore(release): 11.0.0
  • 872131d docs: add migration to v11
  • 63f569b test: add missing tests for grouped related fields
  • caf8fad build: upgrade minimal Flutter and Dart version
  • aa8f17d feat: migrate to material_ui
  • d0f62bc ci: improve dependabot to only suggest major versions
  • c0bcb04 build: update example native setup with Flutter 3.47
  • b95f320 Merge pull request #1517 from flutter-form-builder-ecosystem/dependabot/githu...
  • df7a6a8 build(deps): bump actions/stale from 10 to 11
  • Additional commits viewable in compare view

Updates flutter_secure_storage from 10.3.1 to 11.0.0

Release notes

Sourced from flutter_secure_storage's releases.

flutter_secure_storage: v11.0.0

11.0.0 (2026-08-06)

Breaking changes

items deprecated in v10 have been removed. Any data saved using deprecated algorithms or features will be unusable after this upgrade. If you used a version prior to v10, upgrade to v10 first so existing data is migrated.

Android

  • Removed KeyCipherAlgorithm.RSA_ECB_PKCS1Padding. Upgrade to v10 first so existing data is migrated to RSA_ECB_OAEPwithSHA_256andMGF1Padding before upgrading to v11.
  • Removed StorageCipherAlgorithm.AES_CBC_PKCS7Padding. Upgrade to v10 first so existing data is migrated to AES_GCM_NoPadding before upgrading to v11.
  • Removed encryptedSharedPreferences parameter from AndroidOptions and AndroidOptions.biometric. The Jetpack Security (EncryptedSharedPreferences) backend is no longer supported; any remaining data was automatically migrated to custom cipher storage in v10.
  • Removed sharedPreferencesName from AndroidOptions. Use storageNamespace instead for full namespace isolation.
  • Raised minSdk to 24 and compileSdk to 37. Flutter 3.35 raised its own Android minimum to API 24, making API 23 support unverifiable with any supported Flutter version. The legacy AES-CBC cipher path that supported API 21-22 has been removed.

Features

  • android: add requireBiometricConfirmation option to AndroidOptions (7f5f7de)

Bug Fixes

  • android: catch Throwable on worker thread so keystore Errors don't crash the app (d5802ff)
  • android: don't swallow VM errors, catch Throwable on biometric thread too (d413d3f)
  • linux: handle missing default keyring (b39c7c1)
  • linux: fail closed on orphaned keyring data (2e720ff)
  • remove redundant ./ prefix from part directives (cc7018d)
Commits
  • e144260 chore(develop): release flutter_secure_storage 11.0.0 (#1198)
  • e133bdf chore(develop): release flutter_secure_storage_linux 3.0.2 (#1206)
  • 95d579b Merge pull request #1221 from juliansteenbakker/docs/changelog-headers-linux-...
  • c665f38 docs: add Changelog header to linux and main package
  • 45d1074 Merge pull request #1220 from juliansteenbakker/docs/changelog-headers-and-or...
  • cc2d907 Merge pull request #1215 from juliansteenbakker/dependabot/github_actions/act...
  • 9646d0e Merge pull request #1214 from juliansteenbakker/dependabot/github_actions/act...
  • 13c529f Merge pull request #1213 from juliansteenbakker/dependabot/github_actions/act...
  • a31742f Merge pull request #1219 from juliansteenbakker/ci/gate-master-promotion-on-p...
  • aa83172 docs: add Changelog header, fix platform_interface entry order
  • Additional commits viewable in compare view

Updates freezed from 3.2.5 to 4.0.0

Commits

Updates go_router from 17.5.0 to 18.0.0

Commits
  • a351d8c [go_router] Batch release (#12567)
  • 6bb3423 [pigeon] add modern concurrency support (#12382)
  • 959f062 [material_ui] Remove no-shuffle in scrollbar test (#12527)
  • 16fe084 [material_ui] Remove no-shuffle from dropdown test (#12528)
  • 252bb33 [material_ui] A typo in the README file of the package. (#12526)
  • 4856dc0 [material_ui] Animated theme test from flutter/flutter (#12487)
  • 4c34a52 Sync release-material_ui-1.0.1 to main (#12513)
  • 59f4145 [material_ui] [cupertino_ui] Add missing Widget of the Week videos to widget ...
  • e31dfab [camera_android_camerax] Add agentic guidance for adding native unit tests (#...
  • be0a4e0 [material_ui] SearchAnchor overlay expands to full screen when viewport size ...
  • Additional commits viewable in compare view

Updates shimmer from 3.0.0 to 4.0.0

Changelog

Sourced from shimmer's changelog.

4.0.0

  • BREAKING: Use the standalone material_ui package instead of package:flutter/material.dart. Requires Flutter >=3.44.0 and Dart ^3.12.0.
  • Keep the animation duration in sync when period changes, and restart cleanly when enabled is toggled back on
  • Start infinite loops with AnimationController.repeat() instead of a first forward() cycle
  • Treat direction updates as paint work, not layout work
  • Expand widget tests for construction, animation, looping, and highlight geometry
  • Refresh README, example README, and add docs/ for architecture and optimization notes
  • Remove leftover lib/main.dart counter app from the package
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

Bumps the pub-minor-and-patch group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [build_runner](https://github.com/dart-lang/build) | `2.15.1` | `2.16.0` |
| [flutter_form_builder](https://github.com/flutter-form-builder-ecosystem/flutter_form_builder) | `10.3.0+2` | `11.0.0` |
| [shimmer](https://github.com/hnvn/flutter_shimmer) | `3.0.0` | `4.0.0` |
| [freezed](https://github.com/rrousselGit/freezed) | `3.2.5` | `4.0.0` |
| [flutter_secure_storage](https://github.com/mogol/flutter_secure_storage) | `10.3.1` | `11.0.0` |
| [go_router](https://github.com/flutter/packages/tree/main/packages) | `17.5.0` | `18.0.0` |


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

Updates `flutter_form_builder` from 10.3.0+2 to 11.0.0
- [Release notes](https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/releases)
- [Changelog](https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/blob/main/CHANGELOG.md)
- [Commits](flutter-form-builder-ecosystem/flutter_form_builder@10.3.0...11.0.0)

Updates `shimmer` from 3.0.0 to 4.0.0
- [Changelog](https://github.com/hnvn/flutter_shimmer/blob/master/CHANGELOG.md)
- [Commits](https://github.com/hnvn/flutter_shimmer/commits)

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

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

Updates `go_router` from 17.5.0 to 18.0.0
- [Commits](https://github.com/flutter/packages/commits/go_router-v18.0.0/packages)

Updates `flutter_form_builder` from 10.3.0+2 to 11.0.0
- [Release notes](https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/releases)
- [Changelog](https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/blob/main/CHANGELOG.md)
- [Commits](flutter-form-builder-ecosystem/flutter_form_builder@10.3.0...11.0.0)

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

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

Updates `go_router` from 17.5.0 to 18.0.0
- [Commits](https://github.com/flutter/packages/commits/go_router-v18.0.0/packages)

Updates `shimmer` from 3.0.0 to 4.0.0
- [Changelog](https://github.com/hnvn/flutter_shimmer/blob/master/CHANGELOG.md)
- [Commits](https://github.com/hnvn/flutter_shimmer/commits)

---
updated-dependencies:
- dependency-name: build_runner
  dependency-version: 2.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pub-minor-and-patch
- dependency-name: flutter_form_builder
  dependency-version: 11.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: pub-minor-and-patch
- dependency-name: shimmer
  dependency-version: 4.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: pub-minor-and-patch
- dependency-name: freezed
  dependency-version: 4.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: pub-minor-and-patch
- dependency-name: flutter_secure_storage
  dependency-version: 11.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: pub-minor-and-patch
- dependency-name: go_router
  dependency-version: 18.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: pub-minor-and-patch
- dependency-name: flutter_form_builder
  dependency-version: 11.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: pub-minor-and-patch
- dependency-name: flutter_secure_storage
  dependency-version: 11.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: pub-minor-and-patch
- dependency-name: freezed
  dependency-version: 4.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: pub-minor-and-patch
- dependency-name: go_router
  dependency-version: 18.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: pub-minor-and-patch
- dependency-name: shimmer
  dependency-version: 4.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: pub-minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
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.

0 participants