Skip to content

chore(deps): update all patch dependencies#5424

Merged
chenjiahan merged 1 commit intomainfrom
renovate/all-patch
Jun 16, 2025
Merged

chore(deps): update all patch dependencies#5424
chenjiahan merged 1 commit intomainfrom
renovate/all-patch

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jun 16, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@rsbuild/plugin-type-check ^1.2.2 -> ^1.2.3 age adoption passing confidence
@rspress/plugin-algolia (source) 2.0.0-beta.11 -> 2.0.0-beta.14 age adoption passing confidence
@rspress/plugin-client-redirects (source) 2.0.0-beta.11 -> 2.0.0-beta.14 age adoption passing confidence
@rspress/plugin-llms (source) 2.0.0-beta.11 -> 2.0.0-beta.14 age adoption passing confidence
@rspress/plugin-rss (source) 2.0.0-beta.11 -> 2.0.0-beta.14 age adoption passing confidence
@tailwindcss/postcss (source) ^4.1.8 -> ^4.1.10 age adoption passing confidence
@types/node (source) ^22.15.30 -> ^22.15.31 age adoption passing confidence
@types/react (source) ^19.1.6 -> ^19.1.8 age adoption passing confidence
@types/react (source) ^19.1.6 -> ^19.1.8 age adoption passing confidence
postcss (source) ^8.5.4 -> ^8.5.5 age adoption passing confidence
preact (source) ^10.26.8 -> ^10.26.9 age adoption passing confidence
rspress (source) 2.0.0-beta.11 -> 2.0.0-beta.14 age adoption passing confidence
sass ^1.89.1 -> ^1.89.2 age adoption passing confidence
svelte (source) ^5.34.1 -> ^5.34.3 age adoption passing confidence
tailwindcss (source) ^4.1.8 -> ^4.1.10 age adoption passing confidence

Release Notes

web-infra-dev/rspress (@​rspress/plugin-algolia)

v2.0.0-beta.14

Compare Source

Breaking Changes 🚨
Remove @rspress/plugin-shiki package and create rspress/shiki-transformers🔥

related PR: https://github.com/web-infra-dev/rspress/pull/2270

We have already enabled shiki by default, so this package is no longer maintained.

If you want to use some built-in transformers of Rspress, you can do this below:

import { transformerCompatibleMetaHighlight } from "rspress/shiki-transformers";

It also supports using it in React components,

For example:

import { CodeBlockRuntime } from '@​theme';
import { transformerNotationHighlight } from '@​shikijs/transformers';
import { transformerLineNumber } from "rspress/shiki-transformers";

<CodeBlockRuntime
  lang="ts"
  title="highlight.ts"
  code={`console.log('Highlighted'); // [!code highlight]
// [!code highlight:1]
console.log('Highlighted');
console.log('Not highlighted');`}
  shikiOptions={{
    transformers: [transformerNotationHighlight(), transformerLineNumber()],
  }}
/>
What's Changed
New Features 🎉
Bug Fixes 🐞
Other Changes
New Contributors

Full Changelog: web-infra-dev/rspress@v2.0.0-beta.13...v2.0.0-beta.14

v2.0.0-beta.13

Compare Source

What's Changed
Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rspress@v2.0.0-beta.12...v2.0.0-beta.13

v2.0.0-beta.12

Compare Source

What's Changed
New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rspress@v2.0.0-beta.11...v2.0.0-beta.12

tailwindlabs/tailwindcss (@​tailwindcss/postcss)

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)
postcss/postcss (postcss)

v8.5.5

Compare Source

  • Fixed package.jsonexports compatibility with some tools (by @​JounQin).
preactjs/preact (preact)

v10.26.9

Compare Source

Fixes

Maintenance

sveltejs/svelte (svelte)

v5.34.3

Compare Source

Patch Changes
  • fix: don't eagerly execute deriveds on resume (#​16150)

  • fix: prevent memory leaking signals in legacy mode (#​16145)

  • fix: don't define error.message if it's not configurable (#​16149)

v5.34.2

Compare Source

Patch Changes
  • fix: add missing typings for some dimension bindings (#​16142)

  • fix: prune typescript class field declarations (#​16154)


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.

@netlify
Copy link

netlify bot commented Jun 16, 2025

Deploy Preview for rsbuild ready!

Name Link
🔨 Latest commit 3b43b5e
🔍 Latest deploy log https://app.netlify.com/projects/rsbuild/deploys/684f6b572300260008d77cdc
😎 Deploy Preview https://deploy-preview-5424--rsbuild.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.
Lighthouse
Lighthouse
1 paths audited
Performance: 69 (🔴 down 6 from production)
Accessibility: 97 (no change from production)
Best Practices: 100 (no change from production)
SEO: 100 (no change from production)
PWA: 60 (no change from production)
View the detailed breakdown and full score reports

To edit notification comments on pull requests, go to your Netlify project configuration.

@chenjiahan chenjiahan merged commit 8b8762d into main Jun 16, 2025
12 checks passed
@chenjiahan chenjiahan deleted the renovate/all-patch branch June 16, 2025 01:22
@chenjiahan chenjiahan mentioned this pull request Jun 26, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant