Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 27, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@astrojs/node (source) ^9.0.1 -> ^9.0.2 age adoption passing confidence
@changesets/cli (source) ^2.27.11 -> ^2.27.12 age adoption passing confidence
@playwright/test (source) 1.49.1 -> 1.50.0 age adoption passing confidence
@playwright/test (source) ^1.49.1 -> ^1.50.0 age adoption passing confidence
eslint (source) ^9.18.0 -> ^9.19.0 age adoption passing confidence
linkedom ^0.18.6 -> ^0.18.7 age adoption passing confidence
p-queue ^8.0.1 -> ^8.1.0 age adoption passing confidence
rollup (source) ^4.31.0 -> ^4.32.1 age adoption passing confidence
svelte (source) ^5.19.0 -> ^5.19.4 age adoption passing confidence
turbo (source) ^2.3.3 -> ^2.3.4 age adoption passing confidence
typescript-eslint (source) ^8.20.0 -> ^8.22.0 age adoption passing confidence
undici (source) ^7.2.3 -> ^7.3.0 age adoption passing confidence
vite (source) ^6.0.9 -> ^6.0.11 age adoption passing confidence
vite-plugin-vue-devtools (source) ^7.7.0 -> ^7.7.1 age adoption passing confidence
vitest (source) ^3.0.2 -> ^3.0.4 age adoption passing confidence
yocto-spinner ^0.1.2 -> ^0.2.0 age adoption passing confidence

Release Notes

withastro/adapters (@​astrojs/node)

v9.0.2

Compare Source

Patch Changes
changesets/changesets (@​changesets/cli)

v2.27.12

Compare Source

Patch Changes
microsoft/playwright (@​playwright/test)

v1.50.0

Compare Source

Test runner

  • New option timeout allows specifying a maximum run time for an individual test step. A timed-out step will fail the execution of the test.

    test('some test', async ({ page }) => {
      await test.step('a step', async () => {
        // This step can time out separately from the test
      }, { timeout: 1000 });
    });
  • New method test.step.skip() to disable execution of a test step.

    test('some test', async ({ page }) => {
      await test.step('before running step', async () => {
        // Normal step
      });
    
      await test.step.skip('not yet ready', async () => {
        // This step is skipped
      });
    
      await test.step('after running step', async () => {
        // This step still runs even though the previous one was skipped
      });
    });
  • Expanded expect(locator).toMatchAriaSnapshot() to allow storing of aria snapshots in separate YAML files.

  • Added method expect(locator).toHaveAccessibleErrorMessage() to assert the Locator points to an element with a given aria errormessage.

  • Option testConfig.updateSnapshots added the configuration enum changed. changed updates only the snapshots that have changed, whereas all now updates all snapshots, regardless of whether there are any differences.

  • New option testConfig.updateSourceMethod defines the way source code is updated when testConfig.updateSnapshots is configured. Added overwrite and 3-way modes that write the changes into source code, on top of existing patch mode that creates a patch file.

    npx playwright test --update-snapshots=changed --update-source-method=3way
  • Option testConfig.webServer added a gracefulShutdown field for specifying a process kill signal other than the default SIGKILL.

  • Exposed testStep.attachments from the reporter API to allow retrieval of all attachments created by that step.

UI updates

  • Updated default HTML reporter to improve display of attachments.
  • New button for picking elements to produce aria snapshots.
  • Additional details (such as keys pressed) are now displayed alongside action API calls in traces.
  • Display of canvas content in traces is error-prone. Display is now disabled by default, and can be enabled via the Display canvas content UI setting.
  • Call and Network panels now display additional time information.

Breaking

Browser Versions

  • Chromium 133.0.6943.16
  • Mozilla Firefox 134.0
  • WebKit 18.2

This version was also tested against the following stable channels:

  • Google Chrome 132
  • Microsoft Edge 132
eslint/eslint (eslint)

v9.19.0

Compare Source

WebReflection/linkedom (linkedom)

v0.18.7

Compare Source

sindresorhus/p-queue (p-queue)

v8.1.0

Compare Source

rollup/rollup (rollup)

v4.32.1

Compare Source

2025-01-28

Bug Fixes
  • Fix possible crash when optimizing logical expressions (#​5804)
Pull Requests

v4.32.0

Compare Source

2025-01-24

Features
  • Add watch.onInvalidate option to trigger actions immediately when a file is changed (#​5799)
Bug Fixes
  • Fix incorrect urls in CLI warnings (#​5809)
Pull Requests
sveltejs/svelte (svelte)

v5.19.4

Compare Source

Patch Changes
  • fix: Add bind:focused property to HTMLAttributes type (#​15122)

  • fix: lazily connect derievds (in deriveds) to their parent (#​15129)

  • fix: disallow $state/$derived in const tags (#​15115)

v5.19.3

Compare Source

Patch Changes
  • fix: don't throw for undefined non delegated event handlers (#​15087)

  • fix: consistently set value to blank string when value attribute is undefined (#​15057)

  • fix: optimise || expressions in template (#​15092)

  • fix: correctly handle novalidate attribute casing (#​15083)

  • fix: expand boolean attribute support (#​15095)

  • fix: avoid double deriveds in component props (#​15089)

  • fix: add check for is attribute to correctly detect custom elements (#​15086)

v5.19.2

Compare Source

Patch Changes
  • fix: address regression with untrack (#​15079)

v5.19.1

Compare Source

Patch Changes
  • fix: omit unnecessary nullish coallescing in template expressions (#​15056)

  • fix: more efficient template effect grouping (#​15050)

  • fix: ensure untrack correctly retains the active reaction (#​15065)

  • fix: initialize files bind on hydration (#​15059)

vercel/turborepo (turbo)

v2.3.4: Turborepo v2.3.4

Compare Source

What's Changed
Docs
create-turbo
@​turbo/codemod
eslint
@​turbo/repository
Examples
Changelog
New Contributors

Full Changelog: vercel/turborepo@v2.3.3...v2.3.4

typescript-eslint/typescript-eslint (typescript-eslint)

v8.22.0

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.21.0

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

nodejs/undici (undici)

v7.3.0

Compare Source

What's Changed

Full Changelog: nodejs/undici@v7.2.3...v7.3.0

vitejs/vite (vite)

v6.0.11

Compare Source

v6.0.10

Compare Source

  • fix: try parse server.origin URL (#​19241) (2495022), closes [#​19241](https:/

Configuration

📅 Schedule: Branch creation - "* 0-3 * * 1" (UTC), 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 added the dependencies Pull requests that update a dependency file label Jan 27, 2025
Copy link

changeset-bot bot commented Jan 27, 2025

⚠️ No Changeset found

Latest commit: 2452093

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@github-actions github-actions bot added pkg: svelte Related to Svelte (scope) pkg: vue Related to Vue (scope) pkg: example Related to an example package (scope) pkg: react Related to React (scope) pkg: preact Related to Preact (scope) pkg: solid Related to Solid (scope) pkg: integration Related to any renderer integration (scope) pkg: astro Related to the core `astro` package (scope) labels Jan 27, 2025
Copy link

codspeed-hq bot commented Jan 27, 2025

CodSpeed Performance Report

Merging #13074 will not alter performance

Comparing renovate/all-minor-patch (2452093) with main (e36837f)

Summary

✅ 6 untouched benchmarks

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from a6b7059 to 467fc4b Compare January 28, 2025 10:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 467fc4b to 2452093 Compare January 28, 2025 14:49
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 pkg: astro Related to the core `astro` package (scope) pkg: example Related to an example package (scope) pkg: integration Related to any renderer integration (scope) pkg: preact Related to Preact (scope) pkg: react Related to React (scope) pkg: solid Related to Solid (scope) pkg: svelte Related to Svelte (scope) pkg: vue Related to Vue (scope)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants