chore(deps): update support-deps#2664
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
c8af94a to
0a1378d
Compare
52efcdd to
51b5845
Compare
| 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 |
51b5845 to
6ccf710
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:
20.5.3→21.0.120.5.3→21.0.11.59.1→1.60.024.12.2→24.12.44.1.5→4.1.60.11.11→0.11.140.11.11→0.11.14v0.30.4→v0.31.0v1.24.9→v1.24.10v0.75.1→v0.76.0v1.0.3→v1.1.017.0.2→17.0.417.0.5v1.59.1-noble→v1.60.0-noble1.59.1→1.60.07.7.4→7.8.04.1.5→4.1.62.8.4→2.9.0v0.75.1→v0.76.0Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
conventional-changelog/commitlint (@commitlint/cli)
v21.0.1Compare Source
Note: Version bump only for package @commitlint/cli
v21.0.0Compare Source
BREAKING CHANGES
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.1Compare Source
Note: Version bump only for package @commitlint/config-conventional
v21.0.0Compare Source
BREAKING CHANGES
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.0Compare Source
🌐 HAR recording on Tracing
tracing.startHar() / tracing.stopHar() expose HAR recording as a first-class tracing API, with the same
content,modeandurlFilteroptions asrecordHar. The returned Disposable makes it easy to scope a recording withawait using:🪝 Drop API
New locator.drop() simulates an external drag-and-drop of files or clipboard-like data onto an element. Playwright dispatches
dragenter,dragover, anddropwith a synthetic [DataTransfer] in the page context — works cross-browser and is great for testing upload zones:🎯 Aria snapshots
page.locator('body').boxesoption on locator.ariaSnapshot() / page.ariaSnapshot() appends each element's bounding box as[box=x,y,width,height], useful for AI consumption.🛑 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:
New APIs
Browser, Context and Page
Locators and Assertions
descriptionin page.getByRole() / locator.getByRole() / frame.getByRole() / frameLocator.getByRole() for matching the accessible description.pseudoin expect(locator).toHaveCSS() reads computed styles from::beforeor::after.stylein locator.highlight() applies extra inline CSS to the highlight overlay, plus new page.hideHighlight() to clear all highlights.Network
noDefaultsin 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
line/columnproperties (lineNumber/columnNumberare deprecated).expect(...)matcher failure.workerInfoargument with details about the worker for fixture teardown errors.Test runner
{testFileBaseName}token in testProject.snapshotPathTemplate — file name without extension.workers: 0or negative values.🛠️ Other improvements
npx playwright show-reportaccepts.zipfiles directly — no need to unzip first.repeatEachIndexis shown in the test header when non-zero.Breaking Changes⚠️
Locator.ariaRef()— use the standard locator.ariaSnapshot() pipeline.handleoption onBrowserContext.exposeBindingandPage.exposeBinding.loggeroption onBrowserType.connectandBrowserType.connectOverCDP— use tracing instead.videosPath/videoSize— userecordVideoinstead.Browser Versions
This version was also tested against the following stable channels:
vitest-dev/vitest (@vitest/coverage-v8)
v4.1.6Compare Source
🐞 Bug Fixes
ToMatchScreenshotResolvePath- by @macarie and @sheremet-va in #10138 (31882)sequence.concurrent: truewith top-leveltest(..., { concurrent: false })+ depreactesequentialtest API and options - by @hi-ogawa, Codex and @sheremet-va in #10196 (2847d)🏎 Performance
View changes on GitHub
astral-sh/uv (astral-sh/uv)
v0.11.14Compare Source
Released on 2026-05-12.
Enhancements
top_level.txtentries in uninstall that are not valid Python identifiers (#19340)Bug fixes
.envfiles in parent process (#19343)uv treeshowing extra-conditional deps for packages required without extras (#19332)--no-build) during lock validation (#19366)v0.11.13Compare Source
Released on 2026-05-10.
Bug fixes
--require-hasheswhen installing frompylock.tomlfiles (#19334)Python
v0.11.12Compare Source
Released on 2026-05-08.
Python
Enhancements
--no-editablesupport touv pip install(#19306)Bug fixes
Respect
--no-devoverUV_DEV=1(#19313)Don't suggest non-existent
--no-frozenflag (#19290) (#19294)Documentation
defenseunicorns/uds-cli (defenseunicorns/uds-cli)
v0.31.0Compare Source
What's Changed
Full Changelog: defenseunicorns/uds-cli@v0.30.4...v0.31.0
defenseunicorns/uds-common (defenseunicorns/uds-common)
v1.24.10Compare Source
Bug Fixes
Miscellaneous
helm-unittest/helm-unittest (helm-unittest/helm-unittest)
v1.1.0Compare Source
Fixes
Improvements
Features
Updates
lint-staged/lint-staged (lint-staged)
v17.0.4Compare Source
Patch Changes
#1788
f95c1f8- Another fix for making sure lint-staged adds task modifications correctly to the commit in the following cases:<file>it is staged withgit add <file>, and then committed withgit commit<file>it is committed withgit commit --allwithout explicitgit add<file>it is committed withgit commit <pathspec>without explicitgit addThere's new test cases which actually setup the Git
pre_commithook 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.3Compare Source
Patch Changes
06813f9Thanks @iiroj! - Fix lint-staged behavior when implicitly committing files without usinggit addby either:git commit -am "my commit message"where-a(--all) means to automatically stage all tracked modified and deleted filesgit commit -m "my commit message" .where.is an example of a pathspec where matching files will be stagednpm/node-semver (semver)
v7.8.0Compare Source
Features
0d0a0a2#855 Addtruncatefunction (#855) (@pjohnmeyer, @owlstronaut)Bug Fixes
3905343#859 Warn when defaulting to --inc=patch in CLI (@pjohnmeyer)Documentation
c368af6#853 fix typos in documentation (#853) (@ankitkumar572005)37776c3#846 fix BNF grammar to distinguish prerelease from build identifiers (#846) (@abhu85, @claude)Chores
9542e09#860 template-oss-apply (@owlstronaut)937bc2c#860template-oss-apply@5.0.0(@owlstronaut)6946fef#852 bump @npmcli/template-oss from 4.29.0 to 4.30.0 (#852) (@dependabot[bot], @npm-cli-bot)eemeli/yaml (yaml)
v2.9.0Compare Source
zarf-dev/zarf (zarf-dev/zarf)
v0.76.0Compare Source
⚠ BREAKING CHANGES
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)
🚦 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.
This PR was generated by Mend Renovate. View the repository job log.