Skip to content

fix(deps): update frontend dependencies#521

Open
renovate-sh-app[bot] wants to merge 1 commit into
mainfrom
renovate/frontend-dependencies
Open

fix(deps): update frontend dependencies#521
renovate-sh-app[bot] wants to merge 1 commit into
mainfrom
renovate/frontend-dependencies

Conversation

@renovate-sh-app

@renovate-sh-app renovate-sh-app Bot commented Jun 8, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@grafana/assistant (source) 0.1.240.1.25 age confidence
@grafana/data (source) 13.1.0-2589393288113.1.0 age confidence
@grafana/e2e-selectors (source) 13.1.0-2589393288113.1.0 age confidence
@grafana/google-sdk 0.6.00.6.1 age confidence
@grafana/i18n (source) 13.1.0-2589393288113.1.0 age confidence
@grafana/plugin-e2e (source) 3.8.03.9.1 age confidence
@grafana/plugin-ui 0.13.10.16.0 age confidence
@grafana/runtime (source) 13.1.0-2589393288113.1.0 age confidence
@grafana/schema (source) 13.1.0-2589393288113.1.0 age confidence
@grafana/tsconfig (source) 2.1.02.2.0 age confidence
@grafana/ui (source) 13.1.0-2589393288113.1.0 age confidence
@playwright/test (source) 1.60.01.61.1 age confidence
@swc/core (source) 1.15.401.15.43 age confidence
@types/node (source) 25.9.125.9.4 age confidence
@types/react (source) 18.3.2818.3.31 age confidence
@typescript-eslint/eslint-plugin (source) 8.60.08.62.0 age confidence
@typescript-eslint/parser (source) 8.60.08.62.0 age confidence
cspell (source) 10.0.010.0.1 age confidence
eslint-plugin-jsdoc 63.0.063.0.9 age confidence
prettier (source) 3.8.33.8.5 age confidence
sass 1.100.01.101.0 age confidence
webpack 5.107.25.108.1 age confidence
webpack-cli (source) 7.0.37.1.0 age confidence
yarn (source) 4.15.04.17.0 age confidence

Release Notes

grafana/grafana-assistant-app (@​grafana/assistant)

v0.1.25

Compare Source

  • Add optional chatId parameter to openAssistant() — when set, sends the prompt as a follow-up message into the specified existing conversation instead of creating a new one
  • Remove the unused investigation-created event helpers (InvestigationCreatedEvent, emitInvestigationCreated, onInvestigationCreated) while a replacement investigation integration is designed
  • Fix useInlineAssistant surfacing [object Object] instead of the real backend error message — errors are now properly extracted before being exposed via the hook's error
grafana/grafana (@​grafana/data)

v13.1.0

grafana/grafana (@​grafana/e2e-selectors)

v13.1.0

grafana/grafana-google-sdk-react (@​grafana/google-sdk)

v0.6.1

Compare Source

  • Remove lodash usage
grafana/grafana (@​grafana/i18n)

v13.1.0

grafana/plugin-tools (@​grafana/plugin-e2e)

v3.9.1

Compare Source

Bug Fixes
  • plugin-e2e: remove uuid and semver runtime dependencies (#​2650) (d6987a4)

v3.9.0

Compare Source

🐛 Bug Fix
  • Plugin E2E: Fix flaky alerting, TLS, and permissions tests on slow CI #​2675 (@​mckn)
Authors: 1

grafana/plugin-ui (@​grafana/plugin-ui)

v0.16.0

Compare Source

  • Added schema for datasource configuration

v0.15.1

Compare Source

  • Fix: add react and react-dom back to peerDependencies; omitting them caused the Rollup build to inline a second copy of React into the published bundle, breaking all hook calls in plugins that consume this package.

v0.15.0

Compare Source

  • Fix some @grafana/* dependencies incorrectly listed as dependencies instead of devDependencies
  • Remove unused dependencies

v0.14.0

Compare Source

grafana/grafana (@​grafana/runtime)

v13.1.0

grafana/grafana (@​grafana/schema)

v13.1.0

grafana/plugin-tools (@​grafana/tsconfig)

v2.2.0

Compare Source

grafana/grafana (@​grafana/ui)

v13.1.0

microsoft/playwright (@​playwright/test)

v1.61.1

Compare Source

Bug Fixes
  • #​41365 [Bug]: Expect.Extend matcher with same name as default matcher in same expect instance overrides default matchers implementation to custom matcher
  • #​41351 [Bug]: Playwright UI mode: apiRequestContext._wrapApiCall reports unexpected number of bytes (same test passes in headed mode)
  • #​41360 [Bug]: Trace viewer: message times in websockets are downscaled by 1000
  • #​41311 [Bug]: [Regression]: Sync loader throws "context.conditions?.includes is not a function" on Node 22.15
  • #​41371 [Regression]: Sync ESM loader (registerHooks) fails to resolve extensionless .ts subpath imports across pnpm workspace symlinks

v1.61.0

Compare 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:

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(), 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:

await page.localStorage.setItem('token', 'abc');
const token = await page.localStorage.getItem('token');
const items = await page.sessionStorage.items();

New APIs

Network
Browser and Screencast
  • New option artifactsDir in browserType.connectOverCDP() controls where artifacts such as traces and downloads are stored when attached to an existing browser.
  • New option cursor in screencast.showActions() controls the cursor decoration rendered for pointer actions.
  • The onFrame callback in screencast.start() now receives a timestamp of when the frame was presented by the browser.
Test runner
  • The testOptions.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 for which runs are recorded and kept in each mode.
  • Supported expect.soft.poll(...).
  • New fullConfig.argv — a snapshot of process.argv from the runner process, handy for reading custom arguments passed after the -- separator.
  • New fullConfig.failOnFlakyTests mirrors the config option, so reporters can explain why a flaky run failed.
  • testInfo.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
swc-project/swc (@​swc/core)

v1.15.43

Compare Source

Bug Fixes
Documentation
Features
Miscellaneous Tasks
  • (es/react-compiler) Update forked react compiler to 0.2.0 (#​11946) (6fbe188)
Refactor

v1.15.41

Compare Source

Bug Fixes
Documentation
Performance
Revert
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v8.62.0

Compare Source

🚀 Features
  • remove redundant package.json "files" (#​12444)
❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.61.1

Compare Source

🩹 Fixes
  • eslint-plugin: [no-unnecessary-template-expression] respect ECMAScript line terminators (#​12388)
  • eslint-plugin: [no-unnecessary-boolean-literal-compare] fix precedence bug in autofix (#​12413)
  • eslint-plugin: [no-unnecessary-type-assertion] wrap object literal in parens when removing TSTypeAssertion in arrow body (#​12394, #​12393)
  • eslint-plugin: [no-unnecessary-type-assertion] avoid false positive for template literal expressions (#​12281)
  • eslint-plugin: [consistent-indexed-object-style] do not remove comments when fixing (#​12396, #​10577)
❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.61.0

Compare Source

🚀 Features
  • ast-spec: change type of UnaryExpression.prefix to always true (#​12372)
❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.60.1

Compare Source

🩹 Fixes
  • eslint-plugin: [no-shadow] correct rule to match ESLint v10 handling (#​12182)
  • eslint-plugin: respect ECMAScript line terminators in ts-comment rules (#​12352)
❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v8.62.0

Compare Source

🚀 Features
  • remove redundant package.json "files" (#​12444)
❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.61.1

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.61.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.60.1

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

streetsidesoftware/cspell (cspell)

v10.0.1

Compare Source

Fixes
fix(cli): ignore closed readline after stdin (#​8862)
fix(cli): ignore closed readline after stdin (#​8862)
gajus/eslint-plugin-jsdoc (eslint-plugin-jsdoc)

v63.0.9

Compare Source

Bug Fixes
  • check-template-names, require-template, valid-types: keep commas inside @template default values (0980b71)

v63.0.8

Compare Source

Bug Fixes
  • check-template-names: detect template usage in @augments/@extends/@implements types (208079f)

v63.0.7

Compare Source

Bug Fixes
  • no-undefined-types: predefine Iterable/Iterator types; fixes #​1712 (804a13d)

v63.0.6

Compare Source

Bug Fixes
  • iterateAllJsdocs free comments after each file (ebe0d08)

v63.0.5

Compare Source

Bug Fixes
  • no-undefined-types: check descendant scopes for variables; fixes #​1704 (a50f71f)

v63.0.4

Compare Source

Bug Fixes
  • ensure tsModule check can catch multiple modules (b993425)

v63.0.3

Compare Source

Bug Fixes
  • no-undefined-types: treat TS module vars as defined; fixes #​1701 (d8f4738)

v63.0.2

Compare Source

Bug Fixes

v63.0.1

Compare Source

Bug Fixes
  • empty-tags: preserve start and ending delimiters to avoid erros with single-line tags; fixes #​1697 (938a1f0)
prettier/prettier (prettier)

v3.8.5

Compare Source

diff

Flow: Support readonly as a variance annotation (#​19022 by @​marcoww6)

Flow now accepts readonly as a property variance annotation, equivalent to + (covariant/read-only).

// Input
type T = {
  readonly foo: string,
};

// Prettier 3.8.4
SyntaxError

// Prettier 3.8.5
type T = {
  readonly foo: string,
};

v3.8.4

Compare Source

diff

Markdown: Fix blank lines between list items and nested sub-lists being removed in Markdown/MDX (#​17746 by @​byplayer)

Prettier was removing blank lines between list items and their nested sub-lists, converting loose lists into tight lists and changing their semantic meaning.

<!-- Input -->
- a

  - b

- c

  - d

<!-- Prettier 3.8.3 -->
- a
  - b
- c
  - d

<!-- Prettier 3.8.4 -->
- a

  - b

- c

  - d
sass/dart-sass (sass)

v1.101.0

Compare Source

  • Potentially breaking bug fix: The Node package importer now properly
    supports resolving import-only variants of Sass files declared in the
    exports, sass, and style fields of package.json. Previously, these
    files were ignored even when loaded via @import, so any code relying on
    loading module-system-only files this way may break.
webpack/webpack (webpack)

v5.108.1

Compare Source

Patch Changes
  • Fix invalid property access for escaped namespace imports with multi-character mangled export names. (by @​xiaoxiaojx in #​21280)

  • Add frames to ProfilingPlugin TracingStartedInBrowser event so the trace loads in Chrome DevTools. (by @​alexander-akait in #​21269)

v5.108.0

Compare Source

Minor Changes
  • Treat top-level await and import.meta as ES module markers, matching Node.js syntax detection so no explicit module type is needed. (by @​alexander-akait in #​21218)

  • Add a bun target that emits ESM and externalizes bun:* and node.js built-in modules. (by @​alexander-akait in #​21248)

  • Support CommonJS reexports via Object.defineProperty value and getter descriptors. (by @​alexander-akait in #​21129)

  • Support JSON Schema const when generating CLI flags from a schema. (by @​alexander-akait in #​21087)

  • Support JSON Schema if/then/else when generating CLI flags from a schema. (by @​alexander-akait in #​21087)

  • Skip import specifiers, require() and import() calls in dead conditional branches gated by inlined imported constants (isDEV ? A : B), evaluated via getCondition. (by @​hai-x in #​21136)

  • CSS localIdentName [hash] now resolves to the local ident hash (matching css-loader); use [modulehash] for the module hash. (by @​alexander-akait in #​21259)

  • Add CSS parser as option and resolve url() inside HTML style attributes. (by @​alexander-akait in #​21157)

  • Add dedicated module classes for all built-in module types. (by @​alexander-akait in #​21164)

  • Support .html/.css for the default ./src entry under the html/css experiments. (by @​alexander-akait in #​21039)

  • Add defineConfig helper for typed configuration files. (by @​alexander-akait in #​21169)

  • Add a deno target (with versions, e.g. deno, deno2, deno1.40) that emits ESM, resolves node.js built-ins via the required node: specifier, and keeps Deno's own import protocols (npm:, jsr:, node:, http(s)://) external. (by @​alexander-akait in #​21247)

  • Use module-import for electron externals when the target supports ESM. (by @​alexander-akait in #​21184)

  • Add output.environment.logicalAssignment to emit ||= in runtime code when the target supports logical assignment operators. (by @​bjohansebas in #​21219)

  • Resolve and rewrite asset URLs inside <iframe srcdoc> in HTML modules. (by @​bjohansebas in #​21226)

  • Add HMR support for HTML modules with body/title DOM patching on update. (by @​alexander-akait in #​21011)

  • Add css-url html source type extracting url() references from CSS-valued attributes. (by @​alexander-akait in #​21250)

  • Add module.parser.html.sources option to disable or customize URL-attribute extraction for HTML modules, with script / script-module / stylesheet / stylesheet-inline types for custom attributes (by @​alexander-akait in #​21022)

  • Add module.parser.html.template option to transform HTML module source before parsing. (by @​alexander-akait in #​21055)

  • Extract more source URLs in HTML modules (SVG, legacy and obsolete attributes). (by @​alexander-akait in #​21241)

  • Inline export default <const> when the default-exported value is a primitive constant. (by @​hai-x in #​21189)

  • Support optimization.inlineExports for better tree-shaking. (by @​hai-x in #​20973)

  • Re-encode inline hash digests ([contenthash]/[chunkhash]/[fullhash]/[modulehash]) from the full content hash, so they carry full entropy and work under optimization.realContentHash and in dynamically-loaded chunk filenames; also preserve leading zero bytes in base-N digests. (by @​alexander-akait in #​21267)

  • Allow tree-shaking unused calls to /*#__NO_SIDE_EFFECTS__*/-annotated (pure) exports across module boundaries. (by @​hai-x in #​20907)

  • Defer building unused re-export targets of side-effect-free barrel modules. (by @​hai-x in #​21165)

  • Keep export mangling enabled for modules whose namespace object is used as a whole value, by materializing a decoupled namespace object that keeps the original export names. (by @​alexander-akait in #​21234)

  • Add output.environment.let option (paired with target's let capability) and emit let/const instead of var in generated runtime code wherever it is safe. Bindings that may be wrapped in runtime-condition if blocks (harmony imports, ConcatenatedModule external imports) continue to use var to preserve function scoping. (by @​alexander-akait in #​21010)

  • Add output.html to emit an HTML file per entrypoint, injecting its JS/CSS chunks (including dependOn shared chunks). (by @​alexander-akait in #​21215)

  • Add module.parser.javascript.pureFunctions to mark top-level names as side-effect-free for tree shaking. (by @​hai-x in #​21063)

  • Add universal to compiler.platform, true for universal targets ("universal" or ["web", "node"]). (by @​bjohansebas in #​21252)

  • Add output.strictModuleResolution to gate the runtime MODULE_NOT_FOUND guard. (by @​hai-x in #​21067)

  • Support an inline digest in hash path placeholders, e.g. [contenthash:base64:8]. (by @​alexander-akait in #​21259)

  • Support [uniqueName] and its [uniquename] alias in template paths. (by @​alexander-akait in #​21155)

  • Support CSS in Node for universal targets, collecting styles for SSR. (by @​alexander-akait in #​21208)

  • Improve commonjs, node-commonjs and global externals for universal targets. (by @​alexander-akait in #​21187)

  • Add a universal target preset (browser + web worker + Node.js + Electron + NW.js) that always outputs ECMAScript modules. (by @​alexander-akait in #​21214)

  • Support new Worker(new URL(...)) in universal (node + web) targets by resolving the Worker constructor from worker_threads when no global Worker exists. (by @​alexander-akait in #​21195)

  • Add output.workerChunkFilename and entry.worker for worker chunk filenames. (by @​alexander-akait in #​21128)

Patch Changes
  • Skip re-parsing the inlined entry module when no renaming is needed. (by @​alexander-akait in [#​21167](http

Note

PR body was truncated to here.


Configuration

📅 Schedule: (in timezone 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 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.


  • If you want to rebase/retry this PR, check this box

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.

@renovate-sh-app renovate-sh-app Bot requested a review from a team as a code owner June 8, 2026 01:02
@renovate-sh-app renovate-sh-app Bot enabled auto-merge (squash) June 8, 2026 01:02
@renovate-sh-app renovate-sh-app Bot force-pushed the renovate/frontend-dependencies branch 16 times, most recently from ba654fd to 9deb37b Compare June 15, 2026 04:01
@renovate-sh-app renovate-sh-app Bot force-pushed the renovate/frontend-dependencies branch 6 times, most recently from 8286434 to 213e4f5 Compare June 19, 2026 04:02
@renovate-sh-app renovate-sh-app Bot force-pushed the renovate/frontend-dependencies branch 14 times, most recently from f9877ea to d7aba81 Compare June 26, 2026 10:02
@renovate-sh-app renovate-sh-app Bot force-pushed the renovate/frontend-dependencies branch 5 times, most recently from 72d97f7 to ba548eb Compare June 29, 2026 13:02
| datasource | package                          | from               | to      |
| ---------- | -------------------------------- | ------------------ | ------- |
| npm        | @grafana/assistant               | 0.1.24             | 0.1.25  |
| npm        | @grafana/data                    | 13.1.0-25893932881 | 13.1.0  |
| npm        | @grafana/e2e-selectors           | 13.1.0-25893932881 | 13.1.0  |
| npm        | @grafana/google-sdk              | 0.6.0              | 0.6.1   |
| npm        | @grafana/i18n                    | 13.1.0-25893932881 | 13.1.0  |
| npm        | @grafana/plugin-e2e              | 3.8.0              | 3.9.1   |
| npm        | @grafana/plugin-ui               | 0.13.1             | 0.16.0  |
| npm        | @grafana/runtime                 | 13.1.0-25893932881 | 13.1.0  |
| npm        | @grafana/schema                  | 13.1.0-25893932881 | 13.1.0  |
| npm        | @grafana/tsconfig                | 2.1.0              | 2.2.0   |
| npm        | @grafana/ui                      | 13.1.0-25893932881 | 13.1.0  |
| npm        | @playwright/test                 | 1.60.0             | 1.61.1  |
| npm        | @swc/core                        | 1.15.40            | 1.15.43 |
| npm        | @types/node                      | 25.9.1             | 25.9.4  |
| npm        | @types/react                     | 18.3.28            | 18.3.31 |
| npm        | @typescript-eslint/eslint-plugin | 8.60.0             | 8.62.0  |
| npm        | @typescript-eslint/parser        | 8.60.0             | 8.62.0  |
| npm        | cspell                           | 10.0.0             | 10.0.1  |
| npm        | eslint-plugin-jsdoc              | 63.0.0             | 63.0.9  |
| npm        | prettier                         | 3.8.3              | 3.8.5   |
| npm        | sass                             | 1.100.0            | 1.101.0 |
| npm        | webpack                          | 5.107.2            | 5.108.1 |
| npm        | webpack-cli                      | 7.0.3              | 7.1.0   |
| npm        | @yarnpkg/cli                     | 4.15.0             | 4.17.0  |


Signed-off-by: renovate-sh-app[bot] <219655108+renovate-sh-app[bot]@users.noreply.github.com>
@renovate-sh-app renovate-sh-app Bot force-pushed the renovate/frontend-dependencies branch from ba548eb to 040d457 Compare June 29, 2026 16:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant