fix(deps): update frontend dependencies - #646
Open
renovate-sh-app[bot] wants to merge 1 commit into
Open
Conversation
Contributor
Author
|
renovate-sh-app
Bot
force-pushed
the
renovate/frontend-dependencies
branch
11 times, most recently
from
September 6, 2026 15:06
05c2b95 to
12a84f4
Compare
renovate-sh-app
Bot
force-pushed
the
renovate/frontend-dependencies
branch
8 times, most recently
from
September 11, 2026 09:03
b305bee to
698d1ad
Compare
| datasource | package | from | to | | ---------- | -------------------------------- | ------- | ------- | | npm | @grafana/data | 13.1.1 | 13.2.1 | | npm | @grafana/e2e-selectors | 13.1.1 | 13.2.1 | | npm | @grafana/plugin-e2e | 3.11.0 | 3.12.0 | | npm | @grafana/plugin-ui | 0.17.3 | 0.17.4 | | npm | @grafana/runtime | 13.1.1 | 13.2.1 | | npm | @grafana/schema | 13.1.1 | 13.2.1 | | npm | @grafana/ui | 13.1.1 | 13.2.1 | | npm | @openfeature/core | 1.11.0 | 1.12.0 | | npm | @openfeature/web-sdk | 1.9.0 | 1.10.0 | | npm | @playwright/test | 1.61.1 | 1.63.0 | | npm | @remix-run/router | 1.23.3 | 1.23.4 | | npm | @swc/core | 1.15.46 | 1.16.2 | | npm | @types/node | 25.9.5 | 25.9.6 | | npm | @typescript-eslint/eslint-plugin | 8.64.0 | 8.70.0 | | npm | @typescript-eslint/parser | 8.64.0 | 8.70.0 | | npm | cspell | 10.0.1 | 10.3.0 | | npm | css-loader | 7.1.4 | 7.1.5 | | npm | dayjs | 1.11.21 | 1.11.23 | | npm | jest | 30.4.2 | 30.5.1 | | npm | jest-environment-jsdom | 30.4.1 | 30.5.1 | | npm | npm | 11.18.0 | 11.19.1 | | npm | prettier | 3.9.5 | 3.9.6 | | npm | sass | 1.101.0 | 1.104.0 | | npm | sass-loader | 17.0.0 | 17.0.1 | | npm | webpack | 5.108.4 | 5.110.3 | | npm | webpack-cli | 7.2.1 | 7.2.3 | Signed-off-by: renovate-sh-app[bot] <219655108+renovate-sh-app[bot]@users.noreply.github.com> Signed-off-by: renovate-sh-app[bot] <219655108+renovate-sh-app[bot]@users.noreply.github.com>
renovate-sh-app
Bot
force-pushed
the
renovate/frontend-dependencies
branch
from
September 12, 2026 21:04
698d1ad to
40090bf
Compare
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:
13.1.1→13.2.113.1.1→13.2.13.11.0→3.12.00.17.3→0.17.413.1.1→13.2.113.1.1→13.2.113.1.1→13.2.11.11.0→1.12.01.9.0→1.10.01.61.1→1.63.01.23.3→1.23.41.15.46→1.16.225.9.5→25.9.68.64.0→8.70.08.64.0→8.70.010.0.1→10.3.07.1.4→7.1.51.11.21→1.11.2330.4.2→30.5.130.4.1→30.5.111.18.0→11.19.13.9.5→3.9.61.101.0→1.104.017.0.0→17.0.15.108.4→5.110.37.2.1→7.2.3Release Notes
grafana/grafana (@grafana/data)
v13.2.1: 13.2.1Compare Source
Download page
What's new highlights
Security
Bug fixes
v13.2.0: 13.2.0Compare Source
Download page
What's new highlights
Security
Features and enhancements
Bug fixes
InlineToastcontents are announced by screenreaders #128488, @ashharrison90Breaking changes
Plugin development fixes & changes
aria-currenton active page #128494, @ashharrison90colorIndex#129579, @ashharrison90v13.1.5Compare Source
v13.1.4: 13.1.4Compare Source
Download page
What's new highlights
Security
Bug fixes
v13.1.3: 13.1.3Compare Source
Download page
What's new highlights
v13.1.2: 13.1.2Compare Source
Download page
What's new highlights
Bug fixes
grafana/plugin-tools (@grafana/plugin-e2e)
v3.12.0Compare Source
Features
Bug Fixes
v3.11.2Compare Source
Bug Fixes
v3.11.1Compare Source
Bug Fixes
grafana/plugin-ui (@grafana/plugin-ui)
v0.17.4Compare Source
open-feature/js-sdk (@openfeature/core)
v1.12.0Compare Source
microsoft/playwright (@playwright/test)
v1.63.0Compare Source
🔒 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:
A test can hold multiple locks, and test.describe() accepts a
lockfor 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:
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
:visibleCSS pseudo-class:🧾 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
subtitleandparamsoptions for your own steps:Reporters receive them via testStep.subtitle and testStep.params. For Playwright API
steps, the subtitle is the locator or the navigation url — for example,
Clickwith subtitlegetByRole('button').Both are rendered next to the step title in the trace viewer and the HTML report.
🖼️ Aria and screen snapshots in traces
The
snapshotsoption of tracing.start() and the testOptions.trace fixture option now accept anobject selecting what to capture on every action:
With aria and screen snapshots recorded, the new Display Aria mode in the trace viewer shows the action screenshot
side by side with the aria snapshot, and hovering an aria node highlights it on the screenshot.
New APIs
Browser and Context
httpCredentialsnow also accepts an array of credentials. The first entry matching the request origin is used, and entries without an origin match any request.opfsincludes the origin private file system in the storage state, so it can be persisted and restored into later contexts.Locators
mode,depthandboxesoptions.json():Test runner
--add-reportercommand line option appends a reporter on top of the ones configured inplaywright.config, instead of replacing them like--reporterdoes.omitTagsoption for thelist,line,dot,githubandjunitreporters suppresses the tags that are automatically appended to test titles.Command line
npx playwright install --no-removekeeps the browsers of other Playwright installations instead of removing them.npx playwright codegen --http-credentialsrecords against pages behind HTTP authentication.Miscellaneous
perfettoreporter writes a Trace Event Format file for the Perfetto UI orchrome://tracing, rendering the test run as a timeline with a lane per worker.Announcements
@playwright/experimental-ct-react,@playwright/experimental-ct-react17and@playwright/experimental-ct-vuepackages will no longer be updated. Follow the migration guide to move to the stories model introduced in 1.62. Story ids passed to fixtures.mount() can now be typed through the generatedStoriesregistry.Browser Versions
This version was also tested against the following stable channels:
v1.62.1[Compare Source](https://redirect.github.com/microsoft/playw
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
Need help?
You can ask for more help in the following Slack channel: #proj-renovate-self-hosted. In that channel you can also find ADR and FAQ docs in the Resources section.