fix(deps): update all minor dependencies#1229
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
Contributor
Author
|
e1fd4f8 to
a1fceb0
Compare
338958f to
dc2d609
Compare
e1e206f to
f6fc5fc
Compare
43f1172 to
9aaa546
Compare
31d95c6 to
c6d3156
Compare
c6d3156 to
cf31bd4
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:
9.37.0→9.39.41.57.0→1.60.01.58.2→1.60.04.35.1→4.43.4^0.2.1→^0.4.01.1.0→1.5.2^0.10.8→^0.13.024.8.1→24.12.418.2.48→18.3.2818.2.18→18.3.75.0.4→5.2.05.0.4→5.2.49.37.0→9.39.4^0.4.22→^0.5.016.4.0→16.5.0~5.8.0→~5.13.0~2.1.0→~2.2.018.2.0→18.3.118.2.0→18.3.17.12.0→7.15.11.97.3→1.99.0~5.6.0→~5.9.0~5.1.0→~5.9.0~5.8.2→~5.9.05.8.3→5.9.38.46.1→8.59.3^0.15.0→^0.15.0 || ^0.16.0Review
Release Notes
eslint/eslint (@eslint/js)
v9.39.4Compare Source
v9.39.3Compare Source
Bug Fixes
791bf8dfix: restore TypeScript 4.0 compatibility in types (#20504) (sethamus)Chores
8594a43chore: upgrade @eslint/js@9.39.3 (#20529) (Milos Djermanovic)9ceef92chore: package.json update for @eslint/js release (Jenkins)af498c6chore: ignore/docs/v9.xin link checker (#20453) (Milos Djermanovic)v9.39.2Compare Source
v9.39.1Compare Source
v9.39.0Compare Source
v9.38.0Compare Source
Features
ce40f74feat: updatecomplexityrule to only highlight function header (#20048) (Atul Nair)e37e590feat: correctno-loss-of-precisionfalse positives withenotation (#20187) (Francesco Trotta)Bug Fixes
50c3dfdfix: improve type support for isolated dependencies in pnpm (#20201) (Francesco Trotta)a1f06a3fix: correct SourceCode typings (#20114) (Pixel998)Documentation
462675adocs: improve web accessibility by hiding non-semantic character (#20205) (루밀LuMir)c070e65docs: correct formatting inno-irregular-whitespacerule documentation (#20203) (루밀LuMir)b39e71adocs: Update README (GitHub Actions Bot)cd39983docs: movecustom-formatterstype descriptions tonodejs-api(#20190) (Percy Ma)Chores
d17c795chore: upgrade @eslint/js@9.38.0 (#20221) (Milos Djermanovic)25d0e33chore: package.json update for @eslint/js release (Jenkins)c82b5efrefactor: Use types from @eslint/core (#20168) (Nicholas C. Zakas)ff31609ci: add Node.js 25 toci.yml(#20220) (루밀LuMir)004577eci: bump github/codeql-action from 3 to 4 (#20211) (dependabot[bot])eac71fbtest: remove use ofnodejsScopeoption of eslint-scope from tests (#20206) (Milos Djermanovic)4168a18chore: fix typo in legacy-eslint.js (#20202) (Sweta Tanwar)205dbd2chore: fix typos (#20200) (ntnyq)dbb200echore: use team member's username when name is not available in data (#20194) (Milos Djermanovic)8962089chore: mark deprecated rules as available until v11.0.0 (#20184) (Pixel998)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:
v1.59.1Compare Source
v1.59.0Compare Source
v1.58.2Compare Source
v1.58.1Compare Source
Highlights
#39036 fix(msedge): fix local network permissions
#39037 chore: update cft download location
#38995 chore(webkit): disable frame sessions on fronzen builds
Browser Versions
v1.58.0Compare Source
stenciljs/core (@stencil/core)
v4.43.4Compare Source
Bug Fixes
v4.43.3Compare Source
Features
v4.43.2Compare Source
Bug Fixes
partsetter to MockElement (#6612) (abfdd57)renderfunction being stripped from imports (#6623) (cd33ccb)@Propinfinite loop (#6618) (11201b5)components.d.ts(#6616) (827d0d6)v4.43.1Compare Source
Bug Fixes
v4.43.0Compare Source
Bug Fixes
Features
autoLoaderoption (#6594) (e130b7a)🌍 4.42.1 (2026-02-06)
Bug Fixes
resolveVarfor import (#6588) (e4eeb37)FunctionalComponents(#6586) (d63bf5d)HTMLElement/SVGElementplus newMockLabelElement(#6581) (756b7aa)distparent should hydrate even when children fail (#6583) (50ad901)componentShouldUpdatefor every prop changed (#6587) (dd4d2e6)[@internal](https://redirect.github.com/internal)properties in dist build required fields (#6585) (6136a67)v4.42.1Compare Source
Bug Fixes
resolveVarfor import (#6588) (e4eeb37)FunctionalComponents(#6586) (d63bf5d)HTMLElement/SVGElementplus newMockLabelElement(#6581) (756b7aa)distparent should hydrate even when children fail (#6583) (50ad901)componentShouldUpdatefor every prop changed (#6587) (dd4d2e6)[@internal](https://redirect.github.com/internal)properties in dist build required fields (#6585) (6136a67)v4.42.0Compare Source
Bug Fixes
Features
CustomStateSetsupport (#6574) (cce1e23)docs-custom-elements-manifestoutput (#6568) (df9d198)generatePackageJsonoption todist-hydrate-script(#6571) (f2dbed7)attr:/prop:prefixes (#6575) (aa599da)🎇 4.41.3 (2026-01-23)
Bug Fixes
name,formanddisabledtoformAssociatedcomponents (#6561) (4e19b99)refcallback order (#6552) (e006cf7)childNodeswith get / set. Allows patching during tests (#6564) (dbaa9fb)🐝 4.41.2 (2026-01-16)
Bug Fixes
textContentfor TrustedHTML assignment (#6544) (a708bdc)jsxImportSourcein internal jest test runner (#6547) (6ac3b51)🌴 4.41.1 (2026-01-08)
Bug Fixes
v4.41.3Compare Source
Bug Fixes
name,formanddisabledtoformAssociatedcomponents (#6561) (4e19b99)refcallback order (#6552) (e006cf7)childNodeswith get / set. Allows patching during tests (#6564) (dbaa9fb)v4.41.2Compare Source
Bug Fixes
textContentfor TrustedHTML assignment (#6544) (a708bdc)jsxImportSourcein internal jest test runner (#6547) (6ac3b51)v4.41.1Compare Source
Bug Fixes
v4.41.0Compare Source
Bug Fixes
--statsaccepts optional path string as per documentation (#6524) (42ebdfa)cloneNodepatch even without (#6513) (e893bd1)<slot>(#6514) (cdcd873)Features
strictPortproperty (#6523) (cc12853)jsxImportSource(himport no longer necessary) (#6525) (6482533)🐂 4.40.1 (2025-12-23)
Bug Fixes
excludedComponents(#6509) (4209437)@containerquery parsing (#6508) (208a105)supportsConstructableStylesheetstest (#6510) (484b1b8)v4.40.1Compare Source
Bug Fixes
excludedComponents(#6509) (4209437)@containerquery parsing (#6508) (208a105)supportsConstructableStylesheetstest (#6510) (484b1b8)v4.40.0Compare Source
Bug Fixes
<style>(#6488) (34cb672)<template>elements (#6492) (8608bd9)<slot>(#6483) (44fb8de)shadowrootdelegatesfocusas a boolean ([#6490](https://redirect.github.com/steConfiguration
📅 Schedule: (in timezone America/Montreal)
🚦 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.
This PR was generated by Mend Renovate. View the repository job log.