Skip to content

Bump the all_dependencies group across 1 directory with 4 updates#522

Open
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/pub/packages/leancode_lint/all_dependencies-fee4f5e90d
Open

Bump the all_dependencies group across 1 directory with 4 updates#522
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/pub/packages/leancode_lint/all_dependencies-fee4f5e90d

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Mar 27, 2026

Bumps the all_dependencies group with 4 updates in the /packages/leancode_lint directory: analysis_server_plugin, analyzer_plugin, analyzer and analyzer_testing.

Updates analysis_server_plugin from 0.3.8 to 0.3.13

Commits

Updates analyzer_plugin from 0.14.2 to 0.14.7

Commits

Updates analyzer from 10.0.2 to 12.0.0

Commits

Updates analyzer_testing from 0.1.10 to 0.2.4

Changelog

Sourced from analyzer_testing's changelog.

3.12.0

Released on: Unreleased

Language

Private named parameters

Dart now supports private named parameters. Before 3.12, it was an error to have a named parameter that starts with an underscore:

class Point {
  final int _x, _y;
  // Compile error in Dart 3.11.
  Point({required this._x, required this._y});
}

That means that when you wanted to initialize a private field from a named parameter, you had to write an explicit initializer list:

class Point {
  final int _x, _y;
  Point({required int x, required int y})
    : x = _x,
      y = _y;
}

All the initializer list is doing is scraping off the _. In Dart 3.12, the language will do that for you. Now you can write:

class Point {
  final int _x, _y; // Private fields.
  Point({required this._x, required this._y});
}

It behaves exactly like the previous example. The initialized fields are private, but the argument names written at the call site are public:

main() {
  print(Point(x: 1, y: 2));
}
</tr></table> 

... (truncated)

Commits

Updates analyzer from 10.0.2 to 12.0.0

Commits

Updates analyzer_plugin from 0.14.2 to 0.14.7

Commits

Updates analyzer_testing from 0.1.10 to 0.2.4

Changelog

Sourced from analyzer_testing's changelog.

3.12.0

Released on: Unreleased

Language

Private named parameters

Dart now supports private named parameters. Before 3.12, it was an error to have a named parameter that starts with an underscore:

class Point {
  final int _x, _y;
  // Compile error in Dart 3.11.
  Point({required this._x, required this._y});
}

That means that when you wanted to initialize a private field from a named parameter, you had to write an explicit initializer list:

class Point {
  final int _x, _y;
  Point({required int x, required int y})
    : x = _x,
      y = _y;
}

All the initializer list is doing is scraping off the _. In Dart 3.12, the language will do that for you. Now you can write:

class Point {
  final int _x, _y; // Private fields.
  Point({required this._x, required this._y});
}

It behaves exactly like the previous example. The initialized fields are private, but the argument names written at the call site are public:

main() {
  print(Point(x: 1, y: 2));
}
</tr></table> 

... (truncated)

Commits

@dependabot dependabot bot added dart Pull requests that update dart code dependencies Pull requests that update a dependency file labels Mar 27, 2026
@dependabot dependabot bot requested a review from mchudy as a code owner March 27, 2026 14:16
@dependabot dependabot bot added dependencies Pull requests that update a dependency file dart Pull requests that update dart code labels Mar 27, 2026
@github-actions github-actions bot added the p: leancode_lint Related to the leancode_lint package label Mar 27, 2026
Bumps the all_dependencies group in /packages/leancode_lint with 4 updates: [analysis_server_plugin](https://github.com/dart-lang/sdk/tree/main/pkg), [analyzer_plugin](https://github.com/dart-lang/sdk/tree/main/pkg), [analyzer](https://github.com/dart-lang/sdk/tree/main/pkg) and [analyzer_testing](https://github.com/dart-lang/sdk/tree/main/pkg).


Updates `analysis_server_plugin` from 0.3.8 to 0.3.13
- [Changelog](https://github.com/dart-lang/sdk/blob/main/CHANGELOG.md)
- [Commits](https://github.com/dart-lang/sdk/commits/HEAD/pkg)

Updates `analyzer_plugin` from 0.14.2 to 0.14.7
- [Changelog](https://github.com/dart-lang/sdk/blob/main/CHANGELOG.md)
- [Commits](https://github.com/dart-lang/sdk/commits/HEAD/pkg)

Updates `analyzer` from 10.0.2 to 12.0.0
- [Changelog](https://github.com/dart-lang/sdk/blob/main/CHANGELOG.md)
- [Commits](https://github.com/dart-lang/sdk/commits/HEAD/pkg)

Updates `analyzer_testing` from 0.1.10 to 0.2.4
- [Changelog](https://github.com/dart-lang/sdk/blob/main/CHANGELOG.md)
- [Commits](https://github.com/dart-lang/sdk/commits/0.2.4.0/pkg)

Updates `analyzer` from 10.0.2 to 12.0.0
- [Changelog](https://github.com/dart-lang/sdk/blob/main/CHANGELOG.md)
- [Commits](https://github.com/dart-lang/sdk/commits/HEAD/pkg)

Updates `analyzer_plugin` from 0.14.2 to 0.14.7
- [Changelog](https://github.com/dart-lang/sdk/blob/main/CHANGELOG.md)
- [Commits](https://github.com/dart-lang/sdk/commits/HEAD/pkg)

Updates `analyzer_testing` from 0.1.10 to 0.2.4
- [Changelog](https://github.com/dart-lang/sdk/blob/main/CHANGELOG.md)
- [Commits](https://github.com/dart-lang/sdk/commits/0.2.4.0/pkg)

---
updated-dependencies:
- dependency-name: analysis_server_plugin
  dependency-version: 0.3.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all_dependencies
- dependency-name: analyzer_plugin
  dependency-version: 0.14.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all_dependencies
- dependency-name: analyzer
  dependency-version: 12.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all_dependencies
- dependency-name: analyzer_testing
  dependency-version: 0.2.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all_dependencies
- dependency-name: analyzer
  dependency-version: 12.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all_dependencies
- dependency-name: analyzer_plugin
  dependency-version: 0.14.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all_dependencies
- dependency-name: analyzer_testing
  dependency-version: 0.2.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all_dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot changed the title Bump the all_dependencies group in /packages/leancode_lint with 4 updates Bump the all_dependencies group across 1 directory with 4 updates Apr 6, 2026
@dependabot dependabot bot force-pushed the dependabot/pub/packages/leancode_lint/all_dependencies-fee4f5e90d branch from ce6e0e7 to 249358f Compare April 6, 2026 02:46
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 p: leancode_lint Related to the leancode_lint package

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants