chore(deps): update all non-major dependencies (minor) - #549
Open
renovate[bot] wants to merge 1 commit into
Open
renovate[bot] wants to merge 1 commit into
renovate[bot] wants to merge 1 commit into
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
renovate
Bot
force-pushed
the
renovate/all-minor-patch
branch
from
June 22, 2026 09:00
a308706 to
34dac43
Compare
renovate
Bot
force-pushed
the
renovate/all-minor-patch
branch
from
June 24, 2026 12:57
34dac43 to
6deff8c
Compare
renovate
Bot
force-pushed
the
renovate/all-minor-patch
branch
from
June 24, 2026 19:42
6deff8c to
c14f712
Compare
renovate
Bot
force-pushed
the
renovate/all-minor-patch
branch
from
June 24, 2026 23:02
c14f712 to
6e2845c
Compare
renovate
Bot
force-pushed
the
renovate/all-minor-patch
branch
from
June 25, 2026 23:30
6e2845c to
d707130
Compare
renovate
Bot
force-pushed
the
renovate/all-minor-patch
branch
from
June 29, 2026 16:08
d707130 to
7476b79
Compare
renovate
Bot
force-pushed
the
renovate/all-minor-patch
branch
from
July 5, 2026 23:49
7476b79 to
a97496a
Compare
renovate
Bot
force-pushed
the
renovate/all-minor-patch
branch
from
July 13, 2026 17:55
c6b97c4 to
0468a18
Compare
renovate
Bot
force-pushed
the
renovate/all-minor-patch
branch
from
July 13, 2026 21:00
0468a18 to
8452958
Compare
renovate
Bot
force-pushed
the
renovate/all-minor-patch
branch
from
July 15, 2026 00:13
8452958 to
3f6704c
Compare
renovate
Bot
force-pushed
the
renovate/all-minor-patch
branch
from
July 16, 2026 11:42
3f6704c to
3b0664e
Compare
renovate
Bot
force-pushed
the
renovate/all-minor-patch
branch
from
July 17, 2026 02:51
3b0664e to
e7cf752
Compare
renovate
Bot
force-pushed
the
renovate/all-minor-patch
branch
from
July 19, 2026 03:41
e7cf752 to
371ea77
Compare
renovate
Bot
force-pushed
the
renovate/all-minor-patch
branch
from
July 19, 2026 20:55
371ea77 to
ec08406
Compare
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^0.9.2→^0.10.11.60.0→1.63.0^14.3.0→^14.4.0v2.0.1→v2.5.0v0.1.1→v0.2.0Release Notes
nuxt-modules/critters (@nuxtjs/critters)
v0.10.1Compare Source
👉 Changelog
compare changes
🩹 Fixes
03f3ec8)❤️ Contributors
v0.10.0Compare Source
👉 Changelog
compare changes
🚀 Enhancements
🤖 CI
fd9b88f)ced5dc5)❤️ Contributors
microsoft/playwright (@playwright/test)
v1.63.0Compare Source
v1.62.1Compare Source
v1.62.0Compare Source
🧱 New component testing model
Component testing moves to a stories and galleries model.
A story wraps your component in one specific scenario — hard-coded props, mock data, providers — and a
gallery page that you serve renders stories on demand. The new fixtures.mount() fixture navigates
to the gallery, mounts a story by id, and returns a Locator scoped to the story's root element:
Pass a story type as a template argument to type-check its props, and use
update(props)/unmount()on the returned locator to re-render or tear down within a test.🛑 Cancel operations with AbortSignal
Most operations and web-first assertions now accept a
signaloption that takes anAbortSignal, letting youcancel long-running actions, navigations, waits, and assertions:
Providing a signal does not disable the default timeout; pass
timeout: 0to disable it.🖼️ WebP screenshots
expect(page).toHaveScreenshot() and expect(locator).toHaveScreenshot()
can now store snapshots in the WebP format — just give the snapshot a
.webpname:page.screenshot() and locator.screenshot() also accept
webpas atype,where quality
100(the default) is lossless and lower values use lossy compression.🧩 Custom test filtering with Reporter.preprocess()
New reporter.preprocess() hook runs after the configuration is resolved and before
reporter.onBegin(), letting a reporter mark individual tests as skipped, excluded,
fixed, or failing through a TestRun object:
🔁 Isolated retries
New testConfig.retryStrategy controls when failed tests are retried. The default
'immediate'retries as soon as a worker is free;'isolated'runs all retries at the end,one by one in a single worker, to minimize interference with the rest of the suite:
New APIs
Browser and Context
credentialsincludes the context's virtual WebAuthn Credentials (passkeys) in the storage state, so they can be persisted and re-seeded into later contexts.Actions
scrolloption ("auto"|"none") on actions to opt out of Playwright's automatic scroll-into-view.Network
Evaluation
Command line & MCP
playwright-cli, runnable vianpx playwright mcpandnpx playwright cli.Reporters
mergeFilesreporter option:Announcements
Browser Versions
This version was also tested against the following stable channels:
v1.61.1Compare Source
v1.61.0Compare Source
🔑 WebAuthn passkeys
New Credentials virtual authenticator, available via browserContext.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:You can also let the app register a passkey once in a setup test, read it back with credentials.get(), and seed it into later tests — see Credentials for details.
🗃️ Web Storage
New WebStorage API, available via page.localStorage and page.sessionStorage, reads and writes the page's storage for the current origin:
New APIs
Network
Browser and Screencast
artifactsDirin browserType.connectOverCDP() controls where artifacts such as traces and downloads are stored when attached to an existing browser.cursorin screencast.showActions() controls the cursor decoration rendered for pointer actions.onFramecallback in screencast.start() now receives atimestampof when the frame was presented by the browser.Test runner
trace: new'on-all-retries','retain-on-first-failure'and'retain-on-failure-and-retries'values. See the video modes table for which runs are recorded and kept in each mode.expect.soft.poll(...).process.argvfrom the runner process, handy for reading custom arguments passed after the--separator.AggregateErroras a separate entry.-Gcommand line shorthand for--grep-invert.🛠️ Other improvements
Browser Versions
This version was also tested against the following stable channels:
vueuse/vueuse (@vueuse/nuxt)
v14.4.0Compare Source
🚀 Features
useColorModeauto import if@nuxtjs/color-modeis detected - by @OrbisK in #5476 (60687)onStartTyping- by @LightQuanta and @9romise in #5395 (1f2b7)behavior,blockandinlineto exposed scrollTo method - by @laurens94, @OrbisK, @43081j and @ilyaliao in #4905 (01875)🐞 Bug Fixes
PUREannotation to avoid Rollup warning - by @serkodev and @9romise in #5388 (16933)tryOnScopeDisposeto avoid operating Vue internal API - by @liangmiQwQ in #5548 (2cad7)View changes on GitHub
MatteoGabriele/agentscan-action (MatteoGabriele/agentscan-action)
v2.5.0Compare Source
Identity update:
Full Changelog: MatteoGabriele/agentscan-action@v2.4.0...v2.5.0
v2.4.0Compare Source
What's Changed
New Contributors
Full Changelog: MatteoGabriele/agentscan-action@v2.3.0...v2.4.0
v2.3.0Compare Source
What's Changed
Full Changelog: MatteoGabriele/agentscan-action@v2.2.0...v2.3.0
v2.2.0Compare Source
What's Changed
Full Changelog: MatteoGabriele/agentscan-action@v2.1.0...v2.2.0
v2.1.0Compare Source
What's Changed
Full Changelog: MatteoGabriele/agentscan-action@v2.0.1...v2.1.0
danielroe/provenance-action (danielroe/provenance-action)
v0.2.0Compare Source
compare changes
🚀 Enhancements
📖 Documentation
🏡 Chore
✅ Tests
🤖 CI
❤️ Contributors
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ 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 if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.