Skip to content

chore(deps-dev): bump the dev-minor-patch group across 1 directory with 10 updates - #6

Merged
paulosfjunior merged 1 commit into
mainfrom
dependabot/npm_and_yarn/dev-minor-patch-c824023e60
Sep 20, 2026
Merged

paulosfjunior merged 1 commit into
mainfrom
dependabot/npm_and_yarn/dev-minor-patch-c824023e60

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 19, 2026 •

Copy link
Copy Markdown
Contributor

Bumps the dev-minor-patch group with 10 updates in the / directory:

Package From To
@biomejs/biome 2.5.13 2.5.14
@types/react 19.2.18 19.3.0
@types/react-dom 19.2.5 19.3.0
playwright 1.62.1 1.63.0
rollup 4.63.1 4.63.3
@angular/common 21.2.22 21.2.23
@angular/compiler 21.2.22 21.2.23
@angular/compiler-cli 21.2.22 21.2.23
@angular/core 21.2.22 21.2.23
zone.js 0.15.1 0.16.3

Updates @biomejs/biome from 2.5.13 to 2.5.14

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.5.14

2.5.14

Patch Changes

  • #9022 0d49e24 Thanks @​dyc3! - Added the nursery rule noReturnInFinally. This rule disallows return statements in Promise.prototype.finally() callbacks, including inside nested blocks and conditional branches. Returns in nested functions are ignored by the rule.

    // Invalid: return in finally callback
    Promise.resolve(1).finally(() => { return 2 })
    // Valid: no return in finally callback
    Promise.resolve(1).finally(() => { console.log(2) })

    Returning a value from a Promise.prototype.finally() callback does not replace the original promise's fulfillment value, which can be confusing. Returned promises and thenables are awaited, and their rejection rejects the resulting promise.

  • #11754 71eaa0d Thanks @​griff-rees! - Added the nursery rule noSvelteAtDebugTags, which disallows Svelte's {@debug} tag.

    <!-- Invalid: leftover debugging tag -->
    {@debug user}

    The {@debug} tag is a debugging aid and should be removed once you no longer need it, as it should not remain in production code. The rule provides a safe fix that removes the tag.

  • #11725 5eb5f09 Thanks @​m1handr! - Added the nursery rule useValidTestTitle, which enforces valid titles for unit test cases and suites.

  • #11735 9bd70c7 Thanks @​ematipico! - Fixed #8471: source.fixAll.biome ignored formatter.formatWithErrors. It now applies safe fixes without formatting files that have parse errors when the option is disabled.

  • #11715 f05a3c3 Thanks @​ematipico! - Fixed #7771: Grit plugins that use sequential no longer panic when Biome processes files.

  • #11766 c2542c6 Thanks @​dyc3! - Fixed validation of readonly and accessor modifiers: combining them in either order now reports that they cannot be used together.

  • #11461 22e9966 Thanks @​FoundDream! - Fixed #11423: Multiline template interpolations now preserve the indentation of their closing brace when the source indentation is not a multiple of tabWidth.

     const value = `
          ${
            condition
              ? "yes"
              : "no"
    -}
    +     }
     `;
  • #11766 c2542c6 Thanks @​dyc3! - Fixed #11763: TypeScript class members using override accessor, such as override accessor value = 1, now parse correctly. The reversed order, accessor override, now reports that override must precede accessor.

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.5.14

Patch Changes

  • #9022 0d49e24 Thanks @​dyc3! - Added the nursery rule noReturnInFinally. This rule disallows return statements in Promise.prototype.finally() callbacks, including inside nested blocks and conditional branches. Returns in nested functions are ignored by the rule.

    // Invalid: return in finally callback
    Promise.resolve(1).finally(() => { return 2 })
    // Valid: no return in finally callback
    Promise.resolve(1).finally(() => { console.log(2) })

    Returning a value from a Promise.prototype.finally() callback does not replace the original promise's fulfillment value, which can be confusing. Returned promises and thenables are awaited, and their rejection rejects the resulting promise.

  • #11754 71eaa0d Thanks @​griff-rees! - Added the nursery rule noSvelteAtDebugTags, which disallows Svelte's {@debug} tag.

    <!-- Invalid: leftover debugging tag -->
    {@debug user}

    The {@debug} tag is a debugging aid and should be removed once you no longer need it, as it should not remain in production code. The rule provides a safe fix that removes the tag.

  • #11725 5eb5f09 Thanks @​m1handr! - Added the nursery rule useValidTestTitle, which enforces valid titles for unit test cases and suites.

  • #11735 9bd70c7 Thanks @​ematipico! - Fixed #8471: source.fixAll.biome ignored formatter.formatWithErrors. It now applies safe fixes without formatting files that have parse errors when the option is disabled.

  • #11715 f05a3c3 Thanks @​ematipico! - Fixed #7771: Grit plugins that use sequential no longer panic when Biome processes files.

  • #11766 c2542c6 Thanks @​dyc3! - Fixed validation of readonly and accessor modifiers: combining them in either order now reports that they cannot be used together.

  • #11461 22e9966 Thanks @​FoundDream! - Fixed #11423: Multiline template interpolations now preserve the indentation of their closing brace when the source indentation is not a multiple of tabWidth.

     const value = `
          ${
            condition
              ? "yes"
              : "no"
    -}
    +     }
     `;
  • #11766 c2542c6 Thanks @​dyc3! - Fixed #11763: TypeScript class members using override accessor, such as override accessor value = 1, now parse correctly. The reversed order, accessor override, now reports that override must precede accessor.

  • #11790 17d0ff0 Thanks @​ematipico! - Fixed #10248: noUselessFragments now allows fragments with props in Astro files, such as <Fragment slot="name">{text}</Fragment> inside template expressions.

... (truncated)

Commits

Updates @types/react from 19.2.18 to 19.3.0

Commits

Updates @types/react-dom from 19.2.5 to 19.3.0

Commits

Updates playwright from 1.62.1 to 1.63.0

Release notes

Sourced from playwright's releases.

v1.63.0

🔒 Test locks

Tests that access a shared resource — an external service, a global account setting — can now declare a named lock. Tests that share a lock name never run concurrently, across files, workers and projects, while everything else keeps running in parallel:

test('update user settings', { lock: 'user-settings' }, async ({ page }) => {
  // never runs at the same time as other tests holding 'user-settings'
});

A test can hold multiple locks, and test.describe() accepts a lock for the whole group. Learn more about test locks.

🪟 Locate across frames

page.frameLocator() and frame.frameLocator() called without a selector search in any frame of the subtree, so you no longer need to locate the iframe first:

// Finds the button in any frame on the page.
await page.frameLocator().getByRole('button').click();

The rest of the locator resolves inside a single frame, just like a regular locator, and an error is thrown when it matches elements in several frames.

👁️ Visible-only locators

New locator.visible() returns a locator that matches only visible elements. It is the recommended replacement for the :visible CSS pseudo-class:

await page.locator('button').visible().click();

🧾 Step params and subtitles

Steps now carry structured data for reporters. Playwright API steps report the target locator and call arguments, and test.step() accepts subtitle and params options for your own steps:

await test.step('Login', async () => {
  // ...
}, { subtitle: 'as admin', params: { user: 'admin' } });

Reporters receive them via testStep.subtitle and testStep.params. For Playwright API

... (truncated)

Commits
  • 1b025d7 chore: mark v1.63.0 (#42569)
  • 0b9956d cherry-pick(#42568): docs(test): mark test.step subtitle option as since v1.63
  • 13dbf10 cherry-pick(#42552): docs: release notes for v1.63
  • e93b64e cherry-pick(#42566): feat(test): add subtitle option to test.step (#42567)
  • 2b7a5f2 test: response.body() for content-encoding:identity (#42537)
  • 648a67c fix(mcp): create parent directories for explicitly named files (#42540)
  • 7894f56 docs(mcp): clarify how tool file names are resolved (#42538)
  • 52900a1 devops: restore npm publishing from GitHub Actions (#42550)
  • 8c47f59 docs(csharp): fix nonexistent method names in guide examples (#42507)
  • bd6e552 chore(video): emit frames with real timestamps, drop frame number quantizatio...
  • Additional commits viewable in compare view

Updates rollup from 4.63.1 to 4.63.3

Release notes

Sourced from rollup's releases.

v4.63.3

4.63.3

2026-09-14

Bug Fixes

  • Make sure that the internal shims for basename and extname in the browser build fully match NodeJS (#6473)
  • Always report and recover from failures on invalidation in watch mode (#6506)
  • Respect windows line terminators when tree-shaking in situations where line-breaks need to be removed to prevent automatic semicolon insertion (#6514)

Pull Requests

v4.63.2

4.63.2

2026-09-12

Bug Fixes

  • Fix a bug when filtering logs for nested properties via the CLI (#6511)

Pull Requests

Changelog

Sourced from rollup's changelog.

4.63.3

2026-09-14

Bug Fixes

  • Make sure that the internal shims for basename and extname in the browser build fully match NodeJS (#6473)
  • Always report and recover from failures on invalidation in watch mode (#6506)
  • Respect windows line terminators when tree-shaking in situations where line-breaks need to be removed to prevent automatic semicolon insertion (#6514)

Pull Requests

4.63.2

2026-09-12

Bug Fixes

  • Fix a bug when filtering logs for nested properties via the CLI (#6511)

Pull Requests

Commits

Updates @angular/common from 21.2.22 to 21.2.23

Release notes

Sourced from @​angular/common's releases.

21.2.23

platform-server

Commit Description
fix - fc2e8fbc0b update domino to latest version
Changelog

Sourced from @​angular/common's changelog.

21.2.23 (2026-09-09)

platform-server

Commit Type Description
fc2e8fbc0b fix update domino to latest version

Commits

Updates @angular/compiler from 21.2.22 to 21.2.23

Release notes

Sourced from @​angular/compiler's releases.

21.2.23

platform-server

Commit Description
fix - fc2e8fbc0b update domino to latest version
Changelog

Sourced from @​angular/compiler's changelog.

21.2.23 (2026-09-09)

platform-server

Commit Type Description
fc2e8fbc0b fix update domino to latest version

Commits

Updates @angular/compiler-cli from 21.2.22 to 21.2.23

Release notes

Sourced from @​angular/compiler-cli's releases.

21.2.23

platform-server

Commit Description
fix - fc2e8fbc0b update domino to latest version
Changelog

Sourced from @​angular/compiler-cli's changelog.

21.2.23 (2026-09-09)

platform-server

Commit Type Description
fc2e8fbc0b fix update domino to latest version

Commits

Updates @angular/core from 21.2.22 to 21.2.23

Release notes

Sourced from @​angular/core's releases.

21.2.23

platform-server

Commit Description
fix - fc2e8fbc0b update domino to latest version
Changelog

Sourced from @​angular/core's changelog.

21.2.23 (2026-09-09)

platform-server

Commit Type Description
fc2e8fbc0b fix update domino to latest version

Commits

Updates zone.js from 0.15.1 to 0.16.3

Changelog

Sourced from zone.js's changelog.

0.16.3 (2026-09-02)

  • docs(zone.js): point the Bluebird link at the project repo (731c838)
  • fix(zone.js): preserve accessor and non-enumerable event listener options (4c4a705), closes #54142 #54142 #70431
  • ci: add Alan as a zone.js reviewer (5553699)
  • fix(zone.js): guard against null handle when detecting refreshable timers (36c2197), closes #70044
  • fix(zone.js): vitest patching of describe/it curried calls (e23541b), closes #69748
  • fix(zone.js): harden zoneSymbolEventNames and patches against proto key (2d33fd5)
  • fix(zone.js): harden zoneSymbolEventNames against proto key (defense-in-depth) (fd7c2da)
  • fix(zone.js): avoid type error on custom object rejection with rejection property (fa75800)
  • fix(zone.js): validate __Zone_symbol_prefix to prevent DOM clobbering attacks (e50f504)

0.16.2 (2026-05-06)

0.16.1 (2026-02-18)

  • fix(zone.js): support passthrough of Promise.try API (fc557f0), closes #67057

0.16.0 (2025-11-19)

BREAKING CHANGE

  • IE/Non-Chromium Edge are not supported anymore.
Commits
  • 124bf44 release: cut the zone.js-0.16.3 release
  • 4c4a705 fix(zone.js): preserve accessor and non-enumerable event listener options
  • 9cf7b44 build: remove explicit strict options
  • 731c838 docs(zone.js): point the Bluebird link at the project repo
  • 444b465 build: update cross-repo angular dependencies
  • c2d4070 build: update all non-major dependencies
  • 1426f5e build: update cross-repo angular dependencies
  • 671d8d3 build: update all non-major dependencies
  • c18261f build: enable stableTypeOrdering tsconfig flag
  • 732e505 fix(core): replace all hasOwnProperty usages with Object.hasOwn
  • Additional commits viewable in compare view

@dependabot @github

dependabot Bot commented on behalf of github Sep 19, 2026

Copy link
Copy Markdown
Contributor Author

Labels

The following labels could not be found: dependencies. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot dependabot Bot changed the title chore(deps-dev): bump the dev-minor-patch group with 10 updates chore(deps-dev): bump the dev-minor-patch group across 1 directory with 10 updates Sep 19, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/dev-minor-patch-c824023e60 branch from 0b87f7c to baad594 Compare September 19, 2026 20:54
@dependabot
dependabot Bot requested a review from paulosfjunior as a code owner September 19, 2026 20:54
@paulosfjunior

Copy link
Copy Markdown
Contributor

@dependabot rebase

@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/dev-minor-patch-c824023e60 branch from baad594 to 04da5e1 Compare September 19, 2026 23:44
@paulosfjunior

Copy link
Copy Markdown
Contributor

@dependabot rebase

@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/dev-minor-patch-c824023e60 branch from 04da5e1 to e26604d Compare September 20, 2026 00:04
…th 10 updates

Bumps the dev-minor-patch group with 10 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.5.13` | `2.5.14` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.2.18` | `19.3.0` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.2.5` | `19.3.0` |
| [playwright](https://github.com/microsoft/playwright) | `1.62.1` | `1.63.0` |
| [rollup](https://github.com/rollup/rollup) | `4.63.1` | `4.63.3` |
| [@angular/common](https://github.com/angular/angular/tree/HEAD/packages/common) | `21.2.22` | `21.2.23` |
| [@angular/compiler](https://github.com/angular/angular/tree/HEAD/packages/compiler) | `21.2.22` | `21.2.23` |
| [@angular/compiler-cli](https://github.com/angular/angular/tree/HEAD/packages/compiler-cli) | `21.2.22` | `21.2.23` |
| [@angular/core](https://github.com/angular/angular/tree/HEAD/packages/core) | `21.2.22` | `21.2.23` |
| [zone.js](https://github.com/angular/angular/tree/HEAD/packages/zone.js) | `0.15.1` | `0.16.3` |



Updates `@biomejs/biome` from 2.5.13 to 2.5.14
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.5.14/packages/@biomejs/biome)

Updates `@types/react` from 19.2.18 to 19.3.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

Updates `@types/react-dom` from 19.2.5 to 19.3.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `playwright` from 1.62.1 to 1.63.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.62.1...v1.63.0)

Updates `rollup` from 4.63.1 to 4.63.3
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.63.1...v4.63.3)

Updates `@angular/common` from 21.2.22 to 21.2.23
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/v21.2.23/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/v21.2.23/packages/common)

Updates `@angular/compiler` from 21.2.22 to 21.2.23
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/v21.2.23/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/v21.2.23/packages/compiler)

Updates `@angular/compiler-cli` from 21.2.22 to 21.2.23
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/v21.2.23/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/v21.2.23/packages/compiler-cli)

Updates `@angular/core` from 21.2.22 to 21.2.23
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/v21.2.23/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/v21.2.23/packages/core)

Updates `zone.js` from 0.15.1 to 0.16.3
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/packages/zone.js/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/zone.js-0.16.3/packages/zone.js)

---
updated-dependencies:
- dependency-name: "@angular/common"
  dependency-version: 21.2.23
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-minor-patch
- dependency-name: "@angular/compiler"
  dependency-version: 21.2.23
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-minor-patch
- dependency-name: "@angular/compiler-cli"
  dependency-version: 21.2.23
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-minor-patch
- dependency-name: "@angular/core"
  dependency-version: 21.2.23
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-minor-patch
- dependency-name: "@biomejs/biome"
  dependency-version: 2.5.14
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-minor-patch
- dependency-name: "@types/react"
  dependency-version: 19.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-minor-patch
- dependency-name: "@types/react-dom"
  dependency-version: 19.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-minor-patch
- dependency-name: playwright
  dependency-version: 1.63.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-minor-patch
- dependency-name: rollup
  dependency-version: 4.63.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-minor-patch
- dependency-name: zone.js
  dependency-version: 0.16.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/dev-minor-patch-c824023e60 branch from e26604d to ca28cab Compare September 20, 2026 00:08
@paulosfjunior
paulosfjunior merged commit 605d37e into main Sep 20, 2026
3 checks passed
@paulosfjunior
paulosfjunior deleted the dependabot/npm_and_yarn/dev-minor-patch-c824023e60 branch September 20, 2026 00:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant