Skip to content

chore(deps): update support-deps#2664

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/support-deps
Open

chore(deps): update support-deps#2664
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/support-deps

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented May 11, 2026

This PR contains the following updates:

Package Change Age Confidence Type Update Pending
@commitlint/cli (source) 20.5.321.0.1 age confidence devDependencies major
@commitlint/config-conventional (source) 20.5.321.0.1 age confidence devDependencies major
@playwright/test (source) 1.59.11.60.0 age confidence devDependencies minor
@types/node (source) 24.12.224.12.4 age confidence devDependencies patch
@vitest/coverage-v8 (source) 4.1.54.1.6 age confidence devDependencies patch
astral-sh/uv 0.11.110.11.14 age confidence patch
astral-sh/uv 0.11.110.11.14 age confidence uses-with patch
defenseunicorns/uds-cli v0.30.4v0.31.0 age confidence minor
defenseunicorns/uds-common v1.24.9v1.24.10 age confidence patch
ghcr.io/zarf-dev/packages/init v0.75.1v0.76.0 age confidence minor
helm-unittest/helm-unittest v1.0.3v1.1.0 age confidence minor
lint-staged 17.0.217.0.4 age confidence devDependencies patch 17.0.5
mcr.microsoft.com/playwright v1.59.1-noblev1.60.0-noble age confidence minor
playwright (source) 1.59.11.60.0 age confidence devDependencies minor
semver 7.7.47.8.0 age confidence dependencies minor
vitest (source) 4.1.54.1.6 age confidence devDependencies patch
yaml (source) 2.8.42.9.0 age confidence dependencies minor
zarf-dev/zarf v0.75.1v0.76.0 age confidence minor

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

conventional-changelog/commitlint (@​commitlint/cli)

v21.0.1

Compare Source

Note: Version bump only for package @​commitlint/cli

v21.0.0

Compare Source

BREAKING CHANGES
  • drop node v18 and v20 support
  • Bump engines to >=v22 in all 39 package.json files
  • Update @​types/node to ^22.0.0
  • Update CI matrix to [22, 24]
  • Update Ubuntu baseline job to ubuntu:26.04
  • Update Dockerfile.ci, .mise.toml, .codesandbox/ci.json
  • Update pre-commit hook to use --ignore-engines
  • Update README and docs

Co-authored-by: Claude Opus 4.6 (1M context) noreply@anthropic.com

20.5.3 (2026-04-30)

Note: Version bump only for package @​commitlint/cli

20.5.2 (2026-04-25)

Note: Version bump only for package @​commitlint/cli

conventional-changelog/commitlint (@​commitlint/config-conventional)

v21.0.1

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

v21.0.0

Compare Source

BREAKING CHANGES
  • drop node v18 and v20 support
  • Bump engines to >=v22 in all 39 package.json files
  • Update @​types/node to ^22.0.0
  • Update CI matrix to [22, 24]
  • Update Ubuntu baseline job to ubuntu:26.04
  • Update Dockerfile.ci, .mise.toml, .codesandbox/ci.json
  • Update pre-commit hook to use --ignore-engines
  • Update README and docs

Co-authored-by: Claude Opus 4.6 (1M context) noreply@anthropic.com

20.5.3 (2026-04-30)

Note: Version bump only for package @​commitlint/config-conventional

microsoft/playwright (@​playwright/test)

v1.60.0

Compare Source

🌐 HAR recording on Tracing

tracing.startHar() / tracing.stopHar() expose HAR recording as a first-class tracing API, with the same content, mode and urlFilter options as recordHar. The returned Disposable makes it easy to scope a recording with await using:

await using har = await context.tracing.startHar('trace.har');
const page = await context.newPage();
await page.goto('https://playwright.dev');
// HAR is finalized when `har` goes out of scope.

🪝 Drop API

New locator.drop() simulates an external drag-and-drop of files or clipboard-like data onto an element. Playwright dispatches dragenter, dragover, and drop with a synthetic [DataTransfer] in the page context — works cross-browser and is great for testing upload zones:

await page.locator('#dropzone').drop({
  files: { name: 'note.txt', mimeType: 'text/plain', buffer: Buffer.from('hello') },
});

await page.locator('#dropzone').drop({
  data: {
    'text/plain': 'hello world',
    'text/uri-list': 'https://example.com',
  },
});

🎯 Aria snapshots

🛑 test.abort()

New test.abort() aborts the currently running test from a fixture, hook, or route handler with an optional message. Use it when you have detected an unrecoverable misuse and want to fail the test right away:

test('does not publish to the shared page', async ({ page }) => {
  await page.route('**/publish', route => {
    test.abort('Tests must not publish to the shared page. Use the `clone` option.');
    return route.abort();
  });
  // ...
});

New APIs

Browser, Context and Page
Locators and Assertions
Network
  • webSocketRoute.protocols() returns the WebSocket subprotocols requested by the page.
  • New option noDefaults in browserType.connectOverCDP() disables Playwright's default overrides on the default context (download behavior, focus emulation, media emulation), so attaching to a user's daily-driver browser doesn't disturb its state.
Errors and Reporting
Test runner
  • New {testFileBaseName} token in testProject.snapshotPathTemplate — file name without extension.
  • Test runner now errors when a config tries to override a non-option fixture, and rejects workers: 0 or negative values.

🛠️ Other improvements

  • HTML reporter:
    • npx playwright show-report accepts .zip files directly — no need to unzip first.
    • Steps that contain attachments inside nested children show an indicator on the parent step.
    • The repeatEachIndex is shown in the test header when non-zero.
  • Trace Viewer adds a pretty-print toggle for JSON / form request and response bodies in the network details panel.

Breaking Changes ⚠️

  • Removed long-deprecated APIs:
    • Locator.ariaRef() — use the standard locator.ariaSnapshot() pipeline.
    • handle option on BrowserContext.exposeBinding and Page.exposeBinding.
    • logger option on BrowserType.connect and BrowserType.connectOverCDP — use tracing instead.
    • Context options videosPath / videoSize — use recordVideo instead.

Browser Versions

  • Chromium 148.0.7778.96
  • Mozilla Firefox 150.0.2
  • WebKit 26.4

This version was also tested against the following stable channels:

  • Google Chrome 147
  • Microsoft Edge 147
vitest-dev/vitest (@​vitest/coverage-v8)

v4.1.6

Compare Source

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub
astral-sh/uv (astral-sh/uv)

v0.11.14

Compare Source

Released on 2026-05-12.

Enhancements
  • Add Astral mirror URL override (#​19206)
  • Ignore top_level.txt entries in uninstall that are not valid Python identifiers (#​19340)
Bug fixes
  • Avoid applying .env files in parent process (#​19343)
  • Filter ANSI codes in logging output (#​19311)
  • Fix uv tree showing extra-conditional deps for packages required without extras (#​19332)
  • Respect build options (e.g., --no-build) during lock validation (#​19366)

v0.11.13

Compare Source

Released on 2026-05-10.

Bug fixes
  • Include data files in editable builds (#​19312)
  • Respect --require-hashes when installing from pylock.toml files (#​19334)
Python
  • Add CPython 3.14.5

v0.11.12

Compare Source

Released on 2026-05-08.

Python
  • Add CPython 3.15.0b1
Enhancements
  • Add --no-editable support to uv pip install (#​19306)
  • Require git refs in URLs to be percent-encoded (#​19320)
Bug fixes
Documentation
  • Fix bug from inconsistent workflow name in GHA-PyPI guide example (#​19309)
defenseunicorns/uds-cli (defenseunicorns/uds-cli)

v0.31.0

Compare Source

What's Changed

Full Changelog: defenseunicorns/uds-cli@v0.30.4...v0.31.0

defenseunicorns/uds-common (defenseunicorns/uds-common)

v1.24.10

Compare Source

Bug Fixes
  • add id-token:write to auto-update and callable-auto-update workflows (#​671) (f102aac)
Miscellaneous
  • deps: update uds common foundation dependencies to v1.3.1 (#​667) (96dab3f)
helm-unittest/helm-unittest (helm-unittest/helm-unittest)

v1.1.0

Compare Source

Fixes

  • Fix handling skipped tests in output properly (resolves #​838)
  • Fix documentSelector on unset YAML keys (resolves #​812, credits @​Semih702)
  • Fix isType assertion on unset YAML keys (resolves #​794, credits @​SAY-5)
  • Fix skip tests when subcharts are disabled via conditions (resolves #​792, credits @​bebosudo)

Improvements

  • Enable native windows installation (resolves #​748)
  • Signed release (resolves #​362)

Features

Updates

  • Update release and package process, so the plugin can also be installed using helm 4 (resolves #​785)
  • Update packages to latest patch versions
  • Update pipeline actions
  • Update documentation (credits @​pratikshmalik05)
lint-staged/lint-staged (lint-staged)

v17.0.4

Compare Source

Patch Changes
  • #​1788 f95c1f8 - Another fix for making sure lint-staged adds task modifications correctly to the commit in the following cases:

    • after editing <file> it is staged with git add <file>, and then committed with git commit
    • after editing <file> it is committed with git commit --all without explicit git add
    • after editing <file> it is committed with git commit <pathspec> without explicit git add

    There's new test cases which actually setup the Git pre_commit hook to run lint-staged and verify them. These issues started in v17.0.0 when trying to improve support for committig without having explicitly staged files.

v17.0.3

Compare Source

Patch Changes
  • #​1782 06813f9 Thanks @​iiroj! - Fix lint-staged behavior when implicitly committing files without using git add by either:
    • git commit -am "my commit message" where -a (--all) means to automatically stage all tracked modified and deleted files
    • git commit -m "my commit message" . where . is an example of a pathspec where matching files will be staged
npm/node-semver (semver)

v7.8.0

Compare Source

Features
Bug Fixes
Documentation
Chores
eemeli/yaml (yaml)

v2.9.0

Compare Source

zarf-dev/zarf (zarf-dev/zarf)

v0.76.0

Compare Source

⚠ BREAKING CHANGES
  • sign: align signing and verification flags to cosign (#​4880)
Features
Bug Fixes

What's Changed

🚀 Updates

Full Changelog: zarf-dev/zarf@v0.76.0-rc1...v0.76.0


Configuration

📅 Schedule: (in timezone America/New_York)

  • 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 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

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

@renovate renovate Bot requested a review from a team as a code owner May 11, 2026 19:11
@github-actions github-actions Bot added the needs-review Label used for Renovate PRs that are ready for review/test label May 11, 2026
@renovate renovate Bot force-pushed the renovate/support-deps branch from c8af94a to 0a1378d Compare May 11, 2026 23:09
@renovate renovate Bot changed the title chore(deps): update support dependencies to v1.1.0 chore(deps): update support-deps May 11, 2026
@chance-coleman chance-coleman added renovate-ready Label used to trigger Renovate PR CI and removed renovate-ready Label used to trigger Renovate PR CI labels May 12, 2026
@renovate renovate Bot force-pushed the renovate/support-deps branch 13 times, most recently from 52efcdd to 51b5845 Compare May 17, 2026 02:04
| datasource      | package                         | from    | to       |
| --------------- | ------------------------------- | ------- | -------- |
| npm             | @commitlint/cli                 | 20.5.3  | 21.0.1   |
| npm             | @commitlint/config-conventional | 20.5.3  | 21.0.1   |
| npm             | @playwright/test                | 1.59.1  | 1.60.0   |
| npm             | @types/node                     | 24.12.2 | 24.12.4  |
| npm             | @vitest/coverage-v8             | 4.1.5   | 4.1.6    |
| github-tags     | astral-sh/uv                    | 0.11.11 | 0.11.14  |
| github-releases | astral-sh/uv                    | 0.11.11 | 0.11.14  |
| github-tags     | defenseunicorns/uds-cli         | v0.30.4 | v0.31.0  |
| github-tags     | defenseunicorns/uds-common      | v1.24.9 | v1.24.10 |
| docker          | ghcr.io/zarf-dev/packages/init  | v0.75.1 | v0.76.0  |
| github-tags     | helm-unittest/helm-unittest     | v1.0.3  | v1.1.0   |
| npm             | lint-staged                     | 17.0.2  | 17.0.4   |
| docker          | mcr.microsoft.com/playwright    | v1.59.1 | v1.60.0  |
| npm             | playwright                      | 1.59.1  | 1.60.0   |
| npm             | semver                          | 7.7.4   | 7.8.0    |
| npm             | vitest                          | 4.1.5   | 4.1.6    |
| npm             | yaml                            | 2.8.4   | 2.9.0    |
| github-tags     | zarf-dev/zarf                   | v0.75.1 | v0.76.0  |
@renovate renovate Bot force-pushed the renovate/support-deps branch from 51b5845 to 6ccf710 Compare May 17, 2026 18:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

needs-review Label used for Renovate PRs that are ready for review/test

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant