Skip to content

fix(deps): update all non-major dependencies#67

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-minor-patch
Open

fix(deps): update all non-major dependencies#67
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-minor-patch

Conversation

@renovate

@renovate renovate Bot commented May 18, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change OpenSSF
@playwright/test (source) devDependencies minor 1.60.01.61.1 OpenSSF Scorecard
@types/node (source) devDependencies minor 24.12.424.13.2 OpenSSF Scorecard
@vue/eslint-config-typescript devDependencies minor 14.7.014.9.0 OpenSSF Scorecard
DavidAnson/markdownlint-cli2 repository minor v0.22.1v0.23.0 OpenSSF Scorecard
actions/checkout action patch v6.0.2v6.0.3 OpenSSF Scorecard
ansible/ansible-lint repository minor v26.4.0v26.6.0 OpenSSF Scorecard
astral-sh/ruff-pre-commit repository patch v0.15.13v0.15.20 OpenSSF Scorecard
astral-sh/uv-pre-commit repository patch 0.11.140.11.26 OpenSSF Scorecard
autoprefixer devDependencies patch 10.5.010.5.2 OpenSSF Scorecard
eslint (source) devDependencies minor 10.3.010.6.0 OpenSSF Scorecard
eslint-plugin-playwright devDependencies patch 2.10.22.10.4 OpenSSF Scorecard
eslint-plugin-vue (source) devDependencies patch 10.9.110.9.2 OpenSSF Scorecard
postcss (source) overrides patch 8.5.148.5.16 OpenSSF Scorecard
prettier (source) devDependencies minor 3.8.33.9.4 OpenSSF Scorecard
renovatebot/pre-commit-hooks repository minor 43.150.043.251.3 OpenSSF Scorecard
vue (source) dependencies patch 3.5.343.5.39 OpenSSF Scorecard
vue-router (source) dependencies minor 5.0.75.1.0 OpenSSF Scorecard
vue-tsc (source) devDependencies minor 3.2.93.3.6 OpenSSF Scorecard

Note: The pre-commit manager in Renovate is not supported by the pre-commit maintainers or community. Please do not report any problems there, instead create a Discussion in the Renovate repository if you have any questions.


Release Notes

microsoft/playwright (@​playwright/test)

v1.61.1

Compare Source

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
vuejs/eslint-config-typescript (@​vue/eslint-config-typescript)

v14.9.0

Compare Source

New Features

  • vueTsConfigs.* are now valid flat config objects that can work with other ESLint utilities before being passed on to withVueTs() or defineConfigWithVueTs() for final resolution.
  • a new withVueTs(...) helper #​302
    • built on top of eslint-flat-config-utils, which lets it compose with the same flat-config transformation model used by antfu and Nuxt’s ESLint config tooling.

Full Changelog: vuejs/eslint-config-typescript@v14.8.0...v14.9.0

v14.8.0

Compare Source

What's Changed

New Contributors

Full Changelog: vuejs/eslint-config-typescript@v14.7.0...v14.8.0

DavidAnson/markdownlint-cli2 (DavidAnson/markdownlint-cli2)

v0.23.0

Compare Source

actions/checkout (actions/checkout)

v6.0.3

Compare Source

ansible/ansible-lint (ansible/ansible-lint)

v26.6.0

Compare Source

Features

Fixes

Maintenance

astral-sh/ruff-pre-commit (astral-sh/ruff-pre-commit)

v0.15.20

Compare Source

See: https://github.com/astral-sh/ruff/releases/tag/0.15.20

v0.15.19

Compare Source

See: https://github.com/astral-sh/ruff/releases/tag/0.15.19

v0.15.18

Compare Source

See: https://github.com/astral-sh/ruff/releases/tag/0.15.18

v0.15.17

Compare Source

See: https://github.com/astral-sh/ruff/releases/tag/0.15.17

v0.15.16

Compare Source

See: https://github.com/astral-sh/ruff/releases/tag/0.15.16

v0.15.15

Compare Source

See: https://github.com/astral-sh/ruff/releases/tag/0.15.15

v0.15.14

Compare Source

See: https://github.com/astral-sh/ruff/releases/tag/0.15.14

astral-sh/uv-pre-commit (astral-sh/uv-pre-commit)

v0.11.26

Compare Source

See: https://github.com/astral-sh/uv/releases/tag/0.11.26

v0.11.25

Compare Source

See: https://github.com/astral-sh/uv/releases/tag/0.11.25

v0.11.24

Compare Source

See: https://github.com/astral-sh/uv/releases/tag/0.11.24

v0.11.23

Compare Source

See: https://github.com/astral-sh/uv/releases/tag/0.11.23

v0.11.22

Compare Source

See: https://github.com/astral-sh/uv/releases/tag/0.11.22

v0.11.21

Compare Source

See: https://github.com/astral-sh/uv/releases/tag/0.11.21

v0.11.20

Compare Source

See: https://github.com/astral-sh/uv/releases/tag/0.11.20

v0.11.19

Compare Source

See: https://github.com/astral-sh/uv/releases/tag/0.11.19

v0.11.18

Compare Source

See: https://github.com/astral-sh/uv/releases/tag/0.11.18

v0.11.17

Compare Source

See: https://github.com/astral-sh/uv/releases/tag/0.11.17

v0.11.16

Compare Source

See: https://github.com/astral-sh/uv/releases/tag/0.11.16

v0.11.15

Compare Source

See: https://github.com/astral-sh/uv/releases/tag/0.11.15

postcss/autoprefixer (autoprefixer)

v10.5.2

Compare Source

  • Moved -webkit-fill-available before -moz-available, so Firefox
    will use -webkit- version which is closer to stretch.

v10.5.1

Compare Source

eslint/eslint (eslint)

v10.6.0

Compare Source

Features

  • b1f9106 feat: detect Symbol() and BigInt() in no-constant-binary-expression (#​20981) (Taejin Kim)
  • f291007 feat: add checkRelationalComparisons to no-constant-binary-expression (#​20948) (sethamus)

Bug Fixes

  • 6b05784 fix: prefer-exponentiation-operator invalid autofix at statement start (#​20997) (Milos Djermanovic)
  • bb9eb2a fix: account for shadowed Boolean in no-extra-boolean-cast (#​21013) (den$)
  • 8fd8741 fix: don't report shadowed undefined in radix rule (#​21011) (Pixel)
  • 5784980 fix: don't report shadowed undefined in no-throw-literal (#​21010) (Pixel)
  • 9cd1e6d fix: suppress invalid class suggestion in no-promise-executor-return (#​21008) (Pixel)
  • d4eb2dc fix: don't report shadowed undefined in prefer-promise-reject-errors (#​21006) (Pixel)
  • 2360464 fix: prefer-promise-reject-errors false positives for shadowed Promise (#​21003) (den$)
  • 63d52d2 fix: restore max-classes-per-file report range (#​21002) (Pixel)
  • 7feaff0 fix: callback detection logic for IIFEs in max-nested-callbacks (#​20979) (fnx)
  • 399a2ec fix: don't report inner non-callbacks in max-nested-callbacks (#​20995) (Milos Djermanovic)

Documentation

  • a83683d docs: Update README (GitHub Actions Bot)
  • f5449f9 docs: document userland patterns for global assertionOptions in RuleT… (#​20986) (playgirl)
  • bea49f7 docs: Update README (GitHub Actions Bot)
  • e5f70f9 docs: update code-path diagrams (#​20984) (Tanuj Kanti)
  • 8890c2d docs: add TypeScript config guidance for MCP server (#​20796) (Pierluigi Lenoci)
  • 3eb3d9b docs: Update README (GitHub Actions Bot)
  • c5bb59c docs: Update README (GitHub Actions Bot)
  • eb3c97c docs: fix grammar in prefer-const rule description (#​20983) (lumir)

Chores

v10.5.0

Compare Source

Features

  • 5ca8c52 feat: correct stack tracking in max-nested-callbacks (#​20973) (Pixel998)
  • b565783 feat: report no-with violations at the with keyword (#​20971) (Pixel998)
  • 2ce032f feat: report max-lines-per-function violations at function head (#​20966) (Pixel998)
  • 732cb3e feat: report max-nested-callbacks violations at function head (#​20967) (Pixel998)
  • f9c138a feat: report max-depth violations on keywords (#​20943) (Pixel998)
  • bdb496c feat: correct max-depth handling for else-if chains (#​20944) (Pixel998)
  • c296873 feat: update error loc in max-statements to function header (#​20907) (Taejin Kim)

Documentation

  • 8ae1b5b docs: Update README (GitHub Actions Bot)
  • ca7eb90 docs: update Node.js prerequisites to include ICU support (#​20962) (Francesco Trotta)
  • f99b47a docs: Update README (GitHub Actions Bot)
  • acf03d4 docs: clarify precedence of parserOptions over languageOptions (#​20926) (sethamus)

Chores

v10.4.1

Compare Source

Bug Fixes

  • e557467 fix: update @eslint/plugin-kit version to 0.7.2 (#​20930) (Francesco Trotta)
  • d4ce898 fix: propagate failures from delegated commands (#​20917) (Minh Vu)
  • f4f3507 fix: prefer-arrow-callback invalid autofix with newline after async (#​20916) (kuldeep kumar)
  • c5bc78b fix: false positive for reference in finally block (#​20655) (Tanuj Kanti)
  • 27538c0 fix: add missing CodePath and CodePathSegment types (#​20853) (Pixel998)

Documentation

  • 61b0add docs: remove deprecated rule from related rules of max-params (#​20921) (Tanuj Kanti)
  • 305d5b9 docs: remove deprecated rules from related rules section (#​20911) (Tanuj Kanti)
  • 49b0202 docs: fix display: none of ad (#​20901) (Tanuj Kanti)
  • 9067f94 docs: switch build to Node.js 24 (#​20893) (Milos Djermanovic)
  • c91b041 docs: Update README (GitHub Actions Bot)
  • e349265 docs: clarify semver strings in rule deprecation objects (#​20885) (Milos Djermanovic)

Chores

v10.4.0

Compare Source

Features

  • 1a45ec5 feat: check sequence expressions in for-direction (#​20701) (kuldeep kumar)
  • 450040b feat: add includeIgnoreFile() to eslint/config (#​20735) (Kirk Waiblinger)

Bug Fixes

Documentation

  • 7e52a71 docs: add mention of @eslint-react/eslint-plugin (#​20869) (Pavel)
  • db3468b docs: tweak wording around ambiguous CJS-vs-ESM config (#​20865) (Kirk Waiblinger)
  • 9084664 docs: Update README (GitHub Actions Bot)
  • 9cc7387 docs: Update README (GitHub Actions Bot)
  • 3d7b548 docs: Update README (GitHub Actions Bot)
  • 191ec3c docs: Update README (GitHub Actions Bot)

Chores

  • 6616856 chore: upgrade knip to v6 (#​20875) (Pixel998)
  • d13b084 ci: ensure auto-created PRs run CI (#​20860) (lumir)
  • e71c7af ci: bump pnpm/action-setup from 6.0.5 to 6.0.7 (#​20862) (dependabot[bot])
  • d84393d test: add unit tests for SuppressionsService.applySuppressions() (#​20863) (kuldeep kumar)
  • 24db8cb test: add tests for SuppressionsService.save() (#​20802) (kuldeep kumar)
  • 2ef0549 chore: update ecosystem plugins (#​20857) (github-actions[bot])
  • a429791 ci: remove eslint-webpack-plugin types integration test (#​20668) (Milos Djermanovic)
  • 9e37386 chore: replace recast with range approach in code-sample-minimizer (#​20682) (Copilot)
  • 0dd1f9f test: disable warning for vm.constants.USE_MAIN_CONTEXT_DEFAULT_LOADER (#​20845) (Francesco Trotta)
  • 9da3c7b refactor: remove deprecated meta.language and migrate meta.dialects (#​20716) (Pixel998)
  • 2099ed1 refactor: add meta.defaultOptions to more rules, enable linting (#​20800) (xbinaryx)
  • f1dfbc9 chore: update ecosystem plugins (#​20836) (github-actions[bot])
  • c759413 ci: bump pnpm/action-setup from 6.0.3 to 6.0.5 (#​20843) (dependabot[bot])
  • 5b817d6 test: add unit tests for lib/shared/ast-utils (#​20838) (kuldeep kumar)
  • 1c13ae3 test: add unit tests for lib/shared/severity (#​20835) (kuldeep kumar)
mskelton/eslint-plugin-playwright (eslint-plugin-playwright)

v2.10.4

Compare Source

Bug Fixes
  • valid-title: Skip title checks for anonymous describe blocks (894c0ec)

v2.10.3

Compare Source

Bug Fixes
  • missing-playwright-await: Fix false positive when not assigning awaited variable (#​464) (801f01a)
vuejs/eslint-plugin-vue (eslint-plugin-vue)

v10.9.2

Compare Source

Patch Changes
postcss/postcss (postcss)

v8.5.16

Compare Source

v8.5.15

Compare Source

  • Fixed declaration parsing p

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 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.


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

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot added dependencies Pull requests that update a dependency file no-stale This will not be marked as stale labels May 18, 2026
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 3c01a7e to 55e2dcd Compare May 18, 2026 23:38
@renovate renovate Bot changed the title chore(deps): update dependency eslint to v10.4.0 chore(deps): update all non-major dependencies May 18, 2026
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from bf48a61 to 610705d Compare May 22, 2026 13:54
@renovate

renovate Bot commented May 22, 2026

Copy link
Copy Markdown
Contributor Author

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: website/package-lock.json
npm warn Unknown env config "store". This will stop working in the next major version of npm. See `npm help npmrc` for supported config options.
npm error code EOVERRIDE
npm error Override for postcss@8.5.16 conflicts with direct dependency
npm error A complete log of this run can be found in: /runner/cache/others/npm/_logs/2026-07-03T16_42_24_358Z-debug-0.log

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from c44f886 to 7ed3683 Compare May 29, 2026 06:27
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from fee84b1 to 0c57b6b Compare May 30, 2026 13:25
@renovate renovate Bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies May 30, 2026
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 36c6a96 to 09b633a Compare June 2, 2026 22:31
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 17 times, most recently from a545ee6 to 4dc1177 Compare June 12, 2026 00:00
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 12 times, most recently from 49e85f3 to ecd6707 Compare June 17, 2026 00:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file no-stale This will not be marked as stale

Development

Successfully merging this pull request may close these issues.

0 participants