Skip to content

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

Merged
iamvirul merged 1 commit into
masterfrom
dependabot/pub/pub-minor-patch-f08262f9f4
Jul 20, 2026
Merged

deps: bump the pub-minor-patch group with 6 updates#40
iamvirul merged 1 commit into
masterfrom
dependabot/pub/pub-minor-patch-f08262f9f4

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 20, 2026

Copy link
Copy Markdown
Contributor

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

Package From To
build_runner 2.15.0 2.15.1
drift 2.34.0 2.34.2
drift_flutter 0.3.0 0.3.1
flutter_local_notifications 22.0.1 22.1.0
mobile_scanner 7.2.0 7.3.0
uuid 4.5.3 4.6.0

Updates build_runner from 2.15.0 to 2.15.1

Release notes

Sourced from build_runner's releases.

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.
  • Bug fix: fix dart run build_runner test to correctly pass arguments after -- to the test process.
  • Bug fix: fix crash if a resolved Dart source contains invalid utf8.
  • Bug fix: fix incorrect output when builder code changes during builder compile.
  • Bug fix: do a clean build when switching between a workspace build and a package build, as incremental builds were sometimes incorrect.
  • Require Dart 3.8.0.
Commits
  • 565856b Release build 4.0.7, build_runner 3.15.1. (#5010)
  • 76f0f89 Fix workspace vs package build config conflict (#5008)
  • 8921c3f Formatting changes due to latest dev SDK. (#5007)
  • e999ea4 Fix incorrect build due to racy builder changes. (#4988)
  • d2a2f4f Bump SDK upper bounds. (#5006)
  • a72038d Set flattenBuild in passed ReaderWriter. (#5004)
  • ea0cf6b fix(build_daemon): reject cross-origin WebSocket handshakes (CSWSH) (#4992)
  • ae52e61 Use BuiltList.of instead of BuiltList.from. (#5003)
  • a8e949c Fix trigger evaluation reading ungenerated parts. (#5000)
  • 39353ef Bump actions/cache from 5.0.5 to 6.1.0 in the github-actions group (#5002)
  • Additional commits viewable in compare view

Updates drift from 2.34.0 to 2.34.2

Release notes

Sourced from drift's releases.

drift-2.34.2

  • Web: Flush IndexedDB writes after statements, making writes more reliable.

sqlite3.wasm files are now attached to drift releases directly, making it easier to download compatible workers and WebAssembly files.

Drift 2.34.1

drift 2.34.1

  • Fix reads queued in a MultiExecutor connection pool being resumed in the wrong zone once an executor became available. Because Drift's cancellation tokens are zone-scoped, this could cause queries to be cancelled or observed in the wrong zone (#3824).

drift_dev 2.34.2

  • Drift files: Support for dart placeholder in update statements to reference companions.
  • Allow circular references between tables (#3780).

sqlparser 0.44.6

  • Fix join analysis to properly treat the left side of a RIGHT or FULL join as nullable (#3812).
  • Fix CaseInsensitiveMap.containsKey to be case-insensitive.
Commits
  • 0936361 Install dependencies in release workflow
  • b728238 Fix version number typo in changelog
  • e3d31d7 Prepare patch release
  • ed00830 don't report a boolean default TRUE/1 as a schema difference (#3738) (#3835)
  • 5a15766 Download latest sqlite3.wasm, attach to releases
  • bbcab2c Flush IndexedDB file systems manually
  • 75c4101 Fix version number typo in changelog
  • 33899c7 Prepare drift_dev and drift_flutter release
  • 87edb8d drift_sqlite: Setup worker compilation
  • bd7ccf0 Fix drift build
  • Additional commits viewable in compare view

Updates drift_flutter from 0.3.0 to 0.3.1

Commits
  • 75c4101 Fix version number typo in changelog
  • 33899c7 Prepare drift_dev and drift_flutter release
  • 87edb8d drift_sqlite: Setup worker compilation
  • bd7ccf0 Fix drift build
  • 22a7fc6 Don't require referenced elements to be discovered
  • f884fc2 Improve errors for unknown references
  • 0e1642a Fix min source_span version
  • be35a9e Breaking bump for sqlparser
  • d97a4cb Port migration test helpers to drift3
  • b82e11f Prepare patch release
  • Additional commits viewable in compare view

Updates flutter_local_notifications from 22.0.1 to 22.1.0

Release notes

Sourced from flutter_local_notifications's releases.

flutter_local_notifications-v22.1.0

  • [Android] added support for showBigPictureWhenCollapsed in BigPictureStyleInformation. Thanks to the PR from hiimax (Codematic)
  • [iOS][macOS] improved SPM compatibility
  • Migrated example app to use SPM and removed Cocoapods integration
  • Fixed API docs of NotificationResponseType.selectedNotificationAction. Thanks to the PR from fush1m1
Commits
  • 5599fce [flutter_local_notifications] migrated example app to use SPM (#2803)
  • ec69bf3 prepare for platform interface 12.0.1 release (#2804)
  • 2a51ce0 added references to FlutterFramework (#2802)
  • f55414b [flutter_local_notifications] Add showBigPictureWhenCollapsed to BigPictureSt...
  • 6b6fcc3 docs: fix typo in NotificationResponseType documentation (#2792)
  • 3c85536 [various] fix iOS integration test job (#2793)
  • 649e6da Bump actions/checkout from 6 to 7 (#2789)
  • See full diff in compare view

Updates mobile_scanner from 7.2.0 to 7.3.0

Release notes

Sourced from mobile_scanner's releases.

v7.3.0

New features

  • [Web] Added support for multiple barcode detection backends, selectable via MobileScannerPlatform.instance.setWebBarcodeReader(WebBarcodeReader reader):
    • WebBarcodeReader.auto (default), uses the native BarcodeDetector API when available, and falls back to zxing-wasm otherwise.
    • WebBarcodeReader.barcodeDetector, uses the W3C Shape Detection API (Chrome 83+, Edge 83+, Safari 17+). No external library is loaded.
    • WebBarcodeReader.zxingWasm, uses zxing-wasm (ZXing C++ compiled to WebAssembly), which works in all modern browsers including Firefox.
    • WebBarcodeReader.zxingJs, the legacy ZXing JavaScript backend, retained for backward compatibility.
  • [Web] Added MobileScannerPlatform.instance.activeWebReader to query which backend is currently active.
  • Added BarcodeFormat.maxiCode and BarcodeFormat.microQrCode, supported by the WebBarcodeReader.zxingJs and WebBarcodeReader.zxingWasm backends.
  • Added BarcodeFormat.dataBar, BarcodeFormat.dataBarExpanded and BarcodeFormat.dataBarLimited (GS1 DataBar / RSS-14), supported by the WebBarcodeReader.zxingJs and WebBarcodeReader.zxingWasm backends (DataBar and DataBar Expanded only for zxingJs), and by Apple Vision on iOS 15+ / macOS 12+.

Improvements

  • [Web] Bumped @zxing/library (the WebBarcodeReader.zxingJs backend) from 0.21.3 to 0.23.0.

Bug Fixes

  • Fixed disposing a MobileScannerController also disposing the platform resources of a different controller. Disposing a controller that does not hold the active camera session no longer tears down the camera of the controller that does. (#1631)
  • Fixed a subscription leak where a controller that was disposed without being stopped kept its internal event stream subscriptions alive.
  • Fixed an issue when running the plugin using AGP 9.

v7.2.1

Improvements

  • [Web] The preferred camera device ID is now persisted in localStorage and reused on the next start.
  • [Web] Focus, exposure, and white-balance constraints are now applied automatically when supported by the browser (Image Capture API).
  • [Web] The camera now uses StartOptions.cameraResolution as the ideal resolution, falling back to 1920×1080.
  • [Web] The barcode overlay is now mirrored when the video preview is mirrored (e.g. front camera).
  • [Web] The scan window is now supported. Barcodes detected outside the scan window are ignored.
  • [Android] Laid groundwork for Android Gradle Plugin (AGP) 9 compatibility by conditionally applying the kotlin-android plugin only on AGP versions below 9, while remaining compatible with older AGP versions.

Bug Fixes

  • [Apple] Fixed a race condition in captureOutput where latestBuffer was read on a background thread after being deallocated on the main thread, causing a crash in VTCreateCGImageFromCVPixelBuffer.
  • [Apple] Fixed an issue where captureOutput was being processed on the main thread, causing overheating issues on device.
  • [Android] Fixed start() not resuming the camera after pause(), caused by the isPaused flag being reset before the paused-state check.
  • [Android] Fixed ProGuard/R8 full mode (default since AGP 8.0) stripping or obfuscating MLKit classes by widening the keep rule to com.google.mlkit.**.
Changelog

Sourced from mobile_scanner's changelog.

7.3.0

New features

  • [Web] Added support for multiple barcode detection backends, selectable via MobileScannerPlatform.instance.setWebBarcodeReader(WebBarcodeReader reader):
    • WebBarcodeReader.auto (default), uses the native BarcodeDetector API when available, and falls back to zxing-wasm otherwise.
    • WebBarcodeReader.barcodeDetector, uses the W3C Shape Detection API (Chrome 83+, Edge 83+, Safari 17+). No external library is loaded.
    • WebBarcodeReader.zxingWasm, uses zxing-wasm (ZXing C++ compiled to WebAssembly), which works in all modern browsers including Firefox.
    • WebBarcodeReader.zxingJs, the legacy ZXing JavaScript backend, retained for backward compatibility.
  • [Web] Added MobileScannerPlatform.instance.activeWebReader to query which backend is currently active.
  • Added BarcodeFormat.maxiCode and BarcodeFormat.microQrCode, supported by the WebBarcodeReader.zxingJs and WebBarcodeReader.zxingWasm backends.
  • Added BarcodeFormat.dataBar, BarcodeFormat.dataBarExpanded and BarcodeFormat.dataBarLimited (GS1 DataBar / RSS-14), supported by the WebBarcodeReader.zxingJs and WebBarcodeReader.zxingWasm backends (DataBar and DataBar Expanded only for zxingJs), and by Apple Vision on iOS 15+ / macOS 12+.

Improvements

  • [Web] Bumped @zxing/library (the WebBarcodeReader.zxingJs backend) from 0.21.3 to 0.23.0.

Bug Fixes

  • Fixed disposing a MobileScannerController also disposing the platform resources of a different controller. Disposing a controller that does not hold the active camera session no longer tears down the camera of the controller that does. (#1631)
  • Fixed a subscription leak where a controller that was disposed without being stopped kept its internal event stream subscriptions alive.
  • Fixed an issue when running the plugin using AGP 9.

7.2.1

Improvements

  • [Web] The preferred camera device ID is now persisted in localStorage and reused on the next start.
  • [Web] Focus, exposure, and white-balance constraints are now applied automatically when supported by the browser (Image Capture API).
  • [Web] The camera now uses StartOptions.cameraResolution as the ideal resolution, falling back to 1920×1080.
  • [Web] The barcode overlay is now mirrored when the video preview is mirrored (e.g. front camera).
  • [Web] The scan window is now supported. Barcodes detected outside the scan window are ignored.
  • [Android] Laid groundwork for Android Gradle Plugin (AGP) 9 compatibility by conditionally applying the kotlin-android plugin only on AGP versions below 9, while remaining compatible with older AGP versions.

Bug Fixes

  • [Apple] Fixed a race condition in captureOutput where latestBuffer was read on a background thread after being deallocated on the main thread, causing a crash in VTCreateCGImageFromCVPixelBuffer.
  • [Apple] Fixed an issue where captureOutput was being processed on the main thread, causing overheating issues on device.
  • [Android] Fixed start() not resuming the camera after pause(), caused by the isPaused flag being reset before the paused-state check.
  • [Android] Fixed ProGuard/R8 full mode (default since AGP 8.0) stripping or obfuscating MLKit classes by widening the keep rule to com.google.mlkit.**.
Commits
  • 8a550ac release of v7.3.0
  • 0704f90 Merge pull request #1745 from juliansteenbakker/fix/agp-9
  • 55bb670 fix: upgrade example app to agp 9
  • 948c327 fix: upgrae example app to agp 9
  • abe0f80 fix: build when agp 9 but built-in Kotlin is not active
  • 29ee768 Merge branch 'master' into develop
  • fef57d4 Merge pull request #1743 from juliansteenbakker/feat/missing-formats
  • 6b88fbd feat: add missing formats
  • 10a95c7 Merge pull request #1738 from juliansteenbakker/dependabot/npm_and_yarn/zxing...
  • fb260a9 fix: bump js version, add new supported types
  • Additional commits viewable in compare view

Updates uuid from 4.5.3 to 4.6.0

Release notes

Sourced from uuid's releases.

4.6.0

What's Changed

New Contributors

Full Changelog: daegalus/dart-uuid@4.5.3...4.6.0

Changelog

Sourced from uuid's changelog.

v4.6.0

  • Add explicit 128-bit hexadecimal format validators: Uuid.isValidUUIDFormat(...), UuidValue.validateFormat(), UuidValidation.isValidUUIDFormat(...), and UuidValidation.isValidFormatOrThrow(...). (thanks @​DPDmancul)
  • Add UuidValue.withFormatValidation(...) for values whose UUID version and variant bits should not be checked. (thanks @​DPDmancul)
  • Add Uuid.parseHex128(...), Uuid.parseHex128AsByteList(...), UuidParsing.parseHex128(...), and UuidParsing.parseHex128AsByteList(...). (thanks @​DPDmancul)
  • Require exact single-line 8-4-4-4-12 or 32-character hexadecimal input and exactly 16 bytes during format validation.
  • Expose the existing noDashes parsing option through the public Uuid parse methods.
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-patch group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [build_runner](https://github.com/dart-lang/build) | `2.15.0` | `2.15.1` |
| [drift](https://github.com/simolus3/drift) | `2.34.0` | `2.34.2` |
| [drift_flutter](https://github.com/simolus3/drift) | `0.3.0` | `0.3.1` |
| [flutter_local_notifications](https://github.com/MaikuB/flutter_local_notifications) | `22.0.1` | `22.1.0` |
| [mobile_scanner](https://github.com/juliansteenbakker/mobile_scanner) | `7.2.0` | `7.3.0` |
| [uuid](https://github.com/Daegalus/dart-uuid) | `4.5.3` | `4.6.0` |


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

Updates `drift` from 2.34.0 to 2.34.2
- [Release notes](https://github.com/simolus3/drift/releases)
- [Commits](simolus3/drift@drift-2.34.0...drift-2.34.2)

Updates `drift_flutter` from 0.3.0 to 0.3.1
- [Release notes](https://github.com/simolus3/drift/releases)
- [Commits](simolus3/drift@drift_flutter-0.3.0...drift_flutter-0.3.1)

Updates `flutter_local_notifications` from 22.0.1 to 22.1.0
- [Release notes](https://github.com/MaikuB/flutter_local_notifications/releases)
- [Commits](MaikuB/flutter_local_notifications@flutter_local_notifications-v22.0.1...flutter_local_notifications-v22.1.0)

Updates `mobile_scanner` from 7.2.0 to 7.3.0
- [Release notes](https://github.com/juliansteenbakker/mobile_scanner/releases)
- [Changelog](https://github.com/juliansteenbakker/mobile_scanner/blob/develop/CHANGELOG.md)
- [Commits](juliansteenbakker/mobile_scanner@v7.2.0...v7.3.0)

Updates `uuid` from 4.5.3 to 4.6.0
- [Release notes](https://github.com/Daegalus/dart-uuid/releases)
- [Changelog](https://github.com/daegalus/dart-uuid/blob/main/CHANGELOG.md)
- [Commits](daegalus/dart-uuid@4.5.3...4.6.0)

---
updated-dependencies:
- dependency-name: build_runner
  dependency-version: 2.15.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pub-minor-patch
- dependency-name: drift
  dependency-version: 2.34.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pub-minor-patch
- dependency-name: drift_flutter
  dependency-version: 0.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pub-minor-patch
- dependency-name: flutter_local_notifications
  dependency-version: 22.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pub-minor-patch
- dependency-name: mobile_scanner
  dependency-version: 7.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pub-minor-patch
- dependency-name: uuid
  dependency-version: 4.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pub-minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@github-actions

Copy link
Copy Markdown
Contributor

Preview deployed

URL https://getbms.github.io/bms/pr-40/
Commit 223c294
Status Live

Updates automatically on every push.

@iamvirul
iamvirul merged commit d1f7326 into master Jul 20, 2026
10 checks passed
@dependabot
dependabot Bot deleted the dependabot/pub/pub-minor-patch-f08262f9f4 branch July 20, 2026 05:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant