Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 7, 2025

Bumps the source_gen group with 9 updates in the / directory:

Package From To
source_gen 1.5.0 2.0.0
code_builder 4.10.0 4.10.1
built_value_generator 8.9.3 8.9.5
dart_style 2.3.8 3.0.1
json_serializable 6.8.0 6.9.4
sqlite3 2.6.1 2.7.5
ffigen 9.0.1 17.0.0
device_info_plus 10.1.2 11.3.3
pigeon 22.7.2 24.2.2

Updates source_gen from 1.5.0 to 2.0.0

Release notes

Sourced from source_gen's releases.

package:source_gen v2.0.0

  • Breaking Change: Change formatOutput function to accept a language version parameter.
  • Formatting Change: Generated code will no longer apply any fixes by default (previously it would apply the single cascades statements fix). The new formatter does not support applying fixes.
  • Document deduplication behavior for the output of GeneratorForAnnotation.generateForAnnotatedElement.
  • Support all the glob quotes.
  • Require analyzer: '>=6.9.0 <8.0.0'
  • Support the latest package:dart_style
  • LibraryBuilder, PartBuilder, and SharedPartBuilder now take an optional writeDescriptions boolean. When set to false, headers and generator descriptions for the files will not be included in the builder output.
  • Include //dart format width=80 comments in files generated by a LibraryBuilder or PartBuilder and formatted with the default callback.
  • Require Dart 3.6.0
Commits
  • 947a0e2 Support latest analyzer and dart_style, prepare v2 release (#736)
  • 49a96d8 Bump mind SDK to 3.6.0 stable (#734)
  • 9f95ac3 Only add dart format width comment on format (#733)
  • b7b0c7d Bump dart-lang/setup-dart in the github-actions group (#732)
  • 18c17fc Bump the github-actions group with 2 updates (#731)
  • 936fb07 blast_repo fixes (#730)
  • eb98c68 Read libraryImports/libraryExports from the defining unit. (#729)
  • 2bea904 Read parts with the defining compilation unit (#728)
  • da1190d Add dart format width comments (#725)
  • 4b4431f Ignore some deprecated analyzer members (#726)
  • Additional commits viewable in compare view

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.9.3 to 8.9.5

Changelog

Sourced from built_value_generator's changelog.

8.9.5

  • Allow built_value_generator to use analyzer 7.0.0.

8.9.4

  • Allow built_value_generator to use source_gen 2.0.0.
Commits

Updates dart_style from 2.3.8 to 3.0.1

Release notes

Sourced from dart_style's releases.

package:dart_style v3.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).

package:dart_style v3.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 finds an analysis_options.yaml file, this can be used to globally set the page width for an entire directory, package, or even collection of packages.

  • Support overriding the page width for a single file. In code formatted using the new tall style, you can use a special marker comment to control the page width that it's formatted using:

... (truncated)

Changelog

Sourced from dart_style's changelog.

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 finds an analysis_options.yaml file, this can be used to globally set the page width for an entire directory, package, or even collection of packages.

  • Support overriding the page width for a single file. In code formatted using the new tall style, you can use a special marker comment to control the page width that it's formatted using:

... (truncated)

Commits

Updates json_serializable from 6.8.0 to 6.9.4

Release notes

Sourced from json_serializable's releases.

package:json_serializable v6.9.4

  • Fix extra line being generated when targetting Dart 3.7 package.

package:json_serializable v6.9.3

  • Error out if the target package does not have a language version of 3.0 or greater.

package:json_serializable v6.9.2

  • Support the latest package:analyzer.

package:json_serializable v6.9.1

  • Support the latest package:analyzer and package:source_gen.
  • Require Dart 3.6

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 sqlite3 from 2.6.1 to 2.7.5

Commits

Updates ffigen from 9.0.1 to 17.0.0

Release notes

Sourced from ffigen's releases.

ffigen-v17.0.0

No release notes provided.

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

Updates device_info_plus from 10.1.2 to 11.3.3

Commits
  • 71a8e00 chore(release): prepare for release (#3508)
  • 3201e05 fix(device_info_plus): handle nullability on getString(DEVICE_NAME) (#3507)
  • 9ec7eb4 chore(release): prepare for release (#3501)
  • c7e2428 fix(device_info_plus): tighten dependency constraints (#3497)
  • 8b4178d chore(release): prepare for release (#3494)
  • 2a24dd6 chore(device_info_plus): bump win32_registry from 1.1.5 to 2.0.1 in /packages...
  • 1cbf2b5 fix(device_info_plus): fix memory leak when calling DeviceInfoPlugin().macOsI...
  • 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)
  • Additional commits viewable in compare view

Updates pigeon from 22.7.2 to 24.2.2

Commits
  • bfad6b9 [various] Updates packages to use flutter.compileSdkVersion (#8734)
  • fc9d5ca manual roll with video player test disabled (#8803)
  • 7b635eb [rfw] Make widget builders work with loops (#8650)
  • 3e55269 [shared_preferences_android] dependabot takeover datastore (#8784)
  • abba683 [camera_avfoundation] Tests backfilling - part 1 (#8698)
  • f246137 [go_router_builder]: Fix `The argument type 'String?' can't be assigned to th...
  • 1995a0e [video_player_android] Platform view support (#8466)
  • f7a4e5d [webview_flutter_wkwebview] Fixes crash with nil WKFrameInfo.request (#8766)
  • 89135e7 [flutter_plugin_android_lifecycle] Uses flutter.compileSdkVersion, bumps mini...
  • 1faaa04 [google_sign_in] Add Android account name field as optional (platform interfa...
  • Additional commits viewable in compare view

You can trigger a rebase of this PR 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

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot bot requested a review from a team as a code owner March 7, 2025 22:08
@dependabot dependabot bot added dart Pull requests that update Dart code dependencies Pull requests that update a dependency file labels Mar 7, 2025
@dependabot dependabot bot force-pushed the dependabot/pub/source_gen-9acda71ab4 branch from 8b61934 to 5b65bb5 Compare March 28, 2025 12:44
Bumps the source_gen group with 9 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [source_gen](https://github.com/dart-lang/source_gen) | `1.5.0` | `2.0.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.9.3` | `8.9.5` |
| [dart_style](https://github.com/dart-lang/dart_style) | `2.3.8` | `3.0.1` |
| [json_serializable](https://github.com/google/json_serializable.dart) | `6.8.0` | `6.9.4` |
| [sqlite3](https://github.com/simolus3/sqlite3.dart) | `2.6.1` | `2.7.5` |
| [ffigen](https://github.com/dart-lang/native/tree/main/pkgs) | `9.0.1` | `17.0.0` |
| [device_info_plus](https://github.com/fluttercommunity/plus_plugins/tree/main/packages/device_info_plus) | `10.1.2` | `11.3.3` |
| [pigeon](https://github.com/flutter/packages/tree/main/packages) | `22.7.2` | `24.2.2` |



Updates `source_gen` from 1.5.0 to 2.0.0
- [Release notes](https://github.com/dart-lang/source_gen/releases)
- [Commits](dart-lang/source_gen@source_gen-v1.5.0...source_gen-v2.0.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.9.3 to 8.9.5
- [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)

Updates `dart_style` from 2.3.8 to 3.0.1
- [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/v3.0.1)

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

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

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

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

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

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/pub/source_gen-9acda71ab4 branch from 5b65bb5 to c49fc67 Compare March 31, 2025 12:25
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 16, 2025

Looks like these dependencies are no longer updatable, so this is no longer needed.

@dependabot dependabot bot closed this Apr 16, 2025
@dependabot dependabot bot deleted the dependabot/pub/source_gen-9acda71ab4 branch April 16, 2025 12:16
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