Skip to content

fix(deps): update all minor dependencies#1229

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

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

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Apr 18, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@eslint/js (source) 9.37.09.39.4 age confidence
@playwright/test (source) 1.57.01.60.0 age confidence
@playwright/test (source) 1.58.21.60.0 age confidence
@stencil/core (source) 4.35.14.43.4 age confidence
@stencil/playwright ^0.2.1^0.4.0 age confidence
@stencil/react-output-target (source) 1.1.01.5.2 age confidence
@stencil/vue-output-target (source) ^0.10.8^0.13.0 age confidence
@types/node (source) 24.8.124.12.4 age confidence
@types/react (source) 18.2.4818.3.28 age confidence
@types/react-dom (source) 18.2.1818.3.7 age confidence
@vitejs/plugin-react (source) 5.0.45.2.0 age confidence
@vitejs/plugin-vue (source) 5.0.45.2.4 age confidence
eslint (source) 9.37.09.39.4 age confidence
eslint-plugin-react-refresh ^0.4.22^0.5.0 age confidence
globals 16.4.016.5.0 age confidence
jasmine-core (source) ~5.8.0~5.13.0 age confidence
karma-jasmine-html-reporter ~2.1.0~2.2.0 age confidence
react (source) 18.2.018.3.1 age confidence
react-dom (source) 18.2.018.3.1 age confidence
react-router-dom (source) 7.12.07.15.1 age confidence
sass 1.97.31.99.0 age confidence
typescript (source) ~5.6.0~5.9.0 age confidence
typescript (source) ~5.1.0~5.9.0 age confidence
typescript (source) ~5.8.2~5.9.0 age confidence
typescript (source) 5.8.35.9.3 age confidence
typescript-eslint (source) 8.46.18.59.3 age confidence
zone.js (source, changelog) ^0.15.0^0.15.0 || ^0.16.0 age confidence

Review

  • Updates have been tested and work
  • If updates are AWS related, versions match the infrastructure (e.g. Lambda runtime, database, etc.)

Release Notes

eslint/eslint (@​eslint/js)

v9.39.4

Compare Source

v9.39.3

Compare Source

Bug Fixes

  • 791bf8d fix: restore TypeScript 4.0 compatibility in types (#​20504) (sethamus)

Chores

v9.39.2

Compare Source

v9.39.1

Compare Source

v9.39.0

Compare Source

v9.38.0

Compare Source

Features
  • ce40f74 feat: update complexity rule to only highlight function header (#​20048) (Atul Nair)
  • e37e590 feat: correct no-loss-of-precision false positives with e notation (#​20187) (Francesco Trotta)
Bug Fixes
  • 50c3dfd fix: improve type support for isolated dependencies in pnpm (#​20201) (Francesco Trotta)
  • a1f06a3 fix: correct SourceCode typings (#​20114) (Pixel998)
Documentation
  • 462675a docs: improve web accessibility by hiding non-semantic character (#​20205) (루밀LuMir)
  • c070e65 docs: correct formatting in no-irregular-whitespace rule documentation (#​20203) (루밀LuMir)
  • b39e71a docs: Update README (GitHub Actions Bot)
  • cd39983 docs: move custom-formatters type descriptions to nodejs-api (#​20190) (Percy Ma)
Chores
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

v1.59.1

Compare Source

v1.59.0

Compare Source

v1.58.2

Compare Source

v1.58.1

Compare 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
  • Chromium 145.0.7632.6
  • Mozilla Firefox 146.0.1
  • WebKit 26.0

v1.58.0

Compare Source

stenciljs/core (@​stencil/core)

v4.43.4

Compare Source

Bug Fixes

v4.43.3

Compare Source

Features

v4.43.2

Compare Source

Bug Fixes
  • add missing part setter to MockElement (#​6612) (abfdd57)
  • compiler: mixin jsx processing (#​6615) (ccda746)
  • compiler: proper discovery and processing of external mixins / classes (#​6620) (0ee951e)
  • dist-custom-elements: stop render function being stripped from imports (#​6623) (cd33ccb)
  • runtime: init prop reactivity when ele.prop === instance.prop (#​6614) (ad6a344)
  • runtime: mixin get / set @Prop infinite loop (#​6618) (11201b5)
  • types: provide warnings for ts 4094; anon classes may not be private or protected (#​6613) (3fbc441)
  • types: raise typescript errors even without components.d.ts (#​6616) (827d0d6)

v4.43.1

Compare Source

Bug Fixes

v4.43.0

Compare Source

Bug Fixes
Features

🌍 4.42.1 (2026-02-06)

Bug Fixes
  • compiler: make resolveVar for import (#​6588) (e4eeb37)
  • compiler: scrape build-conditionals from FunctionalComponents (#​6586) (d63bf5d)
  • css: make scoped 'slotted' selector replacement less greedy (#​6580) (10e6184)
  • docs: preserve css properties outside of production builds (#​6579) (69d331e)
  • mock-doc: add global instanceof HTMLElement / SVGElement plus new MockLabelElement (#​6581) (756b7aa)
  • runtime: dist parent should hydrate even when children fail (#​6583) (50ad901)
  • runtime: call componentShouldUpdate for every prop changed (#​6587) (dd4d2e6)
  • types: don't include [@internal](https://redirect.github.com/internal) properties in dist build required fields (#​6585) (6136a67)

v4.42.1

Compare Source

Bug Fixes
  • compiler: make resolveVar for import (#​6588) (e4eeb37)
  • compiler: scrape build-conditionals from FunctionalComponents (#​6586) (d63bf5d)
  • css: make scoped 'slotted' selector replacement less greedy (#​6580) (10e6184)
  • docs: preserve css properties outside of production builds (#​6579) (69d331e)
  • mock-doc: add global instanceof HTMLElement / SVGElement plus new MockLabelElement (#​6581) (756b7aa)
  • runtime: dist parent should hydrate even when children fail (#​6583) (50ad901)
  • runtime: call componentShouldUpdate for every prop changed (#​6587) (dd4d2e6)
  • types: don't include [@internal](https://redirect.github.com/internal) properties in dist build required fields (#​6585) (6136a67)

v4.42.0

Compare Source

Bug Fixes
Features

🎇 4.41.3 (2026-01-23)

Bug Fixes
  • build: auto add name, form and disabled to formAssociated components (#​6561) (4e19b99)
  • runtime: ref callback order (#​6552) (e006cf7)
  • runtime: PropSerialize not called for JSX props before instance creation (#​6558) (88b3315)
  • ssr: support jsxImportSource within hydrate-script output (#​6563) (5ca9668)
  • testing: initialise mock-doc childNodes with get / set. Allows patching during tests (#​6564) (dbaa9fb)

🐝 4.41.2 (2026-01-16)

Bug Fixes

🌴 4.41.1 (2026-01-08)

Bug Fixes
  • runtime: fix jsxImportSource Fragment handling (#​6531) (953346e)
  • ssr: remove global hack to stop duplicate tagTransformer instances (#​6529) (4bb24de)
  • types: add IntrinsicElements to jsximportSource runtime definitions (#​6532) (0fa0bc8)
  • types: FunctionalComponent can return null for jsxImportSource (#​6533) (82b47b8)

v4.41.3

Compare Source

Bug Fixes
  • build: auto add name, form and disabled to formAssociated components (#​6561) (4e19b99)
  • runtime: ref callback order (#​6552) (e006cf7)
  • runtime: PropSerialize not called for JSX props before instance creation (#​6558) (88b3315)
  • ssr: support jsxImportSource within hydrate-script output (#​6563) (5ca9668)
  • testing: initialise mock-doc childNodes with get / set. Allows patching during tests (#​6564) (dbaa9fb)

v4.41.2

Compare Source

Bug Fixes

v4.41.1

Compare Source

Bug Fixes
  • runtime: fix jsxImportSource Fragment handling (#​6531) (953346e)
  • ssr: remove global hack to stop duplicate tagTransformer instances (#​6529) (4bb24de)
  • types: add IntrinsicElements to jsximportSource runtime definitions (#​6532) (0fa0bc8)
  • types: FunctionalComponent can return null for jsxImportSource (#​6533) (82b47b8)

v4.41.0

Compare Source

Bug Fixes
  • build: always fail build on typescript failure (#​6520) (74aea99)
  • cli: --stats accepts optional path string as per documentation (#​6524) (42ebdfa)
  • compiler: stop error from globalScript lack of default export (#​6527) (ba03ccf)
  • css: strip line breaks from final template literal (#​6517) (dfeeaec)
  • runtime: allow cloneNode patch even without (#​6513) (e893bd1)
  • runtime: delay non-shadow onConnectedCallback; make sure slotted content is available (#​6519) (9e38aa7)
  • runtime: update non-shadow slotted content visibility via dynamic <slot> (#​6514) (cdcd873)
  • testing: jest / mixin related errors (#​6512) (5c17422)
  • types: components.d.ts - correctly import / export used enums (#​6522) (e243c6f)
Features
  • dev-server: new strictPort property (#​6523) (cc12853)
  • runtime: support tsconfig jsxImportSource (h import no longer necessary) (#​6525) (6482533)

🐂 4.40.1 (2025-12-23)

Bug Fixes

v4.40.1

Compare Source

Bug Fixes

v4.40.0

Compare Source

Bug Fixes

Note

PR body was truncated to here.


Configuration

📅 Schedule: (in timezone America/Montreal)

  • Branch creation
    • "every weekend"
  • 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 requested a review from a team as a code owner April 18, 2026 10:47
@renovate
Copy link
Copy Markdown
Contributor Author

renovate Bot commented Apr 18, 2026

⚠️ Artifact update problem

Renovate failed to update artifacts 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: packages/vue/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 ERESOLVE
npm error ERESOLVE could not resolve
npm error
npm error While resolving: @angular-devkit/build-angular@19.2.25
npm error Found: typescript@5.9.3
npm error node_modules/typescript
npm error   dev typescript@"^5.8.2" from the root project
npm error   peer typescript@">3.6.0" from fork-ts-checker-webpack-plugin@8.0.0
npm error   node_modules/fork-ts-checker-webpack-plugin
npm error     fork-ts-checker-webpack-plugin@"^8.0.0" from @storybook/builder-webpack5@8.6.14
npm error     node_modules/@storybook/builder-webpack5
npm error       @storybook/builder-webpack5@"8.6.14" from @storybook/html-webpack5@8.6.14
npm error       node_modules/@storybook/html-webpack5
npm error         dev @storybook/html-webpack5@"^8.0.9" from @gcds-core/components@1.2.0
npm error         packages/web
npm error   8 more (jest-preset-angular, cosmiconfig, cosmiconfig, ...)
npm error
npm error Could not resolve dependency:
npm error peer typescript@">=5.5 <5.9" from @angular-devkit/build-angular@19.2.25
npm error node_modules/@angular-devkit/build-angular
npm error   dev @angular-devkit/build-angular@"^19.2.20" from the root project
npm error
npm error Conflicting peer dependency: typescript@5.8.3
npm error node_modules/typescript
npm error   peer typescript@">=5.5 <5.9" from @angular-devkit/build-angular@19.2.25
npm error   node_modules/@angular-devkit/build-angular
npm error     dev @angular-devkit/build-angular@"^19.2.20" from the root project
npm error
npm error Fix the upstream dependency conflict, or retry this command with --force or --legacy-peer-deps to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /runner/cache/others/npm/_logs/2026-05-21T16_34_36_828Z-eresolve-report.txt
npm error A complete log of this run can be found in: /runner/cache/others/npm/_logs/2026-05-21T16_34_36_828Z-debug-0.log

File name: packages/react/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 ERESOLVE
npm error ERESOLVE could not resolve
npm error
npm error While resolving: @angular-devkit/build-angular@19.2.25
npm error Found: typescript@5.9.3
npm error node_modules/typescript
npm error   dev typescript@"^5.8.2" from the root project
npm error   peer typescript@">3.6.0" from fork-ts-checker-webpack-plugin@8.0.0
npm error   node_modules/fork-ts-checker-webpack-plugin
npm error     fork-ts-checker-webpack-plugin@"^8.0.0" from @storybook/builder-webpack5@8.6.14
npm error     node_modules/@storybook/builder-webpack5
npm error       @storybook/builder-webpack5@"8.6.14" from @storybook/html-webpack5@8.6.14
npm error       node_modules/@storybook/html-webpack5
npm error         dev @storybook/html-webpack5@"^8.0.9" from @gcds-core/components@1.2.0
npm error         packages/web
npm error   8 more (jest-preset-angular, cosmiconfig, cosmiconfig, ...)
npm error
npm error Could not resolve dependency:
npm error peer typescript@">=5.5 <5.9" from @angular-devkit/build-angular@19.2.25
npm error node_modules/@angular-devkit/build-angular
npm error   dev @angular-devkit/build-angular@"^19.2.20" from the root project
npm error
npm error Conflicting peer dependency: typescript@5.8.3
npm error node_modules/typescript
npm error   peer typescript@">=5.5 <5.9" from @angular-devkit/build-angular@19.2.25
npm error   node_modules/@angular-devkit/build-angular
npm error     dev @angular-devkit/build-angular@"^19.2.20" from the root project
npm error
npm error Fix the upstream dependency conflict, or retry this command with --force or --legacy-peer-deps to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /runner/cache/others/npm/_logs/2026-05-21T16_34_42_086Z-eresolve-report.txt
npm error A complete log of this run can be found in: /runner/cache/others/npm/_logs/2026-05-21T16_34_42_086Z-debug-0.log

File name: 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 ERESOLVE
npm error ERESOLVE could not resolve
npm error
npm error While resolving: @angular-devkit/build-angular@19.2.25
npm error Found: typescript@5.9.3
npm error node_modules/typescript
npm error   dev typescript@"^5.8.2" from the root project
npm error   peer typescript@">3.6.0" from fork-ts-checker-webpack-plugin@8.0.0
npm error   node_modules/fork-ts-checker-webpack-plugin
npm error     fork-ts-checker-webpack-plugin@"^8.0.0" from @storybook/builder-webpack5@8.6.14
npm error     node_modules/@storybook/builder-webpack5
npm error       @storybook/builder-webpack5@"8.6.14" from @storybook/html-webpack5@8.6.14
npm error       node_modules/@storybook/html-webpack5
npm error         dev @storybook/html-webpack5@"^8.0.9" from @gcds-core/components@1.2.0
npm error         packages/web
npm error   8 more (jest-preset-angular, cosmiconfig, cosmiconfig, ...)
npm error
npm error Could not resolve dependency:
npm error peer typescript@">=5.5 <5.9" from @angular-devkit/build-angular@19.2.25
npm error node_modules/@angular-devkit/build-angular
npm error   dev @angular-devkit/build-angular@"^19.2.20" from the root project
npm error
npm error Conflicting peer dependency: typescript@5.8.3
npm error node_modules/typescript
npm error   peer typescript@">=5.5 <5.9" from @angular-devkit/build-angular@19.2.25
npm error   node_modules/@angular-devkit/build-angular
npm error     dev @angular-devkit/build-angular@"^19.2.20" from the root project
npm error
npm error Fix the upstream dependency conflict, or retry this command with --force or --legacy-peer-deps to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /runner/cache/others/npm/_logs/2026-05-21T16_34_45_912Z-eresolve-report.txt
npm error A complete log of this run can be found in: /runner/cache/others/npm/_logs/2026-05-21T16_34_45_912Z-debug-0.log

File name: utils/angular-output-target/package-lock.json
npm ERR! code ERESOLVE
npm ERR! ERESOLVE could not resolve
npm ERR! 
npm ERR! While resolving: @angular-devkit/build-angular@19.2.25
npm ERR! Found: typescript@5.9.3
npm ERR! node_modules/typescript
npm ERR!   dev typescript@"^5.8.2" from the root project
npm ERR!   peer typescript@">3.6.0" from fork-ts-checker-webpack-plugin@8.0.0
npm ERR!   node_modules/fork-ts-checker-webpack-plugin
npm ERR!     fork-ts-checker-webpack-plugin@"^8.0.0" from @storybook/builder-webpack5@8.6.14
npm ERR!     node_modules/@storybook/builder-webpack5
npm ERR!       @storybook/builder-webpack5@"8.6.14" from @storybook/html-webpack5@8.6.14
npm ERR!       node_modules/@storybook/html-webpack5
npm ERR!         dev @storybook/html-webpack5@"^8.0.9" from @gcds-core/components@1.2.0
npm ERR!         packages/web
npm ERR!   8 more (jest-preset-angular, cosmiconfig, cosmiconfig, ...)
npm ERR! 
npm ERR! Could not resolve dependency:
npm ERR! peer typescript@">=5.5 <5.9" from @angular-devkit/build-angular@19.2.25
npm ERR! node_modules/@angular-devkit/build-angular
npm ERR!   dev @angular-devkit/build-angular@"^19.2.20" from the root project
npm ERR! 
npm ERR! Conflicting peer dependency: typescript@5.8.3
npm ERR! node_modules/typescript
npm ERR!   peer typescript@">=5.5 <5.9" from @angular-devkit/build-angular@19.2.25
npm ERR!   node_modules/@angular-devkit/build-angular
npm ERR!     dev @angular-devkit/build-angular@"^19.2.20" from the root project
npm ERR! 
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR! 
npm ERR! See /runner/cache/others/npm/eresolve-report.txt for a full report.

npm ERR! A complete log of this run can be found in:
npm ERR!     /runner/cache/others/npm/_logs/2026-05-21T16_35_15_465Z-debug-0.log

@renovate renovate Bot force-pushed the renovate/all-minor branch 10 times, most recently from e1fd4f8 to a1fceb0 Compare April 27, 2026 17:43
@renovate renovate Bot force-pushed the renovate/all-minor branch 5 times, most recently from 338958f to dc2d609 Compare May 4, 2026 23:29
@renovate renovate Bot force-pushed the renovate/all-minor branch 7 times, most recently from e1e206f to f6fc5fc Compare May 12, 2026 14:02
@renovate renovate Bot force-pushed the renovate/all-minor branch 4 times, most recently from 43f1172 to 9aaa546 Compare May 14, 2026 22:55
@renovate renovate Bot force-pushed the renovate/all-minor branch 5 times, most recently from 31d95c6 to c6d3156 Compare May 20, 2026 15:24
@renovate renovate Bot force-pushed the renovate/all-minor branch from c6d3156 to cf31bd4 Compare May 21, 2026 16:35
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.

0 participants