8000 fix(deps): update astro dependencies by renovate[bot] · Pull Request #13749 · withastro/astro · GitHub
[go: up one dir, main page]

Skip to content

fix(deps): update astro dependencies #13749

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

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

Conversation

renovate[bot]
Copy link < 8000 /clipboard-copy>
Contributor
@renovate renovate bot commented May 5, 2025

This PR contains the following updates:

Package Change Age Confidence
@fontsource/monofett (source) 5.2.5 -> 5.2.6 age confidence
@fontsource/montserrat (source) 5.2.5 -> 5.2.6 age confidence
@playwright/test (source) ^1.51.1 -> ^1.54.1 age confidence
@preact/signals (source) 2.0.2 -> 2.2.1 age confidence
@rollup/pluginutils (source) ^5.1.4 -> ^5.2.0 age confidence
@tailwindcss/vite (source) ^4.0.17 -> ^4.1.11 age confidence
@types/estree (source) ^1.0.7 -> ^1.0.8 age confidence
@types/react (source) ^18.3.20 -> ^18.3.23 age confidence
@types/react-dom (source) ^18.3.5 -> ^18.3.7 age confidence
acorn ^8.14.1 -> ^8.15.0 age confidence
cheerio (source) 1.0.0 -> 1.1.2 age confidence
ci-info ^4.2.0 -> ^4.3.0 age confidence
debug ^4.4.0 -> ^4.4.1 age confidence
es-module-lexer ^1.6.0 -> ^1.7.0 age confidence
expect-type ^1.2.0 -> ^1.2.2 age confidence
fs-fixture ^2.7.1 -> ^2.8.1 age confidence
http-cache-semantics ^4.1.1 -> ^4.2.0 age confidence
linkedom ^0.18.9 -> ^0.18.11 age confidence
lit (source) ^3.2.1 -> ^3.3.1 age confidence
node-mocks-http ^1.16.2 -> ^1.17.2 age confidence
package-manager-detector ^1.1.0 -> ^1.3.0 age confidence
picomatch ^4.0.2 -> ^4.0.3 age confidence
postcss (source) ^8.5.3 -> ^8.5.6 age confidence
postcss-preset-env (source) ^10.1.5 -> ^10.2.4 age confidence
preact (source) ^10.26.4 -> ^10.26.9 age confidence
react (source) 19.0.0 -> 19.1.0 age confidence
react-dom (source) 19.0.0 -> 19.1.0 age confidence
remark-rehype ^11.1.1 -> ^11.1.2 age confidence
rollup (source) ^4.37.0 -> ^4.45.3 age confidence
sass ^1.86.0 -> ^1.89.2 age confidence
semver ^7.7.1 -> ^7.7.2 age confidence
shiki (source) ^3.2.1 -> ^3.8.1 age confidence
smol-toml ^1.3.4 -> ^1.4.1 age confidence
solid-js (source) ^1.9.5 -> ^1.9.7 age confidence
source-map ^0.7.4 -> ^0.7.6 age confidence
svelte (source) ^5.25.3 -> ^5.36.17 age confidence
tailwindcss (source) ^4.0.17 -> ^4.1.11 age confidence
tinyglobby ^0.2.12 -> ^0.2.14 age confidence
tsconfck (source) ^3.1.5 -> ^3.1.6 age confidence
typescript (source) ^5.8.2 -> ^5.8.3 age confidence
undici (source) ^7.5.0 -> ^7.12.0 age confidence
unifont ~0.5.0 -> ~0.5.2 age confidence
unstorage (source) ^1.15.0 -> ^1.16.1 age confidence
vite (source) ^6.3.4 -> ^6.3.5 age confidence
vitefu ^1.0.6 -> ^1.1.1 age confidence
vitest (source) ^3.0.9 -> ^3.2.4 age confidence
vue (source) ^3.5.13 -> ^3.5.18 age confidence
yocto-spinner ^0.2.1 -> ^0.2.3 age confidence
zod (source) ^3.24.4 -> ^3.25.76 age confidence
zod-to-json-schema ^3.24.5 -> ^3.24.6 age confidence

Release Notes

fontsource/font-files (@​fontsource/monofett)

v5.2.6

Compare Source

fontsource/font-files (@​fontsource/montserrat)

v5.2.6

Compare Source

microsoft/playwright (@​playwright/test)

v1.54.1

Compare Source

v1.54.0

Compare Source

Highlights

  • New cookie property partitionKey in browserContext.cookies() and browserContext.addCookies(). This property allows to save and restore partitioned cookies. See CHIPS MDN article for more information. Note that browsers have different support and defaults for cookie partitioning.

  • New option noSnippets to disable code snippets in the html report.

    import { defineConfig } from '@&#8203;playwright/test';
    
    export default defineConfig({
      reporter: [['html', { noSnippets: true }]]
    });
  • New property location in test annotations, for example in testResult.annotations and testInfo.annotations. It shows where the annotation like test.skip or test.fixme was added.

Command Line

  • New option --user-data-dir in multiple commands. You can specify the same user data dir to reuse browsing state, like authentication, between sessions.

    npx playwright codegen --user-data-dir=./user-data
  • Option -gv has been removed from the npx playwright test command. Use --grep-invert instead.

  • npx playwright open does not open the test recorder anymore. Use npx playwright codegen instead.

Miscellaneous

  • Support for Node.js 16 has been removed.
  • Support for Node.js 18 has been deprecated, and will be removed in the future.

Browser Versions

  • Chromium 139.0.7258.5
  • Mozilla Firefox 140.0.2
  • WebKit 26.0

This version was also tested against the following stable channels:

  • Google Chrome 140
  • Microsoft Edge 140

v1.53.2

Compare Source

v1.53.1

Compare Source

v1.53.0

Compare Source

Trace Viewer and HTML Reporter Updates

  • New Steps in Trace Viewer and HTML reporter: New Trace Viewer Steps

  • New option in 'html' reporter to set the title of a specific test run:

    import { defineConfig } from '@&#8203;playwright/test';
    
    export default defineConfig({
      reporter: [['html', { title: 'Custom test run #&#8203;1028' }]]
    });

Miscellaneous

  • New option kind in testInfo.snapshotPath() controls which snapshot path template is used.

  • New method locator.describe() to describe a locator. Used for trace viewer and reports.

    const button = page.getByTestId('btn-sub').describe('Subscribe button');
    await button.click();
  • npx playwright install --list will now list all installed browsers, versions and locations.

Browser Versions

  • Chromium 138.0.7204.4
  • Mozilla Firefox 139.0
  • WebKit 18.5

This version was also tested against the following stable channels:

  • Google Chrome 137
  • Microsoft Edge 137

v1.52.0

Compare Source

preactjs/signals (@​preact/signals)

v2.2.1

Compare Source

Patch Changes

v2.2.0

Compare Source

Minor Changes
Patch Changes

v2.1.1

Compare Source

Patch Changes

v2.1.0

Compare Source

Minor Changes

v2.0.5

Compare Source

Patch Changes
  • #​677 b990e7e Thanks @​JoviDeCroock! - We reduce the raf timeout to be just above a timeout that is associated with a 30hz refresh rate. This ensures that for hidden frames the timeout drift can't be too large, the drift being too high could lead to unexpected situations.

  • #​679 f51eef4 Thanks @​WeirdConstructor! - Fix accessing signals from Preact Class Component constructor.

v2.0.4

Compare Source

Patch Changes

v2.0.3

Compare Source

Patch Changes
rollup/plugins (@​rollup/pluginutils)

v5.2.0

2025-06-17

Features
  • feat: add exactRegex and prefixRegex (#​1865)
tailwindlabs/tailwindcss (@​tailwindcss/vite)

v4.1.11

Compare Source

Fixed
  • Add heuristic to skip candidate migrations inside emit(…) (#​18330)
  • Extract candidates with variants in Clojure/ClojureScript keywords (#​18338)
  • Document --watch=always in the CLI's usage (#​18337)
  • Add support for Vite 7 to @tailwindcss/vite (#​18384)

v4.1.10

Compare Source

Fixed
  • Fix incorrectly generated CSS when using percentages in arbitrary values with calc (e.g. w-[calc(100%-var(--offset))]) (#​18289)

v4.1.9

Compare Source

Fixed
  • Correctly parse custom properties with strings containing semicolons (#​18251)
  • Upgrade: Migrate arbitrary modifiers without percentage signs to bare values (e.g. /[0.16]/16) (#​18184)
  • Upgrade: Migrate CSS variable shorthands where fallback value contains function call (#​18184)
  • Upgrade: Migrate negative arbitrary values to negative bare values (e.g. mb-[-32rem]-mb-128) (#​18212)
  • Upgrade: Do not migrate blur in wire:model.blur (#​18216)
  • Don't add spaces around CSS dashed idents when formatting math expressions (#​18220)

v4.1.8

Compare Source

Added
  • Improve error messages when @apply fails (#​18059)
Fixed
  • Upgrade: Do not migrate declarations that look like candidates in <style> blocks (#​18057, 18068)
  • Upgrade: Don't error when looking for tailwindcss in pnpm monorepos (#​18065)
  • Upgrade: Don't error when updating dependencies in pnpm monorepos (#​18065)
  • Upgrade: Migrate deprecated order-none to order-0 (#​18126)
  • Support Leptos class: attributes when extracting classes (#​18093)
  • Fix "Cannot read properties of undefined" crash on malformed arbitrary value (#​18133)
  • Upgrade: Migrate -mt-[0px] to mt-[0px] instead of the other way around (#​18154)
  • Fix Haml pre-processing crash when there is no \n at the end of the file (#​18155)
  • Ignore .pnpm-store folders by default (can be overridden by @source … rules) (#​18163)
  • Fix PostCSS crash when calling toJSON() (#​18083)

v4.1.7

Compare Source

Added
  • Upgrade: Migrate bare values to named values (#​18000)
  • Upgrade: Added cache to improve template migration performance (#​18025)
Fixed
  • Allow _ before numbers during candidate extraction (#​17961)
  • Prevent duplicate suggestions when using @theme and @utility together (#​17675)
  • Ensure that media queries within ::before and ::after pseudo selectors create valid CSS rules in production builds (#​17979)
  • Ensure that the standalone CLI does not leave temporary files behind (#​17981)
  • Ensure -rotate-* utilities properly negate arbitrary values (#​18014)
  • Ignore custom variants using :merge(…) selectors in legacy JS plugins (#​18020)
  • Ensure classes containing . are properly extracted from 8000 Clojure files (#​18038)
  • Upgrade: Fix error when using @import … source(…) (#​17963)
  • Upgrade: Change casing of utilities with named values to kebab-case to match updated theme variables (#​18017)
  • Upgrade: Don't migrate strings that match utility names in Vue attribute bindings other than class (#​18025)

v4.1.6

Compare Source

Added
  • Upgrade: Automatically convert arbitrary values to named values when possible (e.g. h-[1lh] to h-lh) (#​17831, #​17854)
  • Upgrade: Update dependencies in parallel for improved performance (#​17898)
  • Add detailed logging about @source directives, discovered files and scanned files when using DEBUG=* (#​17906, #​17952)
  • Add support for generating source maps in development (#​17775)
Fixed
  • Ensure negative arbitrary scale values generate negative values (#​17831)
  • Fix HAML extraction with embedded Ruby (#​17846)
  • Don't scan files for utilities when using @reference (#​17836)
  • Fix incorrectly replacing _ with in arbitrary modifier shorthand bg-red-500/(--my_opacity) (#​17889)
  • Don't scan .log files for classes by default (#​17906)
  • Ensure that custom utilities applying other custom utilities don't swallow nested @apply rules (#​17925)
  • Download platform specific package if optionalDependencies are skipped (#​17929)

v4.1.5

Compare Source

Added
  • Support using @tailwindcss/upgrade to upgrade between versions of v4.* (#​17717)
  • Add h-lh / min-h-lh / max-h-lh utilities (#​17790)
  • Transition display, visibility, content-visibility, overlay, and pointer-events when using transition to simplify @starting-style usage (#​17812)
Fixed
  • Don't scan .geojson or .db files for classes by default (#​17700, #​17711)
  • Hide default shadow suggestions when missing default shadow theme keys (#​17743)
  • Replace _ with . in theme suggestions for @utility if surrounded by digits (#​17733)
  • Skip color-mix(…) when opacity is 100% (#​17815)
  • PostCSS: Ensure that errors in imported stylesheets are recoverable (#​17754)
  • Upgrade: Bump all Tailwind CSS related dependencies during upgrade (#​17763)
  • Upgrade: Don't add - to variants starting with @ (#​17814)
  • Upgrade: Don't format stylesheets that didn't change when upgrading (#​17824)
Changed
  • Ignore .hg, .svn, .venv, venv, .yarn, .next, .turbo, .parcel-cache, __pycache__, and .svelte-kit folders by default (can be overridden by @source … rules) (#​17892)
  • @source rules that point inside .hg, .svn, .venv, venv, .yarn, .next, .turbo, .parcel-cache, __pycache__, and .svelte-kit folders no longer consider your .gitignore rules (#​17892)

v4.1.4

Compare Source

Added
  • Add experimental @tailwindcss/oxide-wasm32-wasi target for running Tailwind in browser environments like StackBlitz (#​17558)
Fixed
  • Ensure color-mix(…) polyfills do not cause used CSS variables to be removed (#​17555)
  • Ensure color-mix(…) polyfills create fallbacks for theme variables that reference other theme variables (#​17562)
  • Fix brace expansion in declining ranges like {10..0..5} and {0..10..-5} (#​17591)
  • Work around a Chrome rendering bug when using the skew-* utilities (#​17627)
  • Ensure container query variant names can contain hyphens (#​17628)
  • Ensure shadow-inherit, inset-shadow-inherit, drop-shadow-inherit, and text-shadow-inherit inherit the shadow color (#​17647)
  • Ensure compatibility with array tuples used in fontSize JS theme keys (#​17630)
  • Ensure folders with binary file extensions in their names are scanned for utilities (#​17595)
  • Upgrade: Convert fontSize array tuple syntax to CSS theme variables (#​17630)
cheeriojs/cheerio (cheerio)

v1.1.2

Compare Source

What's Changed

Full Changelog: cheeriojs/cheerio@v1.1.1...v1.1.2

v1.1.1

Compare Source


v1.1.0

Compare Source

What's Changed

Doc Improvements

New Contributors

Full Changelog: cheeriojs/cheerio@v1.0.0...v1.1.0

watson/ci-info (ci-info)

v4.3.0

Compare Source

  • support Cloudflare workers e438266
guybedford/es-module-lexer (es-module-lexer)

v1.7.0

Compare Source

What's Changed

Full Changelog: guybedford/es-module-lexer@1.6.0...1.7.0

mmkal/expect-type (expect-type)

v1.2.2

Compare Source


v1.2.1

Compare Source

  • docs: update deprecated usage examples 0c5a05d

privatenumber/fs-fixture (fs-fixture)

v2.8.1

Compare Source

Bug Fixes

v2.8.0

Compare Source

Features
  • mkdir method & allow empty object to create dir (#​9) (0057155)

v2.7.2

Compare Source

Bug Fixes
kornelski/http-cache-semantics (http-cache-semantics)

v4.2.0

Compare Source

lit/lit (lit)

v3.3.1

Compare Source

Patch Changes
  • #​4997 aea85e24 - Update README

  • #​4988 6792b7ef Thanks @​ADNolan! - Adjusted the comparison to use the name property of the _$resolve function and the resolveOverrideFn in private ssr support to prevent duplicated patching of the directive class.

  • #​4976 a126d8df - Fix minor regression in property converters. fromAttribute may return either null or undefined.

v3.3.0

Compare Source

Minor Changes
  • #​4901 c9160405 Thanks @​maxpatiiuk! - Dev mode warnings are now emitted on the next microtask after package import, allowing for a wider opportunity to suppress the warnings by consumers.

  • #​4934 4824c4ce - Adds property option for useDefault. When set, the initial default value is not considered a change and does not reflect when reflect is set. In addition, when the attribute is removed, the default value is restored.

Patch Changes
  • [#&#

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 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 May 5, 2025
< 8000 div class=" timeline-comment-group js-minimizable-comment-group js-targetable-element TimelineItem-body my-0 " id="issuecomment-2849785665">
Copy link
changeset-bot bot commented May 5, 2025

⚠️ No Changeset found

Latest commit: a6a2638

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: integration Related to any renderer integration (scope) pkg: astro Related to the core `astro` package (scope) labels May 5, 2025
@renovate renovate bot force-pushed the renovate/astro-dependencies branch 11 times, most recently from 3e8b96a to 61fe55d Compare May 11, 2025 02:06
@renovate renovate bot force-pushed the renovate/astro-dependencies branch 13 times, most recently from bbe22ea to 5e84f78 Compare May 18, 2025 05:56
@renovate renovate bot force-pushed the renovate/astro-dependencies branch 2 times, most recently from 918cb13 to 6a86188 Compare May 20, 2025 04:03
@renovate renovate bot force-pushed the renovate/astro-dependencies branch 19 times, most recently from 3207bfd to 1366fa7 Compare July 21, 2025 19:00
@renovate renovate bot force-pushed the renovate/astro-dependencies branch 9 times, most recently from e3a355a to fda2d3f Compare July 26, 2025 03:13
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: integration Related to any renderer integration (scope)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants
0