Skip to content

chore(deps): bump the cli-deps group across 1 directory with 7 updates#185

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/pub/packages/cli/cli-deps-bea28ce0ad
Open

chore(deps): bump the cli-deps group across 1 directory with 7 updates#185
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/pub/packages/cli/cli-deps-bea28ce0ad

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

Bumps the cli-deps group with 7 updates in the /packages/cli directory:

Package From To
equatable 2.0.7 2.0.8
http 1.4.0 1.6.0
mason_logger 0.3.3 0.3.5
meta 1.17.0 1.18.2
stats 2.1.0 3.0.0
test 1.26.1 1.31.0
very_good_analysis 7.0.0 10.2.0

Updates equatable from 2.0.7 to 2.0.8

Release notes

Sourced from equatable's releases.

v2.0.8

What's Changed

New Contributors

Full Changelog: felangel/equatable@v2.0.7...v2.0.8

Changelog

Sourced from equatable's changelog.

2.0.8

  • chore: bump license year (#208)
  • fix: mapEquals when comparing maps with different keys and null values (#207)
Commits

Updates http from 1.4.0 to 1.6.0

Release notes

Sourced from http's releases.

package:http v1.5.0

  • Fixed a bug in IOClient where the HttpClient's response stream was cancelled after the response stream was completed.
  • Added support for aborting requests before they complete.
  • Clarify that some header names may not be sent/received.
Commits

Updates mason_logger from 0.3.3 to 0.3.5

Release notes

Sourced from mason_logger's releases.

mason_logger-v0.3.5

  • revert: upgrade pkg:win32 to ^6.0.0
    • due to use of native assets this was breaking hook execution on windows
    • we are still planning to upgrade to win32 v6.0.0 but more time is needed to ensure this is done safely

mason_logger-v0.3.4

  • deps: upgrade pkg:win32 to ^6.0.0 (#1650)
  • refactor: upgrade analysis options (#1539)
Commits

Updates meta from 1.17.0 to 1.18.2

Changelog

Sourced from meta'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 stats from 2.1.0 to 3.0.0

Release notes

Sourced from stats's releases.

package:stats v3.0.0

  • Removed all deprecated members:
    • Removed LightStats.
    • average renamed to mean.
    • Removed median everywhere.
  • Stats: Replaced standardDeviation with sumOfSquares
  • Stats: removed type parameter. Added more complexity than it was worth.
  • ConfidenceInterval now builds from a Stats instance instead of extending it.
  • Stats can now be calculated from a Stream<num>.
  • Stats.transformer allows calculating updated stats on the fly.

package:stats v2.2.0

  • Added confidence internal logic:
    • ConfidenceInterval class and ConfidenceLevel enum.
    • Added confidenceInterval extension to Iterable<num>.
  • Stats: added besselCorrection optional parameter to constructors.
  • Added assert calls to LightStats and Stats constructors.
  • Changed the type of LightStats.average and Stats.standardDeviation to double.
  • Deprecations:
    • LightStats will be removed.
    • average deprecated in favor of mean.
    • median deprecated everywhere.
  • Require at least Dart 3.7
Changelog

Sourced from stats's changelog.

3.0.0

  • Removed all deprecated members:
    • Removed LightStats.
    • average renamed to mean.
    • Removed median everywhere.
  • Stats: Replaced standardDeviation with sumOfSquares
  • Stats: removed type parameter. Added more complexity than it was worth.
  • ConfidenceInterval now builds from a Stats instance instead of extending it.
  • Stats can now be calculated from a Stream<num>.
  • Stats.transformer allows calculating updated stats on the fly.

2.2.0

  • Added confidence internal logic:
    • ConfidenceInterval class and ConfidenceLevel enum.
    • Added confidenceInterval extension to Iterable<num>.
  • Stats: added besselCorrection optional parameter to constructors.
  • Added assert calls to LightStats and Stats constructors.
  • Changed the type of LightStats.average and Stats.standardDeviation to double.
  • Deprecations:
    • LightStats will be removed.
    • average deprecated in favor of mean.
    • median deprecated everywhere.
  • Require at least Dart 3.7
Commits

Updates test from 1.26.1 to 1.31.0

Release notes

Sourced from test's releases.

package:test v1.31.0

  • Print a summary of failed tests at the end of the expanded reporter output.
  • Add vm-asan, vm-msan, and vm-tsan runtimes to run tests on the standalone Dart VM under Address Sanitizer, Memory Sanitizer or Thread Sanitizer. This is useful for finding issues when using foreign libraries through dart:ffi, such as use-after-free, use of initialized memory and data races, or for detecting data races in Dart code using shared fields.
  • Change return type on the body callback argument to group to void from dynamic. This may surface cases where the group callback was erroneously returning an ignored value.
  • Fix a hang when a test run with --compiler exe crashes.
  • Require analyzer: '>=8.0.0 <13.0.0'

package:test v1.30.0

  • Add a --suite-load-timeout argument to allow configuring a timeout for compiling and loading individual test suites.
  • Remove the default 12 minute timeout to compile and load test suites.
  • Bump test_core to 0.6.16
  • Add comments to the top-level libraries in the package.
  • Bump test_api to 0.7.10 to fix missing locations on tests skipped due to the use of solo.

package:test v1.29.0

  • Add --coverage-package flag, which filters the coverage report to specific packages using RegExps.
  • Require a function definition named main directly in a test suite and provide a more direct error message than a failing compiler output.
  • Suppress skip reason messages in the compact and failures-only reporters.
  • Allow analyzer major version 10.

package:test v1.28.0

  • Add isSorted and related matchers for iterables.
  • Consider NaN to be equal to itself in equals.
  • Bump test_core to 0.6.14
  • Removed unused js dependency

package:test v1.27.0

  • Add --coverage-path and --branch-coverage options to dart test.
  • Serve dart2wasm source map files.
  • Fix Node.js dart2wasm tests on windows.
  • Doc edit: clarify in README that a platform selector includes the compiler.
  • Allow analyzer major version 9.
  • Require Dart 3.7

package:test v1.26.3

  • Expand pub constraint to allow the latest analyzer.
Commits

Updates very_good_analysis from 7.0.0 to 10.2.0

Release notes

Sourced from very_good_analysis's releases.

v10.2.0

10.2.0 (2026-02-13)

Features

v10.1.0

10.1.0 (2026-02-02)

Miscellaneous Chores

v10.1.0-rc.2

10.1.1-rc.1 (2025-12-09)

Miscellaneous Chores

  • remove prefer_expression_function_bodies (#187) (0afe5a0)

v10.1.0-rc.1

10.1.1-rc.1 (2025-11-27)

Docs

What's Changed

Full Changelog: VeryGoodOpenSource/very_good_analysis@v10.0.0...v10.1.0-rc.1

v10.0.0

10.0.0 (2025-09-19)

Miscellaneous Chores

... (truncated)

Changelog

Sourced from very_good_analysis's changelog.

10.2.0 (2026-02-13)

Features

10.1.0 (2026-02-02)

Miscellaneous Chores

10.1.0-rc.2 (2025-12-09)

Miscellaneous Chores

  • remove prefer_expression_function_bodies (#187) (0afe5a0)

10.1.0-rc.1 (2025-11-27)

Docs

Features

Bug Fixes

  • docs: update documentation based on markdownlint (#172) (b644968)

10.0.0 (2025-08-22)

Features

Docs

  • update CONTRIBUTING.md to explain how to add new lint rules (#156) (447051a)

10.0.0-rc.2 (2025-09-19)

... (truncated)

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 cli-deps group with 7 updates in the /packages/cli directory:

| Package | From | To |
| --- | --- | --- |
| [equatable](https://github.com/felangel/equatable) | `2.0.7` | `2.0.8` |
| [http](https://github.com/dart-lang/http/tree/master/pkgs) | `1.4.0` | `1.6.0` |
| [mason_logger](https://github.com/felangel/mason) | `0.3.3` | `0.3.5` |
| [meta](https://github.com/dart-lang/sdk/tree/main/pkg) | `1.17.0` | `1.18.2` |
| [stats](https://github.com/kevmoo/stats) | `2.1.0` | `3.0.0` |
| [test](https://github.com/dart-lang/test/tree/master/pkgs) | `1.26.1` | `1.31.0` |
| [very_good_analysis](https://github.com/VeryGoodOpenSource/very_good_analysis) | `7.0.0` | `10.2.0` |



Updates `equatable` from 2.0.7 to 2.0.8
- [Release notes](https://github.com/felangel/equatable/releases)
- [Changelog](https://github.com/felangel/equatable/blob/master/CHANGELOG.md)
- [Commits](felangel/equatable@v2.0.7...v2.0.8)

Updates `http` from 1.4.0 to 1.6.0
- [Release notes](https://github.com/dart-lang/http/releases)
- [Commits](https://github.com/dart-lang/http/commits/HEAD/pkgs)

Updates `mason_logger` from 0.3.3 to 0.3.5
- [Release notes](https://github.com/felangel/mason/releases)
- [Commits](felangel/mason@mason_logger-v0.3.3...mason_logger-v0.3.5)

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

Updates `stats` from 2.1.0 to 3.0.0
- [Release notes](https://github.com/kevmoo/stats/releases)
- [Changelog](https://github.com/kevmoo/stats/blob/master/CHANGELOG.md)
- [Commits](kevmoo/stats@v2.1.0...v3.0.0)

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

Updates `very_good_analysis` from 7.0.0 to 10.2.0
- [Release notes](https://github.com/VeryGoodOpenSource/very_good_analysis/releases)
- [Changelog](https://github.com/VeryGoodOpenSource/very_good_analysis/blob/main/CHANGELOG.md)
- [Commits](VeryGoodOpenSource/very_good_analysis@v7.0.0...v10.2.0)

---
updated-dependencies:
- dependency-name: equatable
  dependency-version: 2.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cli-deps
- dependency-name: http
  dependency-version: 1.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cli-deps
- dependency-name: mason_logger
  dependency-version: 0.3.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cli-deps
- dependency-name: meta
  dependency-version: 1.18.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cli-deps
- dependency-name: stats
  dependency-version: 3.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: cli-deps
- dependency-name: test
  dependency-version: 1.31.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cli-deps
- dependency-name: very_good_analysis
  dependency-version: 10.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: cli-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dart Pull requests that update Dart code dependencies Pull requests that update a dependency file labels Mar 23, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Mar 30, 2026

Dependabot encountered an unknown error. Because of this, Dependabot cannot update this pull request.

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