Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jan 26, 2026

This PR contains the following updates:

Package Change Age Confidence
@astrojs/rss (source) ^4.0.15-beta.2^4.0.15 age confidence
@astrojs/sitemap (source) ^3.6.1-beta.2^3.7.0 age confidence
@playwright/test (source) 1.57.01.58.0 age confidence
@preact/signals (source) ^2.5.1^2.6.1 age confidence
alpinejs (source) ^3.15.4^3.15.5 age confidence
cheerio (source) 1.1.21.2.0 age confidence
htmlparser2 ^10.0.0^10.1.0 age confidence
prettier (source) ^3.8.0^3.8.1 age confidence
publint (source) ^0.3.16^0.3.17 age confidence
sass ^1.97.2^1.97.3 age confidence
solid-js (source) ^1.9.10^1.9.11 age confidence
svelte (source) ^5.46.1^5.49.0 age confidence
turbo (source) ^2.7.5^2.8.0 age confidence
typescript-eslint (source) ^8.53.0^8.54.0 age confidence
unist-util-visit ^5.0.0^5.1.0 age confidence
vite (source) ^7.1.7^7.3.1 age confidence
vue (source) ^3.5.26^3.5.27 age confidence
zod (source) ^4.0.0^4.3.6 age confidence

Release Notes

withastro/astro (@​astrojs/rss)

v4.0.15

Compare Source

Patch Changes
withastro/astro (@​astrojs/sitemap)

v3.7.0

Compare Source

Minor Changes
  • #​14471 4296373 Thanks @​Slackluky! - Adds the ability to split sitemap generation into chunks based on customizable logic. This allows for better management of large sitemaps and improved performance. The new chunks option in the sitemap configuration allows users to define functions that categorize sitemap items into different chunks. Each chunk is then written to a separate sitemap file.

    integrations: [
      sitemap({
        serialize(item) { th
          return item
        },
        chunks: { // this property will be treated last on the configuration
          'blog': (item) => {  // will produce a sitemap file with `blog` name (sitemap-blog-0.xml)
            if (/blog/.test(item.url)) { // filter path that will be included in this specific sitemap file
              item.changefreq = 'weekly';
              item.lastmod = new Date();
              item.priority = 0.9; // define specific properties for this filtered path
              return item;
            }
          },
          'glossary': (item) => {
            if (/glossary/.test(item.url)) {
              item.changefreq = 'weekly';
              item.lastmod = new Date();
              item.priority = 0.7;
              return item;
            }
          }
    
          // the rest of the path will be stored in `sitemap-pages.0.xml`
        },
      }),
    ],
    
    

v3.6.1

Compare Source

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

v1.58.0

Compare Source

preactjs/signals (@​preact/signals)

v2.6.1

Patch Changes

v2.6.0

Minor Changes
Patch Changes
alpinejs/alpine (alpinejs)

v3.15.5

Compare Source

Added

  • feat(x-model): add .change, .blur, and .enter event modifiers #​4728
cheeriojs/cheerio (cheerio)

v1.2.0

Compare Source

What's Changed

New Contributors

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

fb55/htmlparser2 (htmlparser2)

v10.1.0

Compare Source

What's Changed

  • entities was bumped from 6.0.1 to 7.0.1, bringing size & speed improvements #​2215
  • Test files are no longer shipped in the published module 72da671

New Contributors

Full Changelog: fb55/htmlparser2@v10.0.0...v10.1.0

prettier/prettier (prettier)

v3.8.1

Compare Source

publint/publint (publint)

v0.3.17

Compare Source

Patch Changes
sass/dart-sass (sass)

v1.97.3

Compare Source

  • Fix a bug where nesting an at-rule within multiple style rules in plain CSS
    could cause outer style rules to be omitted.
sveltejs/svelte (svelte)

v5.49.0

Compare Source

Minor Changes
  • feat: allow passing ShadowRootInit object to custom element shadow option (#​17088)
Patch Changes
  • fix: throw for unset createContext get on the server (#​17580)

  • fix: reset effects inside skipped branches (#​17581)

  • fix: preserve old dependencies when updating reaction inside fork (#​17579)

  • fix: more conservative assignment_value_stale warnings (#​17574)

  • fix: disregard popover elements when determining whether an element has content (#​17367)

  • fix: fire introstart/outrostart events after delay, if specified (#​17567)

  • fix: increment signal versions when discarding forks (#​17577)

v5.48.5

Compare Source

Patch Changes
  • fix: run boundary onerror callbacks in a microtask, in case they result in the boundary's destruction (#​17561)

  • fix: prevent unintended exports from namespaces (#​17562)

  • fix: each block breaking with effects interspersed among items (#​17550)

v5.48.4

Compare Source

Patch Changes
  • fix: avoid duplicating escaped characters in CSS AST (#​17554)

v5.48.3

Compare Source

Patch Changes
  • fix: hydration failing with settled async blocks (#​17539)

  • fix: add pointer and touch events to a11y_no_static_element_interactions warning (#​17551)

  • fix: handle false dynamic components in SSR (#​17542)

  • fix: avoid unnecessary block effect re-runs after async work completes (#​17535)

  • fix: avoid using dev-mode array.includes wrapper on internal array checks (#​17536)

v5.48.2

Compare Source

Patch Changes
  • fix: export wait function from internal client index (#​17530)

v5.48.1

Compare Source

Patch Changes
  • fix: hoist snippets above const in same block (#​17516)

  • fix: properly hydrate await in {@​html} (#​17528)

  • fix: batch resolution of async work (#​17511)

  • fix: account for empty statements when visiting in transform async (#​17524)

  • fix: avoid async overhead for already settled promises (#​17461)

  • fix: better code generation for const tags with async dependencies (#​17518)

v5.48.0

Compare Source

Minor Changes
  • feat: export parseCss from svelte/compiler (#​17496)
Patch Changes
  • fix: handle non-string values in svelte:element this attribute (#​17499)

  • fix: faster deduplication of dependencies (#​17503)

v5.47.1

Compare Source

Patch Changes
  • fix: trigger selectedcontent reactivity (#​17486)

v5.47.0

Compare Source

Minor Changes
  • feat: customizable <select> elements (#​17429)
Patch Changes
  • fix: mark subtree of svelte boundary as dynamic (#​17468)

  • fix: don't reset static elements with debug/snippets (#​17477)

vercel/turborepo (turbo)

v2.8.0: Turborepo v2.8.0

Compare Source

What's Changed

Docs
@​turbo/repository
Changelog

New Contributors

Full Changelog: vercel/turborepo@v2.7.6...v2.8.0

v2.7.6

Compare Source

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

v8.54.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.53.1

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.

syntax-tree/unist-util-visit (unist-util-visit)

v5.1.0

Compare Source

Types

Full Changelog: syntax-tree/unist-util-visit@5.0.0...5.1.0

vuejs/core (vue)

v3.5.27

Compare Source

Bug Fixes
colinhacks/zod (zod)

v4.3.6

Compare Source

Commits:

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 Jan 26, 2026
@changeset-bot
Copy link

changeset-bot bot commented Jan 26, 2026

⚠️ No Changeset found

Latest commit: 3e47870

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 feat: markdown Related to Markdown (scope) pkg: example Related to an example package (scope) pkg: integration Related to any renderer integration (scope) labels Jan 26, 2026
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 14 times, most recently from d610e99 to f85b90b Compare January 31, 2026 21:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f85b90b to 3e47870 Compare February 1, 2026 02:07
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: example Related to an example package (scope) pkg: integration Related to any renderer integration (scope)

0 participants