Skip to content

chore(deps): bump meta from 1.15.0 to 1.18.2#2

Open
dependabot[bot] wants to merge 1 commit into
devfrom
dependabot/pub/meta-1.18.2
Open

chore(deps): bump meta from 1.15.0 to 1.18.2#2
dependabot[bot] wants to merge 1 commit into
devfrom
dependabot/pub/meta-1.18.2

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github May 23, 2026

Bumps meta from 1.15.0 to 1.18.2.

Changelog

Sourced from meta's changelog.

3.13.0

Released on: Unreleased

Language

Dart 3.13 adds [primary constructors][primary-constructor-spec] to the language. To use this feature, set your package's [SDK constraint][language version] lower bound to 3.13 or greater (sdk: '^3.13.0').

Primary constructors

The primary constructors feature is a brevity feature. There are no new semantics, but it lets you express declarations in a less verbose way.

This feature lets you specify one constructor and a set of instance variables in the header of a declaration.

Currently, you write a declaration with a constructor and some fields as:

// Current syntax.
class Point {
  int x;
  int y;
  Point(this.x, this.y);
}

Now you can write:

class Point(var int x, var int y);

If a primary constructor needs an initializer list, a body, or both, you can specify them inside the class using the this body syntax:

class Point(var int x, var int y) {
  this : assert(x >= 0) {
    print('Point created at $x, $y');
  }
}

As part of this feature, you can also use the new and factory keywords to declare constructors in the class body without repeating the class name:

</tr></table> 

... (truncated)

Commits

Dependabot compatibility score

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [meta](https://github.com/dart-lang/sdk/tree/main/pkg) from 1.15.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)

---
updated-dependencies:
- dependency-name: meta
  dependency-version: 1.18.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

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 May 23, 2026
@dependabot dependabot Bot requested a review from faisalaffan as a code owner May 23, 2026 14:04
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file dart Pull requests that update dart code labels May 23, 2026
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