Skip to content

deps: bump the pub-minor-and-patch group across 1 directory with 10 updates - #9

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

deps: bump the pub-minor-and-patch group across 1 directory with 10 updates#9
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pub/pub-minor-and-patch-31f90a0472

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the pub-minor-and-patch group with 10 updates in the / directory:

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
cached_network_image 3.4.1 4.0.0
freezed 3.2.5 4.0.1
flutter_secure_storage 10.3.1 11.0.0
retrofit_generator 10.2.9 10.2.10
go_router 17.5.0 18.0.0
sentry_flutter 9.28.0 10.0.0-alpha.4
sentry_dio 9.28.0 10.0.0-alpha.4

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 cached_network_image from 3.4.1 to 4.0.0

Commits

Updates freezed from 3.2.5 to 4.0.1

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 retrofit_generator from 10.2.9 to 10.2.10

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 sentry_flutter from 9.28.0 to 10.0.0-alpha.4

Release notes

Sourced from sentry_flutter's releases.

10.0.0-alpha.4

Features

  • Remove the enableLogs and enableMetrics options. Logs and metrics are now always enabled and can no longer be disabled through SentryOptions. Remove any options.enableLogs / options.enableMetrics assignments from your SDK init. If you use the logging integration, it now forwards log records as Sentry logs as soon as it is added — raise minSentryLogLevel, or set it to Level.OFF, to opt out. by @​buenaflor in #3983
  • enableStandaloneAppStartTracing is removed. App start is always a standalone app.start root on Android and iOS when tracing is enabled. The legacy ui.load-attached app start path is gone. by @​buenaflor in #3981
  • (replay) Mask SensitiveContent by default by @​buenaflor in #3973

Fixes

  • Sampling now runs after beforeSend instead of before it, so ignoreErrors, ignored exception types, event processors and beforeSend all take precedence over the sampleRate decision. An event dropped by beforeSend is now reported as a before_send discard rather than a sample_rate one, and beforeSend now runs for events that are later sampled out. (#3855) by @​buenaflor in #3955
  • (http) Align HTTP client error type and value by @​buenaflor in #3934

Internal Changes

  • Migrate the Android plugin to Flutter's built-in Kotlin. sentry_flutter no longer applies the Kotlin Gradle Plugin itself, which silences Flutter 3.44's warning about plugins applying KGP and unblocks apps moving to AGP 9. by @​buenaflor in #3961

10.0.0-alpha.3

Features

Dart

  • Align database, HTTP, app-start, and trace-lifecycle span attributes with Sentry Conventions by @​buenaflor in #3805

Flutter

Enhancements

  • Improve Android scope synchronization and replay screenshot transfer performance by @​buenaflor in #3924

Fixes

Flutter

Other

Dependencies

Flutter

... (truncated)

Changelog

Sourced from sentry_flutter's changelog.

10.0.0-alpha.4

Features

  • Remove the enableLogs and enableMetrics options. Logs and metrics are now always enabled and can no longer be disabled through SentryOptions. Remove any options.enableLogs / options.enableMetrics assignments from your SDK init. If you use the logging integration, it now forwards log records as Sentry logs as soon as it is added — raise minSentryLogLevel, or set it to Level.OFF, to opt out. by @​buenaflor in #3983
  • enableStandaloneAppStartTracing is removed. App start is always a standalone app.start root on Android and iOS when tracing is enabled. The legacy ui.load-attached app start path is gone. by @​buenaflor in #3981
  • (replay) Mask SensitiveContent by default by @​buenaflor in #3973

Fixes

  • Sampling now runs after beforeSend instead of before it, so ignoreErrors, ignored exception types, event processors and beforeSend all take precedence over the sampleRate decision. An event dropped by beforeSend is now reported as a before_send discard rather than a sample_rate one, and beforeSend now runs for events that are later sampled out. (#3855) by @​buenaflor in #3955
  • (http) Align HTTP client error type and value by @​buenaflor in #3934

Internal Changes

  • Migrate the Android plugin to Flutter's built-in Kotlin. sentry_flutter no longer applies the Kotlin Gradle Plugin itself, which silences Flutter 3.44's warning about plugins applying KGP and unblocks apps moving to AGP 9. by @​buenaflor in #3961

10.0.0-alpha.3

Features

Dart

  • Align database, HTTP, app-start, and trace-lifecycle span attributes with Sentry Conventions by @​buenaflor in #3805

Flutter

Enhancements

  • Improve Android scope synchronization and replay screenshot transfer performance by @​buenaflor in #3924

Fixes

Flutter

Other

Dependencies

... (truncated)

Commits
  • 4ae043c release: 10.0.0-alpha.4
  • ad1dcab feat(flutter): Default standalone app start tracing (#3981)
  • 654c375 feat(dart): Remove need for enableLogs and enableMetrics v10 (#3983)
  • b2f8bd2 chore: Merge 9.28.0 into v10 (#3996)
  • 0d9f92d fix(dart): Sample events after beforeSend (#3955)
  • 8c4214f feat(replay): Mask SensitiveContent by default (#3973)
  • d665381 chore: Merge tag '9.27.0' into v10-branch (#3968)
  • 244fb4c build(flutter): Migrate to built-in Kotlin (#3961)
  • 7413742 fix(http): Align HTTP client error type and value (#3934)
  • 8404fce Merge branch 'release/10.0.0-alpha.3' into v10-branch
  • Additional commits viewable in compare view

Updates sentry_dio from 9.28.0 to 10.0.0-alpha.4

Release notes

Sourced from sentry_dio's releases.

10.0.0-alpha.4

Features

  • Remove the enableLogs and enableMetrics options. Logs and metrics are now always enabled and can no longer be disabled through SentryOptions. Remove any options.enableLogs / options.enableMetrics assignments from your SDK init. If you use the logging integration, it now forwards log records as Sentry logs as soon as it is added — raise minSentryLogLevel, or set it to Level.OFF, to opt out. by @​buenaflor in #3983
  • enableStandaloneAppStartTracing is removed. App start is always a standalone app.start root on Android and iOS when tracing is enabled. The legacy ui.load-attached app start path is gone. by @​buenaflor in #3981
  • (replay) Mask SensitiveContent by default by @​buenaflor in #3973

Fixes

  • Sampling now runs after beforeSend instead of before it, so ignoreErrors, ignored exception types, event processors and beforeSend all take precedence over the sampleRate decision. An event dropped by beforeSend is now reported as a before_send discard rather than a sample_rate one, and beforeSend now runs for events that are later sampled out. (#3855) by @​buenaflor in #3955
  • (http) Align HTTP client error type and value by @​buenaflor in #3934

Internal Changes

  • Migrate the Android plugin to Flutter's built-in Kotlin. sentry_flutter no longer applies the Kotlin Gradle Plugin itself, which silences Flutter 3.44's warning about plugins applying KGP and unblocks apps moving to AGP 9. by @​buenaflor in #3961

10.0.0-alpha.3

Features

Dart

  • Align database, HTTP, app-start, and trace-lifecycle span attributes with Sentry Conventions by @​buenaflor in #3805

Flutter

Enhancements

  • Improve Android scope synchronization and replay screenshot transfer performance by @​buenaflor in #3924

Fixes

Flutter

Other

Dependencies

Flutter

... (truncated)

Changelog

Sourced from sentry_dio's changelog.

10.0.0-alpha.4

Features

  • Remove the enableLogs and enableMetrics options. Logs and metrics are now always enabled and can no longer be disabled through SentryOptions. Remove any options.enableLogs / options.enableMetrics assignments from your SDK init. If you use the logging integration, it now forwards log records as Sentry logs as soon as it is added — raise minSentryLogLevel, or set it to Level.OFF, to opt out. by @​buenaflor in #3983
  • enableStandaloneAppStartTracing is removed. App start is always a standalone app.start root on Android and iOS when tracing is enabled. The legacy ui.load-attached app start path is gone. by @​buenaflor in #3981
  • (replay) Mask SensitiveContent by default by @​buenaflor in #3973

Fixes

  • Sampling now runs after beforeSend instead of before it, so ignoreErrors, ignored exception types, event processors and beforeSend all take precedence over the sampleRate decision. An event dropped by beforeSend is now reported as a before_send discard rather than a sample_rate one, and beforeSend now runs for events that are later sampled out. (#3855) by @​buenaflor in #3955
  • (http) Align HTTP client error type and value by @​buenaflor in #3934

Internal Changes

  • Migrate the Android plugin to Flutter's built-in Kotlin. sentry_flutter no longer applies the Kotlin Gradle Plugin itself, which silences Flutter 3.44's warning about plugins applying KGP and unblocks apps moving to AGP 9. by @​buenaflor in #3961

10.0.0-alpha.3

Features

Dart

  • Align database, HTTP, app-start, and trace-lifecycle span attributes with Sentry Conventions by @​buenaflor in #3805

Flutter

Enhancements

  • Improve Android scope synchronization and replay screenshot transfer performance by @​buenaflor in #3924

Fixes

Flutter

Other

Dependencies

... (truncated)

Commits
  • 4ae043c release: 10.0.0-alpha.4
  • ad1dcab feat(flutter): Default standalone app start tracing (#3981)
  • 654c375 feat(dart): Remove need for enableLogs and enableMetrics v10 (#3983)
  • b2f8bd2 chore: Merge 9.28.0 into v10 (#3996)
  • 0d9f92d fix(dart): Sample events after beforeSend (#3955)
  • 8c4214f feat(replay): Mask SensitiveContent by default (#3973)
  • d665381 chore: Merge tag '9.27.0' into v10-branch (#3968)
  • 244fb4c build(flutter): Migrate to built-in Kotlin (#3961)
  • 7413742 fix(http): Align HTTP client error type and value (#3934)
  • 8404fce Merge branch 'release/10.0.0-alpha.3' into v10-branch
  • Additional commits viewable in compare view

Updates cached_network_image from 3.4.1 to 4.0.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 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

…pdates

Bumps the pub-minor-and-patch group with 10 updates in the / directory:

| 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` |
| [cached_network_image](https://github.com/Baseflow/flutter_cached_network_image) | `3.4.1` | `4.0.0` |
| [freezed](https://github.com/rrousselGit/freezed) | `3.2.5` | `4.0.1` |
| [flutter_secure_storage](https://github.com/mogol/flutter_secure_storage) | `10.3.1` | `11.0.0` |
| [retrofit_generator](https://github.com/trevorwang/retrofit.dart) | `10.2.9` | `10.2.10` |
| [go_router](https://github.com/flutter/packages/tree/main/packages) | `17.5.0` | `18.0.0` |
| [sentry_flutter](https://github.com/getsentry/sentry-dart) | `9.28.0` | `10.0.0-alpha.4` |
| [sentry_dio](https://github.com/getsentry/sentry-dart) | `9.28.0` | `10.0.0-alpha.4` |



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 `cached_network_image` from 3.4.1 to 4.0.0
- [Release notes](https://github.com/Baseflow/flutter_cached_network_image/releases)
- [Commits](Baseflow/flutter_cached_network_image@v3.4.1...cached_network_image_v4.0.0)

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

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 `retrofit_generator` from 10.2.9 to 10.2.10
- [Release notes](https://github.com/trevorwang/retrofit.dart/releases)
- [Commits](trevorwang/retrofit.dart@v10.2.9...v10.2.10)

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 `sentry_flutter` from 9.28.0 to 10.0.0-alpha.4
- [Release notes](https://github.com/getsentry/sentry-dart/releases)
- [Changelog](https://github.com/getsentry/sentry-dart/blob/10.0.0-alpha.4/CHANGELOG.md)
- [Commits](getsentry/sentry-dart@9.28.0...10.0.0-alpha.4)

Updates `sentry_dio` from 9.28.0 to 10.0.0-alpha.4
- [Release notes](https://github.com/getsentry/sentry-dart/releases)
- [Changelog](https://github.com/getsentry/sentry-dart/blob/10.0.0-alpha.4/CHANGELOG.md)
- [Commits](getsentry/sentry-dart@9.28.0...10.0.0-alpha.4)

Updates `cached_network_image` from 3.4.1 to 4.0.0
- [Release notes](https://github.com/Baseflow/flutter_cached_network_image/releases)
- [Commits](Baseflow/flutter_cached_network_image@v3.4.1...cached_network_image_v4.0.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 `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.1
- [Commits](rrousselGit/freezed@freezed-v3.2.5...freezed-v4.0.1)

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 `retrofit_generator` from 10.2.9 to 10.2.10
- [Release notes](https://github.com/trevorwang/retrofit.dart/releases)
- [Commits](trevorwang/retrofit.dart@v10.2.9...v10.2.10)

Updates `sentry_dio` from 9.28.0 to 10.0.0-alpha.4
- [Release notes](https://github.com/getsentry/sentry-dart/releases)
- [Changelog](https://github.com/getsentry/sentry-dart/blob/10.0.0-alpha.4/CHANGELOG.md)
- [Commits](getsentry/sentry-dart@9.28.0...10.0.0-alpha.4)

Updates `sentry_flutter` from 9.28.0 to 10.0.0-alpha.4
- [Release notes](https://github.com/getsentry/sentry-dart/releases)
- [Changelog](https://github.com/getsentry/sentry-dart/blob/10.0.0-alpha.4/CHANGELOG.md)
- [Commits](getsentry/sentry-dart@9.28.0...10.0.0-alpha.4)

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: cached_network_image
  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.1
  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: retrofit_generator
  dependency-version: 10.2.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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: sentry_flutter
  dependency-version: 10.0.0-alpha.4
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: pub-minor-and-patch
- dependency-name: sentry_dio
  dependency-version: 10.0.0-alpha.4
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: pub-minor-and-patch
- dependency-name: cached_network_image
  dependency-version: 4.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.1
  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: retrofit_generator
  dependency-version: 10.2.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pub-minor-and-patch
- dependency-name: sentry_dio
  dependency-version: 10.0.0-alpha.4
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: pub-minor-and-patch
- dependency-name: sentry_flutter
  dependency-version: 10.0.0-alpha.4
  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