Commit 7f63a40
authored
chore(deps): update all non-major dependencies (minor) (#8738)
This PR contains the following updates:
| Package | Change |
[Age](https://docs.renovatebot.com/merge-confidence/) |
[Confidence](https://docs.renovatebot.com/merge-confidence/) |
|---|---|---|---|
| [@playwright/experimental-ct-react](https://playwright.dev)
([source](https://redirect.github.com/microsoft/playwright)) | [`1.60.0`
→
`1.61.1`](https://renovatebot.com/diffs/npm/@playwright%2fexperimental-ct-react/1.60.0/1.61.1)
|

|

|
| [@playwright/test](https://playwright.dev)
([source](https://redirect.github.com/microsoft/playwright)) | [`1.60.0`
→
`1.61.1`](https://renovatebot.com/diffs/npm/@playwright%2ftest/1.60.0/1.61.1)
|

|

|
|
[@types/node](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node)
([source](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node))
| [`24.12.4` →
`24.13.2`](https://renovatebot.com/diffs/npm/@types%2fnode/24.12.4/24.13.2)
|

|

|
| [chromatic](https://www.chromatic.com)
([source](https://redirect.github.com/chromaui/chromatic-cli)) |
[`17.1.0` →
`17.7.1`](https://renovatebot.com/diffs/npm/chromatic/17.1.0/17.7.1) |

|

|
| [cypress](https://cypress.io)
([source](https://redirect.github.com/cypress-io/cypress)) | [`15.16.0`
→ `15.18.0`](https://renovatebot.com/diffs/npm/cypress/15.16.0/15.18.0)
|

|

|
| [globals](https://redirect.github.com/sindresorhus/globals) |
[`17.6.0` →
`17.7.0`](https://renovatebot.com/diffs/npm/globals/17.6.0/17.7.0) |

|

|
|
[monocart-reporter](https://redirect.github.com/cenfun/monocart-reporter)
| [`2.11.3` →
`2.12.0`](https://renovatebot.com/diffs/npm/monocart-reporter/2.11.3/2.12.0)
|

|

|
|
[typescript-eslint](https://typescript-eslint.io/packages/typescript-eslint)
([source](https://redirect.github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint))
| [`8.60.1` →
`8.62.0`](https://renovatebot.com/diffs/npm/typescript-eslint/8.60.1/8.62.0)
|

|

|
| [vite](https://vite.dev)
([source](https://redirect.github.com/vitejs/vite/tree/HEAD/packages/vite))
| [`8.0.16` →
`8.1.0`](https://renovatebot.com/diffs/npm/vite/8.0.16/8.1.0) |

|

|
| [yarn](https://redirect.github.com/yarnpkg/berry)
([source](https://redirect.github.com/yarnpkg/berry/tree/HEAD/packages/yarnpkg-cli))
| [`4.15.0` →
`4.17.0`](https://renovatebot.com/diffs/npm/yarn/4.15.0/4.17.0) |

|

|
---
### Release Notes
<details>
<summary>microsoft/playwright
(@​playwright/experimental-ct-react)</summary>
###
[`v1.61.1`](https://redirect.github.com/microsoft/playwright/compare/v1.61.0...39e3553a4f283a41134d75d7e404484bd9e6865a)
[Compare
Source](https://redirect.github.com/microsoft/playwright/compare/v1.61.0...v1.61.1)
###
[`v1.61.0`](https://redirect.github.com/microsoft/playwright/releases/tag/v1.61.0)
[Compare
Source](https://redirect.github.com/microsoft/playwright/compare/v1.60.0...v1.61.0)
##### 🔑 WebAuthn passkeys
New [Credentials](https://playwright.dev/docs/api/class-credentials)
virtual authenticator, available via
[browserContext.credentials](https://playwright.dev/docs/api/class-browsercontext#browser-context-credentials),
lets tests register passkeys and answer `navigator.credentials.create()`
/ `navigator.credentials.get()` ceremonies in the page — no real
hardware key required, works in all browsers:
```js
const context = await browser.newContext();
// Seed a passkey your backend provisioned for a test user.
await context.credentials.create('example.com', {
id: credentialId,
userHandle,
privateKey,
publicKey,
});
await context.credentials.install();
const page = await context.newPage();
await page.goto('https://example.com/login');
// The page's navigator.credentials.get() is answered with the seeded passkey.
```
You can also let the app register a passkey once in a setup test, read
it back with
[credentials.get()](https://playwright.dev/docs/api/class-credentials#credentials-get),
and seed it into later tests — see
[Credentials](https://playwright.dev/docs/api/class-credentials) for
details.
##### 🗃️ Web Storage
New [WebStorage](https://playwright.dev/docs/api/class-webstorage) API,
available via
[page.localStorage](https://playwright.dev/docs/api/class-page#page-local-storage)
and
[page.sessionStorage](https://playwright.dev/docs/api/class-page#page-session-storage),
reads and writes the page's storage for the current origin:
```js
await page.localStorage.setItem('token', 'abc');
const token = await page.localStorage.getItem('token');
const items = await page.sessionStorage.items();
```
##### New APIs
##### Network
-
[apiResponse.securityDetails()](https://playwright.dev/docs/api/class-apiresponse#api-response-security-details)
and
[apiResponse.serverAddr()](https://playwright.dev/docs/api/class-apiresponse#api-response-server-addr)
mirror the browser-side
[response.securityDetails()](https://playwright.dev/docs/api/class-response#response-security-details)
and
[response.serverAddr()](https://playwright.dev/docs/api/class-response#response-server-addr).
##### Browser and Screencast
- New option `artifactsDir` in
[browserType.connectOverCDP()](https://playwright.dev/docs/api/class-browsertype#browser-type-connect-over-cdp)
controls where artifacts such as traces and downloads are stored when
attached to an existing browser.
- New option `cursor` in
[screencast.showActions()](https://playwright.dev/docs/api/class-screencast#screencast-show-actions)
controls the cursor decoration rendered for pointer actions.
- The `onFrame` callback in
[screencast.start()](https://playwright.dev/docs/api/class-screencast#screencast-start)
now receives a `timestamp` of when the frame was presented by the
browser.
##### Test runner
- The
[testOptions.video](https://playwright.dev/docs/api/class-testoptions#test-options-video)
option now supports the same set of modes as `trace`: new
`'on-all-retries'`, `'retain-on-first-failure'` and
`'retain-on-failure-and-retries'` values. See the [video modes
table](https://playwright.dev/docs/test-use-options#video-modes) for
which runs are recorded and kept in each mode.
- Supported `expect.soft.poll(...)`.
- New
[fullConfig.argv](https://playwright.dev/docs/api/class-fullconfig#full-config-argv)
— a snapshot of `process.argv` from the runner process, handy for
reading custom arguments passed after the `--` separator.
- New
[fullConfig.failOnFlakyTests](https://playwright.dev/docs/api/class-fullconfig#full-config-fail-on-flaky-tests)
mirrors the config option, so reporters can explain why a flaky run
failed.
-
[testInfo.errors](https://playwright.dev/docs/api/class-testinfo#test-info-errors)
now lists each sub-error of an `AggregateError` as a separate entry.
- New `-G` command line shorthand for `--grep-invert`.
##### 🛠️ Other improvements
- Playwright now supports Ubuntu 26.04.
- HAR and trace recordings now include WebSocket requests.
##### Browser Versions
- Chromium 149.0.7827.55
- Mozilla Firefox 151.0
- WebKit 26.5
This version was also tested against the following stable channels:
- Google Chrome 149
- Microsoft Edge 149
</details>
<details>
<summary>chromaui/chromatic-cli (chromatic)</summary>
###
[`v17.7.1`](https://redirect.github.com/chromaui/chromatic-cli/blob/HEAD/CHANGELOG.md#v1771-Thu-Jun-25-2026)
[Compare
Source](https://redirect.github.com/chromaui/chromatic-cli/compare/v17.7.0...v17.7.1)
##### 🐛 Bug Fix
- React Native: Parse build command from config file
[#​1405](https://redirect.github.com/chromaui/chromatic-cli/pull/1405)
([@​codykaup](https://redirect.github.com/codykaup))
##### Authors: 1
- Cody Kaup ([@​codykaup](https://redirect.github.com/codykaup))
***
###
[`v17.7.0`](https://redirect.github.com/chromaui/chromatic-cli/blob/HEAD/CHANGELOG.md#v1770-Thu-Jun-25-2026)
[Compare
Source](https://redirect.github.com/chromaui/chromatic-cli/compare/v17.6.0...v17.7.0)
##### 🚀 Enhancement
- Skip upload, verify, and snapshot tasks when detecting no changes from
TurboSnap
[#​1394](https://redirect.github.com/chromaui/chromatic-cli/pull/1394)
([@​codykaup](https://redirect.github.com/codykaup))
##### Authors: 1
- Cody Kaup ([@​codykaup](https://redirect.github.com/codykaup))
***
###
[`v17.6.0`](https://redirect.github.com/chromaui/chromatic-cli/blob/HEAD/CHANGELOG.md#v1760-Wed-Jun-24-2026)
[Compare
Source](https://redirect.github.com/chromaui/chromatic-cli/compare/v17.5.0...v17.6.0)
##### 🚀 Enhancement
- Automatically upload metadata files on TurboSnap bails
[#​1400](https://redirect.github.com/chromaui/chromatic-cli/pull/1400)
([@​codykaup](https://redirect.github.com/codykaup))
- Log untraced files and its matching glob
[#​1403](https://redirect.github.com/chromaui/chromatic-cli/pull/1403)
([@​codykaup](https://redirect.github.com/codykaup))
- Show full trace path to bail file reason
[#​1401](https://redirect.github.com/chromaui/chromatic-cli/pull/1401)
([@​codykaup](https://redirect.github.com/codykaup))
##### Authors: 1
- Cody Kaup ([@​codykaup](https://redirect.github.com/codykaup))
***
###
[`v17.5.0`](https://redirect.github.com/chromaui/chromatic-cli/blob/HEAD/CHANGELOG.md#v1750-Wed-Jun-17-2026)
[Compare
Source](https://redirect.github.com/chromaui/chromatic-cli/compare/v17.4.1...v17.5.0)
##### 🚀 Enhancement
- Add context around file adds/moves in `BaselineCheckoutFailedError`
bails
[#​1391](https://redirect.github.com/chromaui/chromatic-cli/pull/1391)
([@​codykaup](https://redirect.github.com/codykaup))
##### Authors: 1
- Cody Kaup ([@​codykaup](https://redirect.github.com/codykaup))
***
###
[`v17.4.1`](https://redirect.github.com/chromaui/chromatic-cli/blob/HEAD/CHANGELOG.md#v1741-Thu-Jun-11-2026)
[Compare
Source](https://redirect.github.com/chromaui/chromatic-cli/compare/v17.4.0...v17.4.1)
##### 🐛 Bug Fix
- fix: e2e build command ignores arguments when used with npm
[#​1385](https://redirect.github.com/chromaui/chromatic-cli/pull/1385)
([@​sentience](https://redirect.github.com/sentience)
[@​AriPerkkio](https://redirect.github.com/AriPerkkio)
[@​jmhobbs](https://redirect.github.com/jmhobbs))
##### Authors: 3
- Ari Perkkiö
([@​AriPerkkio](https://redirect.github.com/AriPerkkio))
- John Hobbs ([@​jmhobbs](https://redirect.github.com/jmhobbs))
- Kevin Yank
([@​sentience](https://redirect.github.com/sentience))
***
###
[`v17.4.0`](https://redirect.github.com/chromaui/chromatic-cli/blob/HEAD/CHANGELOG.md#v1740-Tue-Jun-09-2026)
[Compare
Source](https://redirect.github.com/chromaui/chromatic-cli/compare/v17.3.0...v17.4.0)
##### 🚀 Enhancement
- Add additional bail details to `invalidChangedFiles`
[#​1355](https://redirect.github.com/chromaui/chromatic-cli/pull/1355)
([@​codykaup](https://redirect.github.com/codykaup))
##### 🐛 Bug Fix
- Update Codecov to fix GPG issue
[#​1387](https://redirect.github.com/chromaui/chromatic-cli/pull/1387)
([@​codykaup](https://redirect.github.com/codykaup))
##### Authors: 1
- Cody Kaup ([@​codykaup](https://redirect.github.com/codykaup))
***
###
[`v17.3.0`](https://redirect.github.com/chromaui/chromatic-cli/blob/HEAD/CHANGELOG.md#v1730-Fri-Jun-05-2026)
[Compare
Source](https://redirect.github.com/chromaui/chromatic-cli/compare/v17.2.0...v17.3.0)
##### 🚀 Enhancement
- 🔧 Add a configuration parameter that controls git timeout.
[#​1371](https://redirect.github.com/chromaui/chromatic-cli/pull/1371)
([@​jwir3](https://redirect.github.com/jwir3))
##### 🐛 Bug Fix
- Remove unused `subdir` directory
[#​1381](https://redirect.github.com/chromaui/chromatic-cli/pull/1381)
([@​codykaup](https://redirect.github.com/codykaup))
- Increase Sentry message length
[#​1380](https://redirect.github.com/chromaui/chromatic-cli/pull/1380)
([@​codykaup](https://redirect.github.com/codykaup))
- Bump `typescript-eslint` to fix TypeScript warning
[#​1373](https://redirect.github.com/chromaui/chromatic-cli/pull/1373)
([@​codykaup](https://redirect.github.com/codykaup))
- Drop `slash` dependency for internal helper
[#​1374](https://redirect.github.com/chromaui/chromatic-cli/pull/1374)
([@​codykaup](https://redirect.github.com/codykaup))
- `react-native-build`: Don't overwrite artifacts without permission.
[#​1364](https://redirect.github.com/chromaui/chromatic-cli/pull/1364)
([@​jmhobbs](https://redirect.github.com/jmhobbs))
- Set `patch` label for Dependabot PRs
[#​1370](https://redirect.github.com/chromaui/chromatic-cli/pull/1370)
([@​codykaup](https://redirect.github.com/codykaup))
- Update Dependabot to skip test fixture dependencies
[#​1363](https://redirect.github.com/chromaui/chromatic-cli/pull/1363)
([@​codykaup](https://redirect.github.com/codykaup))
##### Authors: 3
- Cody Kaup ([@​codykaup](https://redirect.github.com/codykaup))
- John Hobbs ([@​jmhobbs](https://redirect.github.com/jmhobbs))
- Scott Johnson ([@​jwir3](https://redirect.github.com/jwir3))
***
###
[`v17.2.0`](https://redirect.github.com/chromaui/chromatic-cli/blob/HEAD/CHANGELOG.md#v1720-Mon-Jun-01-2026)
[Compare
Source](https://redirect.github.com/chromaui/chromatic-cli/compare/v17.1.0...v17.2.0)
##### 🚀 Enhancement
- Join individual bail subreasons into a single field
[#​1357](https://redirect.github.com/chromaui/chromatic-cli/pull/1357)
([@​codykaup](https://redirect.github.com/codykaup))
##### Authors: 1
- Cody Kaup ([@​codykaup](https://redirect.github.com/codykaup))
***
</details>
<details>
<summary>cypress-io/cypress (cypress)</summary>
###
[`v15.18.0`](https://redirect.github.com/cypress-io/cypress/releases/tag/v15.18.0)
[Compare
Source](https://redirect.github.com/cypress-io/cypress/compare/v15.17.0...v15.18.0)
Changelog: <https://docs.cypress.io/app/references/changelog#15-18-0>
###
[`v15.17.0`](https://redirect.github.com/cypress-io/cypress/releases/tag/v15.17.0)
[Compare
Source](https://redirect.github.com/cypress-io/cypress/compare/v15.16.0...v15.17.0)
Changelog: <https://docs.cypress.io/app/references/changelog#15-17-0>
</details>
<details>
<summary>sindresorhus/globals (globals)</summary>
###
[`v17.7.0`](https://redirect.github.com/sindresorhus/globals/compare/v17.6.0...a19670cc86c1218e915657c55ea02ba3e7623834)
[Compare
Source](https://redirect.github.com/sindresorhus/globals/compare/v17.6.0...v17.7.0)
</details>
<details>
<summary>cenfun/monocart-reporter (monocart-reporter)</summary>
###
[`v2.12.0`](https://redirect.github.com/cenfun/monocart-reporter/releases/tag/2.12.0)
[Compare
Source](https://redirect.github.com/cenfun/monocart-reporter/compare/2.11.3...2.12.0)
#### What's Changed
- (Breaking) nodemailer is no longer a built-in dependency, please run
`npm install nodemailer` to use the email feature; added a friendly
error prompt when nodemailer is not installed
- feat: Alert for trace viewer when not online by
[@​jack5github](https://redirect.github.com/jack5github) in
[#​198](https://redirect.github.com/cenfun/monocart-reporter/pull/198)
**Full Changelog**:
<cenfun/monocart-reporter@2.11.3...2.12.0>
</details>
<details>
<summary>typescript-eslint/typescript-eslint
(typescript-eslint)</summary>
###
[`v8.62.0`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/typescript-eslint/CHANGELOG.md#8620-2026-06-22)
[Compare
Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v8.61.1...v8.62.0)
##### 🚀 Features
- remove redundant package.json "files"
([#​12444](https://redirect.github.com/typescript-eslint/typescript-eslint/pull/12444))
##### ❤️ Thank You
- Kirk Waiblinger
[@​kirkwaiblinger](https://redirect.github.com/kirkwaiblinger)
See [GitHub
Releases](https://redirect.github.com/typescript-eslint/typescript-eslint/releases/tag/v8.62.0)
for more information.
You can read about our [versioning
strategy](https://typescript-eslint.io/users/versioning) and
[releases](https://typescript-eslint.io/users/releases) on our website.
###
[`v8.61.1`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/typescript-eslint/CHANGELOG.md#8611-2026-06-15)
[Compare
Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v8.61.0...v8.61.1)
This was a version bump only for typescript-eslint to align it with
other projects, there were no code changes.
See [GitHub
Releases](https://redirect.github.com/typescript-eslint/typescript-eslint/releases/tag/v8.61.1)
for more information.
You can read about our [versioning
strategy](https://typescript-eslint.io/users/versioning) and
[releases](https://typescript-eslint.io/users/releases) on our website.
###
[`v8.61.0`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/typescript-eslint/CHANGELOG.md#8610-2026-06-08)
[Compare
Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v8.60.1...v8.61.0)
This was a version bump only for typescript-eslint to align it with
other projects, there were no code changes.
See [GitHub
Releases](https://redirect.github.com/typescript-eslint/typescript-eslint/releases/tag/v8.61.0)
for more information.
You can read about our [versioning
strategy](https://typescript-eslint.io/users/versioning) and
[releases](https://typescript-eslint.io/users/releases) on our website.
</details>
<details>
<summary>vitejs/vite (vite)</summary>
###
[`v8.1.0`](https://redirect.github.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#810-2026-06-23)
[Compare
Source](https://redirect.github.com/vitejs/vite/compare/v8.0.16...v8.1.0)
##### Features
- extend `server.fs.deny` list with common files
([#​22707](https://redirect.github.com/vitejs/vite/issues/22707))
([61ba8fd](https://redirect.github.com/vitejs/vite/commit/61ba8fdc6500e8aa668021833ae5e6ebd200466d))
- update rolldown to 1.1.2
([#​22695](https://redirect.github.com/vitejs/vite/issues/22695))
([4f008a6](https://redirect.github.com/vitejs/vite/commit/4f008a6213014fe5e898f42561bdc621e103903e))
- use `~` for Rolldown
([#​22693](https://redirect.github.com/vitejs/vite/issues/22693))
([9928722](https://redirect.github.com/vitejs/vite/commit/9928722f7d08de27907c48b65ddc071244166e05))
##### Bug Fixes
- **bundled-dev:** errors should be kept when incremental build fails
([#​22617](https://redirect.github.com/vitejs/vite/issues/22617))
([9a0dd48](https://redirect.github.com/vitejs/vite/commit/9a0dd481ac2160078b8173879e0fa86e5e6af05d))
- cache falsy values in perEnvironmentState
([#​22715](https://redirect.github.com/vitejs/vite/issues/22715))
([0e91e79](https://redirect.github.com/vitejs/vite/commit/0e91e79841b501d29dc86a6b7c0313660781196a))
- **glob:** respect caseSensitive option in hmr matcher
([#​22711](https://redirect.github.com/vitejs/vite/issues/22711))
([65f525e](https://redirect.github.com/vitejs/vite/commit/65f525e643ba31faeaeafbc5d888b61465e6b48d))
- **html:** omit nonce on import map when cspNonce is unset
([#​22713](https://redirect.github.com/vitejs/vite/issues/22713))
([8340bb5](https://redirect.github.com/vitejs/vite/commit/8340bb51cab703427a13d5df40b0005352c1b676))
- **optimizer:** skip null-valued exports in expandGlobIds glob
resolution
([#​22611](https://redirect.github.com/vitejs/vite/issues/22611))
([8b9f5cd](https://redirect.github.com/vitejs/vite/commit/8b9f5cd9f19f6002e1323b10155ab943219e86aa))
- resolved build options should be kept as a getter
([#​22691](https://redirect.github.com/vitejs/vite/issues/22691))
([3527191](https://redirect.github.com/vitejs/vite/commit/3527191cad6c935a3d129506cc9a893c84009037))
- **server:** handle malformed URI in memory files middleware
([#​22714](https://redirect.github.com/vitejs/vite/issues/22714))
([df9e0a5](https://redirect.github.com/vitejs/vite/commit/df9e0a589ff64e09c32beca9494bff4757d4ea37))
- use literal envPrefix queries for Vite Task
([#​22706](https://redirect.github.com/vitejs/vite/issues/22706))
([da72733](https://redirect.github.com/vitejs/vite/commit/da727337b13ac6144e523eb06852b2a52c377f22))
- warn on deprecated envFile
([#​22555](https://redirect.github.com/vitejs/vite/issues/22555))
([ed7b283](https://redirect.github.com/vitejs/vite/commit/ed7b28352e347dc7c95d590d2e696c3e5bd1e3d7))
##### Code Refactoring
- **client:** inline dev-id value in CSS selector
([#​22736](https://redirect.github.com/vitejs/vite/issues/22736))
([57f59bc](https://redirect.github.com/vitejs/vite/commit/57f59bc843dd527a81c503684b7f408872edaef3))
- remove unused removeRawQuery util
([#​22724](https://redirect.github.com/vitejs/vite/issues/22724))
([403cc60](https://redirect.github.com/vitejs/vite/commit/403cc608e4e8633b0335f5e8221c83dfca4994f8))
- use `rolldownOptions` property for chunkImportMap
([#​22692](https://redirect.github.com/vitejs/vite/issues/22692))
([8e8816c](https://redirect.github.com/vitejs/vite/commit/8e8816ca9fa249d210150c5590bac06af3560aa7))
</details>
<details>
<summary>yarnpkg/berry (yarn)</summary>
###
[`v4.17.0`](https://redirect.github.com/yarnpkg/berry/releases/tag/%40yarnpkg/cli/4.17.0):
v4.17.0
[Compare
Source](https://redirect.github.com/yarnpkg/berry/compare/5761b03feb2146da8ce8cefeba6482f3cb6edb79...2d9ef22423bee7824327272ebdd60f336a3cf82c)
#### What's Changed
- Adds support for package map generation by
[@​arcanis](https://redirect.github.com/arcanis) in
[#​7184](https://redirect.github.com/yarnpkg/berry/pull/7184)
- fix: add catalog settings to yarnrc schema by
[@​cyphercodes](https://redirect.github.com/cyphercodes) in
[#​7179](https://redirect.github.com/yarnpkg/berry/pull/7179)
- docs: clarify background job exit codes by
[@​StantonMatt](https://redirect.github.com/StantonMatt) in
[#​7167](https://redirect.github.com/yarnpkg/berry/pull/7167)
- fix: explain peer-default dependencies in why by
[@​StantonMatt](https://redirect.github.com/StantonMatt) in
[#​7168](https://redirect.github.com/yarnpkg/berry/pull/7168)
- Docs: fix npmMinimalAgeGate default by
[@​clemyan](https://redirect.github.com/clemyan) in
[#​7181](https://redirect.github.com/yarnpkg/berry/pull/7181)
- feat(plugin-npm): allow npmMinimalAgeGate per npmScope by
[@​erlandasz](https://redirect.github.com/erlandasz) in
[#​7156](https://redirect.github.com/yarnpkg/berry/pull/7156)
#### New Contributors
- [@​cyphercodes](https://redirect.github.com/cyphercodes) made
their first contribution in
[#​7179](https://redirect.github.com/yarnpkg/berry/pull/7179)
- [@​StantonMatt](https://redirect.github.com/StantonMatt) made
their first contribution in
[#​7167](https://redirect.github.com/yarnpkg/berry/pull/7167)
- [@​erlandasz](https://redirect.github.com/erlandasz) made their
first contribution in
[#​7156](https://redirect.github.com/yarnpkg/berry/pull/7156)
**Full Changelog**:
<https://github.com/yarnpkg/berry/compare/@yarnpkg/cli/4.16.0...@​yarnpkg/cli/4.17.0>
###
[`v4.16.0`](https://redirect.github.com/yarnpkg/berry/releases/tag/%40yarnpkg/cli/4.16.0):
v4.16.0
[Compare
Source](https://redirect.github.com/yarnpkg/berry/compare/1c018491889b40f4f36d36dee2c7a9032fb862d9...5761b03feb2146da8ce8cefeba6482f3cb6edb79)
#### What's Changed
- PnP: Include Node 22.22.3 in fstat workaround by
[@​junjuny0227](https://redirect.github.com/junjuny0227) in
[#​7141](https://redirect.github.com/yarnpkg/berry/pull/7141)
- Implements yarn npm stage by
[@​arcanis](https://redirect.github.com/arcanis) in
[#​7147](https://redirect.github.com/yarnpkg/berry/pull/7147)
- fix: Stop using EBADF workaround for Node 24.16.0+ by
[@​MJDSys](https://redirect.github.com/MJDSys) in
[#​7152](https://redirect.github.com/yarnpkg/berry/pull/7152)
- Bumps eslint-plugin-arca by
[@​arcanis](https://redirect.github.com/arcanis) in
[#​7163](https://redirect.github.com/yarnpkg/berry/pull/7163)
- Enables staged publishing by
[@​arcanis](https://redirect.github.com/arcanis) in
[#​7164](https://redirect.github.com/yarnpkg/berry/pull/7164)
- feat: Add editor SDK support for oxc (oxfmt & oxlint) by
[@​slainless](https://redirect.github.com/slainless) in
[#​7078](https://redirect.github.com/yarnpkg/berry/pull/7078)
- docs: fix npmMinimalAgeGate default value. by
[@​ryanfox1985](https://redirect.github.com/ryanfox1985) in
[#​7125](https://redirect.github.com/yarnpkg/berry/pull/7125)
#### New Contributors
- [@​junjuny0227](https://redirect.github.com/junjuny0227) made
their first contribution in
[#​7141](https://redirect.github.com/yarnpkg/berry/pull/7141)
- [@​MJDSys](https://redirect.github.com/MJDSys) made their first
contribution in
[#​7152](https://redirect.github.com/yarnpkg/berry/pull/7152)
- [@​slainless](https://redirect.github.com/slainless) made their
first contribution in
[#​7078](https://redirect.github.com/yarnpkg/berry/pull/7078)
- [@​ryanfox1985](https://redirect.github.com/ryanfox1985) made
their first contribution in
[#​7125](https://redirect.github.com/yarnpkg/berry/pull/7125)
**Full Changelog**:
<https://github.com/yarnpkg/berry/compare/@yarnpkg/cli/4.15.0...@​yarnpkg/cli/4.16.0>
</details>
---
### Configuration
📅 **Schedule**: (UTC)
- Branch creation
- Between 12:00 AM and 03:59 AM, only on Monday (`* 0-3 * * 1`)
- Automerge
- At any time (no schedule defined)
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/UI5/webcomponents-react).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yNDIuMiIsInVwZGF0ZWRJblZlciI6IjQzLjI0Mi4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>1 parent 76e63cc commit 7f63a40
5 files changed
Lines changed: 1148 additions & 1235 deletions
This file was deleted.
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | | - | |
| 2 | + | |
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
68 | 68 | | |
69 | 69 | | |
70 | 70 | | |
71 | | - | |
72 | | - | |
| 71 | + | |
| 72 | + | |
73 | 73 | | |
74 | 74 | | |
75 | 75 | | |
76 | | - | |
| 76 | + | |
77 | 77 | | |
78 | 78 | | |
79 | 79 | | |
80 | 80 | | |
81 | | - | |
| 81 | + | |
82 | 82 | | |
83 | | - | |
| 83 | + | |
84 | 84 | | |
85 | 85 | | |
86 | 86 | | |
| |||
94 | 94 | | |
95 | 95 | | |
96 | 96 | | |
97 | | - | |
| 97 | + | |
98 | 98 | | |
99 | 99 | | |
100 | 100 | | |
101 | | - | |
| 101 | + | |
102 | 102 | | |
103 | 103 | | |
104 | 104 | | |
| |||
109 | 109 | | |
110 | 110 | | |
111 | 111 | | |
112 | | - | |
113 | | - | |
| 112 | + | |
| 113 | + | |
114 | 114 | | |
115 | 115 | | |
116 | 116 | | |
| |||
149 | 149 | | |
150 | 150 | | |
151 | 151 | | |
152 | | - | |
| 152 | + | |
153 | 153 | | |
0 commit comments