Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump the built_value group across 1 directory with 13 updates #5925

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 10, 2025

Bumps the built_value group with 13 updates in the / directory:

Package From To
built_value 8.8.1 8.9.3
json_serializable 6.8.0 6.9.0
code_builder 4.10.0 4.10.1
built_value_generator 8.8.1 8.9.3
build_runner 2.4.13 2.4.14
dart_style 2.3.2 2.3.8
ffigen 9.0.1 16.1.0
device_info_plus 10.1.2 11.3.0
drift 2.18.0 2.25.0
sqlite3 2.4.5 2.7.3
drift_dev 2.18.0 2.25.1
test 1.25.8 1.25.15
pigeon 11.0.1 22.7.2

Updates built_value from 8.8.1 to 8.9.3

Release notes

Sourced from built_value's releases.

Improved build performance

  • Generate code that formats faster with current "short" style. Both versions are fast with the coming "tall" style.
  • Mark @nullable deprecated: it does nothing and should not be used.

The build is almost 2x faster than before.

Improved build performance

  • Improve build performance when there are lots of built_value classes.

Fix for new operator== warning

  • Fix for new warning about operator== param type.

StandardJsonPlugin improvement, EnumClass fix

  • In StandardJsonPlugin, add support for specifying types that should be left as List.
  • Allow non alphanumeric characters in EnumClass names.
Changelog

Sourced from built_value's changelog.

8.9.3

  • Generate code that formats faster with current "short" style. Both versions are fast with the coming "tall" style.
  • Mark @nullable deprecated: it does nothing and should not be used.

8.9.2

  • Improve build performance when there are lots of built_value classes.

8.9.1

  • Fix for new warning about operator== param type.

8.9.0

  • In StandardJsonPlugin, add support for specifying types that should be left as List.
  • Allow non alphanumeric characters in EnumClass names.
Commits

Updates json_serializable from 6.8.0 to 6.9.0

Release notes

Sourced from json_serializable's releases.

package:json_serializable v6.9.0

  • Use conditional map syntax to clean up null handling in toJson functions.
  • Fix core Dart type links in docs.
  • Require Dart 3.5
Commits

Updates code_builder from 4.10.0 to 4.10.1

Release notes

Sourced from code_builder's releases.

package:code_builder v4.10.1

  • Require Dart ^3.5.0
  • Upgrade to dart_style 2.3.7.
  • Move to dart-lang/tools monorepo.
Commits

Updates built_value_generator from 8.8.1 to 8.9.3

Release notes

Sourced from built_value_generator's releases.

Improved build performance

  • Generate code that formats faster with current "short" style. Both versions are fast with the coming "tall" style.
  • Mark @nullable deprecated: it does nothing and should not be used.

The build is almost 2x faster than before.

Improved build performance

  • Improve build performance when there are lots of built_value classes.

Fix for new operator== warning

  • Fix for new warning about operator== param type.

StandardJsonPlugin improvement, EnumClass fix

  • In StandardJsonPlugin, add support for specifying types that should be left as List.
  • Allow non alphanumeric characters in EnumClass names.
Changelog

Sourced from built_value_generator's changelog.

8.9.3

  • Generate code that formats faster with current "short" style. Both versions are fast with the coming "tall" style.
  • Mark @nullable deprecated: it does nothing and should not be used.

8.9.2

  • Improve build performance when there are lots of built_value classes.

8.9.1

  • Fix for new warning about operator== param type.

8.9.0

  • In StandardJsonPlugin, add support for specifying types that should be left as List.
  • Allow non alphanumeric characters in EnumClass names.
Commits

Updates build_runner from 2.4.13 to 2.4.14

Release notes

Sourced from build_runner's releases.

package:build_runner v2.4.14

  • Write generated assets at the end of a build to avoid invalidating other tools with a file watcher multiple times.
  • Bump the min sdk to 3.6.0.
  • Allow analyzer version 7.x.
  • Hard code the generated build script to language version 3.6.
  • Allow dart_style version 4.0.0, require at least 2.3.7.
Commits

Updates dart_style from 2.3.2 to 2.3.8

Release notes

Sourced from dart_style's releases.

package:dart_style v2.3.7

  • Allow passing a language version to DartFomatter(). Formatted code will be parsed at that version. If omitted, defaults to the latest version. In a future release, this parameter will become required.
  • Allow opting out of formatting for a region of code using // dart format off and // dart format on comments. Note: This only works using the new tall style and requires passing the --enable-experiment=tall-style experiment flag (#361).
  • Preserve type parameters on old-style function-typed formals that also use this. or super. (#1321).
  • Correctly format imports with both as and if clauses (#1544).
  • Remove temporary work around for analyzer 6.2.0 from dart_style 2.3.6.
  • Require package:analyzer >=6.5.0 <7.0.0.

package:dart_style v2.3.6

  • Fix compile error when using dart_style with analyzer 6.2.0.

package:dart_style v2.3.5

  • Ensure switch expressions containing line comments split (#1404).
  • Use language version 3.3 to parse so that code with extension types can be formatted.
  • Support formatting the macro modifier when the macros experiment flag is passed.

package:dart_style v2.3.4

  • Add tall-style experiment flag to enable the in-progress unstable new formatting style (#1253).
  • Format extension types.
  • Normalize ignored whitespace and "escaped whitespace" on first line of multiline string literals. (#1235)
Changelog

Sourced from dart_style's changelog.

3.0.2-wip

  • Add tests for digit separators.
  • Don't add a trailing comma in lists that don't allow it, even when there is a trailing comment (#1639).

3.0.1

  • Handle trailing commas in for-loop updaters (#1354).
  • Format || patterns like fallthrough cases in switch expressions (#1602).
  • Handle comments and metadata before variables more gracefully (#1604).
  • Ensure comment formatting is idempotent (#1606).
  • Better indentation of leading comments on property accesses in binary operator operands (#1611).
  • Don't crash on doc comments in local variable declarations (#1621).

3.0.0

This is a large change. Under the hood, the formatter was almost completely rewritten, with the codebase now containing both the old and new implementations. The old formatter exists to support the older "short" style and the new code implements the new "tall" style.

The formatter uses the language version of the formatted code to determine which style you get. If the language version is 3.6 or lower, the code is formatted with the old style. If 3.7 or later, you get the new tall style. You typically control the language version by setting a min SDK constraint in your package's pubspec.

In addition to the new formatting style, a number of other API and CLI changes are included, some of them breaking:

  • Support project-wide page width configuration. By long request, you can now configure your preferred formatting page width on a project-wide basis. When formatting files, the formatter will look in the file's directory and any surrounding directories for an analysis_options.yaml file. If it finds one, it looks for the following YAML:

    formatter:
      page_width: 123

    If it finds a formatter key containing a map with a page_width key whose value is an integer, then that is the page width that the file is formatted using. Since the formatter will walk the surrounding directories until it

... (truncated)

Commits

Updates ffigen from 9.0.1 to 16.1.0

Release notes

Sourced from ffigen's releases.

package:ffigen v11.0.0

  • Any compiler errors/warnings in source header files will now result in bindings to not be generated by default, since it may result in invalid bindings if the compiler makes a wrong guess. A flag --ignore-source-errors (or yaml config ignore-source-errors: true) must be passed to change this behaviour.
  • Breaking change: Stop generating setters for global variables marked const in C.
  • Fix objc_msgSend being used on arm64 platforms where it's not available.
  • Fix missing comma with ffi-native functions marked leaf.
  • Add support for finding libclang in Conda environment.

package:ffigen v10.0.0

  • Stable release targeting Dart 3.2 using new dart:ffi features available in Dart 3.2 and later.
  • Add support for ObjC Blocks that can be invoked from any thread, using NativeCallable.listener.
  • Fix invalid exceptional return value ObjCBlocks that return floats.
  • Fix return_of_invalid_type analysis error for ObjCBlocks.
  • Fix crash in ObjC methods and blocks that return structs by value.
  • Fix ObjC methods returning instancetype having the wrong type in sublasses.
  • When generating typedefs for Pointer<NativeFunction<Function>>, also generate a typedef for the Function.
  • Use Dart wrapper types in args and returns of ObjCBlocks.
  • Use Dart wrapper types in args and returns of static functions.
  • Renamed asset to assetId for ffi-native.
Commits
  • a650ccb Prepare to publish (#1896)
  • 7c7cced [ffigen] Remove objc_retain from bindings (#1888)
  • 5e48015 [native_assets_builder] Write hook stdout and stderr to disk (#1886)
  • f179ec2 [native_assets_cli] Fix system libraries and add documentation - fix test 2 (...
  • bc1ca8c [swift2objc] Visitor infra (#1834)
  • 3832e4b [native_assets_cli] Add HookInput.outputFile (#1882)
  • ba55784 [native_assets_cli] Fix system libraries and add documentation - fix test (#1...
  • bd486f6 [jnigen] Fix crash on Kotlin wildcards (#1881)
  • a7fb6ee [native_assets_cli] Fix system libraries and add documentation (#1880)
  • b7b8e00 [native_assets_cli] [doc] Add READMEs for examples (#1878)
  • Additional commits viewable in compare view

Updates device_info_plus from 10.1.2 to 11.3.0

Commits
  • 50d1299 chore(release): prepare for release (#3465)
  • 8c38a31 feat(device_info_plus): Add User Device Name in Android (PR #3437) (#3456)
  • deff1d0 chore(release): prepare for release (#3447)
  • 084730f fix: #2957 replaces throwing exception with returning default values (#3445)
  • 743bec6 docs(device_info_plus): Update the documentation URL for property description...
  • 8e5fab7 chore(release): prepare for release (#3431)
  • 3f098c3 fix(device_info_plus): Resolve compilation issues with SPM enabled (#3405)
  • 2b7cb08 fix(device_info_plus): device memory null error on Safari and Firefox (#3401)
  • 8e70d3f fix(device_info_plus): add @​Suppress(deprecate) to Build.SERIAL (#3402)
  • b5d24a0 chore(release): prepare for release (#3394)
  • Additional commits viewable in compare view

Updates drift from 2.18.0 to 2.25.0

Release notes

Sourced from drift's releases.

Drift 2.25.0

Core drift package:

  • Report SqliteExceptions occurring on workers as SqliteException instances. Previously, they were sent as strings only.
  • Fix LazyDatabase being closed without ever being used potentially leaking resources.

In the generator:

  • Fix incorrect code when applying non-nullable type converters with a nullable JSON type to nullable column.
  • Fix missing outputs for drift files only consisting of imports in modular generation mode.
  • Allow generating manager references across different files in modular generation mode.
  • Fix class names with dollar signs not being escaped in drift-generated toString().
  • Make-migrations command: Use flutter_test if the core test package is unavailable and warn when database class needs changes for test.

Drift 2.24.0

This version improves jsonb support and adds other minor improvements:

  • Add TypeConverter.jsonb to directly store values in the JSONB format used by SQLite.
  • Deprecate TypeConverter.json utility in favor of TypeConverter.json2. The new method avoids encoding values twice when mapping drift row classes to JSON. The documentation
  • Add runWithInterceptor method to databases to only apply interceptors in a restricted block.

In the generator, we:

  • Support versions 7.x of the analyzer package.
  • Add analysis support for SQLite 3.48.
  • Fix nullability analysis around fts5 tables (enabled when raising the version to 3.48 to preserve backwards-compatibility).

Drift 2.23.1

This patch release fixes the following issues:

  • Fix TableStatements.insertAll to only apply a database-specific pragma for SQLite databases.
  • Don't attempt to roll-back transactions that failed to begin.
  • Fix unhandled exception when cancelling transactions.
  • Fix deadlock when drift databases are used in a fake_async Zone and then closed outside that zone.

Also, drift_dev version 2.23.1 contains one improvement:

  • Generate typed reference-resolving queries through the manager API when modular code-generation is enabled. Previously, this feature was only enabled for monolithic generation modes.

Drift 2.23.0

This drift release contains smaller fixes and new features:

Core query builder:

  • Allow building compound select statements in Dart.
  • Support NULLS FIRST and NULLS LAST in manager API.

Generator and command line tools:

  • Fix custom companion names on @DataClassName not being recognized.

... (truncated)

Commits
  • ab00523 Prepare 2.25.0 release
  • 7aaeba2 Migrations: Warn about missing constructor arg
  • 965b6cb Fix toString() not escaping class names
  • 01bab07 Minor typo correction in rows.md
  • 910bc61 Update web worker example
  • 49ebf88 Fix resource leak closing unused lazy databases
  • 0ca679c Manager references across modular files
  • 35e16a5 Update docs on code sharing between native and web
  • bda5276 Sort imports in schema helper by version
  • 087afb8 Fix compat check button in Firefox
  • Additional commits viewable in compare view

Updates sqlite3 from 2.4.5 to 2.7.3

Commits
  • 10e90d3 Prepare release
  • d4a56db Update sqlite to 3.49.0
  • e8a7aad Unconditionally store array buffers
  • 234df84 Fix sqlite3_flutter_libs changelog.md
  • eaf3b56 Update download URI for wasm in tests
  • fae3594 Report position of syntax errors
  • 5ccc018 Add toptics to dartdoc documentation
  • 9e9937e Prepare sqlite3_flutter_libs release
  • 15acbbd Raise compileSdkVersion
  • 04eae22 Prepare sqlite3_web release
  • Additional commits viewable in compare view

Updates drift_dev from 2.18.0 to 2.25.1

Commits
  • cfac59d Prepare drift_dev patch release
  • 3428203 Respect project options for schema isolate
  • ab00523 Prepare 2.25.0 release
  • 7aaeba2 Migrations: Warn about missing constructor arg
  • 965b6cb Fix toString() not escaping class names
  • 01bab07 Minor typo correction in rows.md
  • 910bc61 Update web worker example
  • 49ebf88 Fix resource leak closing unused lazy databases
  • 0ca679c Manager references across modular files
  • 35e16a5 Update docs on code sharing between native and web
  • Additional commits viewable in compare view

Updates test from 1.25.8 to 1.25.15

Release notes

Sourced from test's releases.

package:test v1.25.15

  • Allow the latest version of package:shelf_web_socket.

package:test v1.25.14

  • Use secure random for url secrets.

package:test v1.25.13

  • Allow the latest version of package:matcher.

package:test v1.25.12

  • Fix hang when running multiple precompiled browser tests.

package:test v1.25.11

  • Update to be forward compatible with package:shelf_web_socket version 3.x.

package:test v1.25.10

  • Update the package:vm_service constraint to allow version 15.x.

package:test v1.25.9

  • Allow analyzer: '>=6.0.0 <8.0.0'
  • Fix dart2wasm tests on windows.
  • Increase SDK constraint to ^3.5.0.
  • Support running Node.js tests compiled with dart2wasm.
  • Allow firefox or firefox-bin executable name on macOS.
Commits
  • 17609bf [test] allow the latest version of pkg:shelf_web_socket (#2457)
  • 73d629d Enable and fix unnecessary_ignore lint (#2456)
  • 385c4f7 Remove "-wip" from CHANGELOG.md too.
  • 82417ab Release fake_async v1.3.3
  • 92eed6c Make zone handlers call zone.run to run callbacks. (#2451)
  • ad04f17 add a pull request labeler; add issue tracker links; update codeowners file (...
  • 1f292db Don't require Dart 3.5.
  • a56fa94 Accept extra runs in test. Move to Dart 3.5.
  • 4bd5497 Clean-up. Accidentally merged a removed lint back in.
  • 9fa57d1 Make zone handlers call zone.run to run callbacks.
  • Additional commits viewable in compare view

Updates pigeon from 11.0.1 to 22.7.2

Commits
  • a13b4ef [pigeon] Discuss stability in README (#8366)
  • 2e58910 [shared_preferences] Add information about shared preferences android to docs...
  • 3976c1b [camera] Remove OCMock from permission tests (#8350)
  • c515499 [camera] Fix memory leaks in example and activate leak testing (#8287)
  • 9dffa39 [pigeon] Adds platform for imports that aren't support on a platform (#8338)
  • 2d5e714 Bump Plugin Example Apps to TargetSdkVersion >= 34 (#8285)
  • 311b660 Re-create templates/app, add deprecation notices for app_shared and `skel...
  • 864e6be [dependabot]: Bump com.google.guava:guava from 33.3.1-android to 33.4.0-andro...
  • cebedf8 [dependabot]: Bump camerax_version from 1.3.4 to 1.4.1 in /packages/camera/ca...
  • 6522952 [gradle]: Bump com.google.truth:truth, com.google.code.gson:gson, com.squareu...
  • 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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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

…dates

Bumps the built_value group with 13 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [built_value](https://github.com/google/built_value.dart) | `8.8.1` | `8.9.3` |
| [json_serializable](https://github.com/google/json_serializable.dart) | `6.8.0` | `6.9.0` |
| [code_builder](https://github.com/dart-lang/tools/tree/main/pkgs) | `4.10.0` | `4.10.1` |
| [built_value_generator](https://github.com/google/built_value.dart) | `8.8.1` | `8.9.3` |
| [build_runner](https://github.com/dart-lang/build) | `2.4.13` | `2.4.14` |
| [dart_style](https://github.com/dart-lang/dart_style) | `2.3.2` | `2.3.8` |
| [ffigen](https://github.com/dart-lang/native/tree/main/pkgs) | `9.0.1` | `16.1.0` |
| [device_info_plus](https://github.com/fluttercommunity/plus_plugins/tree/main/packages/device_info_plus) | `10.1.2` | `11.3.0` |
| [drift](https://github.com/simolus3/drift) | `2.18.0` | `2.25.0` |
| [sqlite3](https://github.com/simolus3/sqlite3.dart) | `2.4.5` | `2.7.3` |
| [drift_dev](https://github.com/simolus3/drift) | `2.18.0` | `2.25.1` |
| [test](https://github.com/dart-lang/test/tree/master/pkgs) | `1.25.8` | `1.25.15` |
| [pigeon](https://github.com/flutter/packages/tree/main/packages) | `11.0.1` | `22.7.2` |



Updates `built_value` from 8.8.1 to 8.9.3
- [Release notes](https://github.com/google/built_value.dart/releases)
- [Changelog](https://github.com/google/built_value.dart/blob/master/CHANGELOG.md)
- [Commits](https://github.com/google/built_value.dart/commits/v8.9.3)

Updates `json_serializable` from 6.8.0 to 6.9.0
- [Release notes](https://github.com/google/json_serializable.dart/releases)
- [Commits](google/json_serializable.dart@json_serializable-v6.8.0...json_serializable-v6.9.0)

Updates `code_builder` from 4.10.0 to 4.10.1
- [Release notes](https://github.com/dart-lang/tools/releases)
- [Commits](https://github.com/dart-lang/tools/commits/code_builder-v4.10.1/pkgs)

Updates `built_value_generator` from 8.8.1 to 8.9.3
- [Release notes](https://github.com/google/built_value.dart/releases)
- [Changelog](https://github.com/google/built_value.dart/blob/master/CHANGELOG.md)
- [Commits](https://github.com/google/built_value.dart/commits/v8.9.3)

Updates `build_runner` from 2.4.13 to 2.4.14
- [Release notes](https://github.com/dart-lang/build/releases)
- [Commits](dart-lang/build@build_runner-v2.4.13...build_runner-v2.4.14)

Updates `dart_style` from 2.3.2 to 2.3.8
- [Release notes](https://github.com/dart-lang/dart_style/releases)
- [Changelog](https://github.com/dart-lang/dart_style/blob/main/CHANGELOG.md)
- [Commits](https://github.com/dart-lang/dart_style/commits)

Updates `ffigen` from 9.0.1 to 16.1.0
- [Release notes](https://github.com/dart-lang/native/releases)
- [Commits](https://github.com/dart-lang/native/commits/ffigen-v16.1.0/pkgs)

Updates `device_info_plus` from 10.1.2 to 11.3.0
- [Release notes](https://github.com/fluttercommunity/plus_plugins/releases)
- [Commits](https://github.com/fluttercommunity/plus_plugins/commits/device_info_plus-v11.3.0/packages/device_info_plus)

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

Updates `sqlite3` from 2.4.5 to 2.7.3
- [Release notes](https://github.com/simolus3/sqlite3.dart/releases)
- [Commits](simolus3/sqlite3.dart@sqlite3-2.4.5...sqlite3-2.7.3)

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

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

Updates `pigeon` from 11.0.1 to 22.7.2
- [Release notes](https://github.com/flutter/packages/releases)
- [Commits](https://github.com/flutter/packages/commits/pigeon-v22.7.2/packages)

---
updated-dependencies:
- dependency-name: built_value
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: built_value
- dependency-name: json_serializable
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: built_value
- dependency-name: code_builder
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: built_value
- dependency-name: built_value_generator
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: built_value
- dependency-name: build_runner
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: built_value
- dependency-name: dart_style
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: built_value
- dependency-name: ffigen
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: built_value
- dependency-name: device_info_plus
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: built_value
- dependency-name: drift
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: built_value
- dependency-name: sqlite3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: built_value
- dependency-name: drift_dev
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: built_value
- dependency-name: test
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: built_value
- dependency-name: pigeon
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: built_value
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner February 10, 2025 23:25
@dependabot dependabot bot added dart Pull requests that update Dart code dependencies Pull requests that update a dependency file labels Feb 10, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 12, 2025

Superseded by #5938.

@dependabot dependabot bot closed this Feb 12, 2025
@dependabot dependabot bot deleted the dependabot/pub/built_value-ac846d00c7 branch February 12, 2025 12:59
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