Skip to content

chore(deps): update all patch dependencies #1083

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

Merged
merged 1 commit into from
May 12, 2025
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 12, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@modern-js/module-tools (source) ^2.67.3 -> ^2.67.4 age adoption passing confidence
@rsbuild/core (source) ^1.3.15 -> ^1.3.18 age adoption passing confidence
@rsbuild/plugin-react (source) ^1.3.0 -> ^1.3.1 age adoption passing confidence
@rspack/core (source) 1.3.8 -> 1.3.9 age adoption passing confidence
@rspress/plugin-llms (source) 2.0.0-beta.3 -> 2.0.0-beta.5 age adoption passing confidence
@types/cors (source) 2.8.17 -> 2.8.18 age adoption passing confidence
rspress-plugin-sitemap ^1.1.1 -> ^1.1.2 age adoption passing confidence
zod (source) ^3.24.1 -> ^3.24.4 age adoption passing confidence

Release Notes

web-infra-dev/modern.js (@​modern-js/module-tools)

v2.67.4

Compare Source

Patch Changes
web-infra-dev/rsbuild (@​rsbuild/core)

v1.3.18

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rsbuild@v1.3.17...v1.3.18

v1.3.17

Compare Source

What's Changed

New Features 🎉
Performance 🚀
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rsbuild@v1.3.16...v1.3.17

v1.3.16

Compare Source

What's Changed

Performance 🚀
New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rsbuild@v1.3.15...v1.3.16

web-infra-dev/rspack (@​rspack/core)

v1.3.9

Compare Source

What's Changed
Performance Improvements ⚡
Bug Fixes 🐞
Document Updates 📖
Other Changes

Full Changelog: web-infra-dev/rspack@v1.3.8...v1.3.9

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

v2.0.0-beta.5

Compare Source

Highlights✨

Use shiki v3 by default, drop prism support

related PR: https://github.com/web-infra-dev/rspress/pull/1672, https://github.com/web-infra-dev/rspress/pull/2046, https://github.com/web-infra-dev/rspress/pull/2122

Migrate all code highlighting from prism to shiki in compile time. It is worth noting that some code block syntax will be changed, e.g transformerNotationHighlight

More info: https://github.com/web-infra-dev/rspress/discussions/1891#discussioncomment-12458121

before

import { defineConfig } from 'rspress/config';
import { pluginShiki, createTransformerLineNumber, createTransformerDiff } from '@​rspress/plugin-shiki';

export default defineConfig({
  plugins: [
    pluginShiki({
      transformers: [
        createTransformerLineNumber(),
        createTransformerDiff(),
        // createTransformerErrorLevel(),
        // createTransformerHighlight(),
        // createTransformerFocus(),
      ],
    }),
  ],
});

after

import { defineConfig } from 'rspress/config';
import {
  transformerNotationDiff,
} from '@​shikijs/transformers';

export default defineConfig({
  markdown: {
    showLineNumber: true,
    shiki: {
        transformers: [
          transformerNotationDiff(),
          // transformerNotationErrorLevel(),
          // transformerNotationFocus(),
          // transformerNotationHighlight(),
      ],
    }
  }
});
Support JSON schema for _meta.json

related PR: #​2079

Now you can get type hints in the IDE. For example, in VSCode you can set

// .vscode/settings.json
{
 //...
 "json.schemas": [
    {
      "fileMatch": ["**/_meta.json"],
      "url": "./node_modules/rspress/meta-json-schema.json"
      // or "url": "https://unpkg.com/rspress@2.0.0-beta.5/meta-json-schema.json"
    }
  ],
  // ...
}

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rspress@v2.0.0-beta.4...v2.0.0-beta.5

v2.0.0-beta.4

Compare Source

Highlights✨

Enable dev.lazyCompilation: true by default

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

1. startup instantly

startup time 50x↑ faster with lazyCompilation: true

before 3.80s↓

image

after 0.05s↑

image

2. When preload meets lazyCompilation magic, a magical chemical burst out

Rspress will preload the corresponding route when hovering over the link, then a magical chemical reaction bursts out between lazyCompilation and preload, enabling a seamless refresh experience.

What's Changed

New Features 🎉
Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rspress@v2.0.0-beta.3...v2.0.0-beta.4

jl917/rspress-plugin-sitemap (rspress-plugin-sitemap)

v1.1.2

Compare Source

Bug Fixes
  • 确保生成sitemap.xml时目录存在 (adef522)

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.

Copy link

netlify bot commented May 12, 2025

Deploy Preview for rsdoctor ready!

Name Link
🔨 Latest commit d0b9022
🔍 Latest deploy log https://app.netlify.com/sites/rsdoctor/deploys/682166fe184a240007c93ac6
😎 Deploy Preview https://deploy-preview-1083--rsdoctor.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

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

@easy1090 easy1090 enabled auto-merge (squash) May 12, 2025 08:36
@easy1090 easy1090 merged commit f7ccd4a into main May 12, 2025
8 checks passed
@easy1090 easy1090 deleted the renovate/all-patch branch May 12, 2025 08:37
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