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

Merged
merged 2 commits into from
Jan 31, 2025
Merged

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
@tailwindcss/vite (source) ^4.0.0 -> ^4.0.1 age adoption passing confidence
@types/html-escaper (source) ^3.0.2 -> ^3.0.3 age adoption passing confidence
eslint (source) ^9.18.0 -> ^9.19.0 age adoption passing confidence
fs-fixture ^2.6.0 -> ^2.7.0 age adoption passing confidence
linkedom ^0.18.6 -> ^0.18.7 age adoption passing confidence
open-props ^1.7.10 -> ^1.7.12 age adoption passing confidence
p-queue ^8.0.1 -> ^8.1.0 age adoption passing confidence
preferred-pm (source) ^4.0.0 -> ^4.1.0 age adoption passing confidence
rollup (source) ^4.31.0 -> ^4.32.1 age adoption passing confidence
semver ^7.6.3 -> ^7.7.0 age adoption passing confidence
shiki (source) ^1.29.1 -> ^1.29.2 age adoption passing confidence
svelte (source) ^5.19.0 -> ^5.19.6 age adoption passing confidence
tailwindcss (source) ^4.0.0 -> ^4.0.1 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-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
tailwindlabs/tailwindcss (@​tailwindcss/vite)

v4.0.1

Compare Source

Added
  • Include :open pseudo-class in existing open variant (#​15349)
Fixed
  • Remove invalid min-w/h-none utilities (#​15845)
  • Discard CSS variable shorthand utilities that don't use valid CSS variables (#​15738)
  • Ensure font-size utilities with none modifier have a line-height set e.g. text-sm/none (#​15921)
  • Ensure font-size utilities with unknown modifier don't generate CSS (#​15921)
  • Don’t suggest font weight utilities more than once (#​15857)
  • Suggest container query variants (#​15857)
  • Disable bare value suggestions when not using the --spacing variable (#​15857)
  • Ensure suggested classes are properly sorted (#​15857)
  • Don’t look at .gitignore files outside initialized repos (#​15941)
  • Find utilities when using the Svelte class shorthand syntax across multiple lines (#​15974)
  • Find utilities when using the Angular class shorthand syntax (#​15974)
  • Find utilities when using functions inside arrays (#​15974)
  • Ensure that @tailwindcss/browser does not pollute the global namespace (#​15978)
  • Ensure that tailwind-merge is not scanned when using the Vite plugin (#​16005)
  • Ensure CSS theme variables are available within shadow roots (#​15975)
  • Fix crash when project lives in the / directory (#​15988)
  • Ensure custom variants have a non-empty selector list (#​16009)
  • Upgrade: Ensure JavaScript config files on different drives are correctly migrated (#​15927)
  • Upgrade: Migrate leading-[1] to leading-none (#​16004)
  • Upgrade: Do not migrate arbitrary leading utilities to bare values (#​16004)
eslint/eslint (eslint)

v9.19.0

Compare Source

privatenumber/fs-fixture (fs-fixture)

v2.7.0

Compare Source

Features
WebReflection/linkedom (linkedom)

v0.18.7

Compare Source

argyleink/open-props (open-props)

v1.7.12

Compare Source

v1.7.11

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
npm/node-semver (semver)

v7.7.0

Compare Source

Features
Bug Fixes
Documentation
Chores
shikijs/shiki (shiki)

v1.29.2

Compare Source

   🚨 Breaking Changes
   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
sveltejs/svelte (svelte)

v5.19.6

Compare Source

Patch Changes
  • fix: do not prune selectors like :global(.foo):has(.scoped) (#​15140)

  • fix: don't error on slot prop inside block inside other component (#​15148)

  • fix: ensure reactions are correctly attached for unowned deriveds (#​15158)

  • fix: silence a11y attribute warnings when spread attributes present (#​15150)

  • fix: prevent false-positive ownership validations due to hot reload (#​15154)

  • fix: widen ownership when calling setContext (#​15153)

v5.19.5

Compare Source

Patch Changes
  • fix: improve derived connection to ownership graph (#​15137)

  • fix: correctly look for sibling elements inside blocks and components when pruning CSS (#​15106)

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

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: 1634afd

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 (1634afd) with main (187c4d3)

Summary

✅ 6 untouched benchmarks

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from 2b5b714 to 9664a25 Compare January 29, 2025 19:18
@github-actions github-actions bot removed pkg: react Related to React (scope) pkg: preact Related to Preact (scope) pkg: solid Related to Solid (scope) labels Jan 29, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 51f1e93 to d15c9d6 Compare January 30, 2025 10:36
@github-actions github-actions bot added the feat: markdown Related to Markdown (scope) label Jan 30, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 1a95831 to 395df77 Compare January 31, 2025 00:55
@florian-lefebvre florian-lefebvre linked an issue Jan 31, 2025 that may be closed by this pull request
1 task
@ematipico
Copy link
Member

I have no idea what's going on with html-escaper but it's all broken. I tried to look into it but the error is so weird that I don't think we are able to fix it.

@ematipico ematipico closed this Jan 31, 2025
@ematipico ematipico reopened this Jan 31, 2025
@ematipico ematipico force-pushed the renovate/all-minor-patch branch from 395df77 to 1634afd Compare January 31, 2025 13:39
Copy link
Contributor Author

renovate bot commented Jan 31, 2025

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@ematipico ematipico merged commit cbd056c into main Jan 31, 2025
17 checks passed
@ematipico ematipico deleted the renovate/all-minor-patch branch January 31, 2025 14:34
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 feat: markdown Related to Markdown (scope) 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: svelte Related to Svelte (scope) pkg: vue Related to Vue (scope)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

@astrojs/upgrade still using "preferred-pm": "^4.0.0"
1 participant