Skip to content

fix(deps): update all dependencies#345

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all
Open

fix(deps): update all dependencies#345
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all

Conversation

@renovate

@renovate renovate Bot commented Jul 1, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update
@​alauda/doc-stream-sdk 0.1.01.0.0 age confidence dependencies major
@rsbuild/plugin-sass (source) ^1.5.2^2.0.0 age confidence dependencies major
@rsbuild/plugin-yaml ^1.0.4^2.0.0 age confidence dependencies major
@rspress/core (source) 2.0.122.0.18 age confidence dependencies patch
@rspress/plugin-algolia (source) 2.0.122.0.18 age confidence dependencies patch
@rspress/plugin-sitemap (source) 2.0.122.0.18 age confidence dependencies patch
@rspress/shared (source) 2.0.122.0.18 age confidence dependencies patch
@rstest/core (source) ^0.10.0^0.11.0 age confidence devDependencies minor
@rstest/coverage-istanbul (source) ^0.10.0^0.11.0 age confidence devDependencies minor
actions/checkout v6.0.2v7.0.0 age confidence action major
actions/setup-node v6.4.0v7.0.0 age confidence action major
codecov/codecov-action v6v7 age confidence action major
commander ^14.0.3^15.0.0 age confidence dependencies major
ejs ^5.0.2^6.0.0 age confidence dependencies major
node (source) 24.15.024.18.0 age confidence minor
typescript (source) ^6.0.3^7.0.0 age confidence dependencies major
typescript (source) ^6.0.3^7.0.0 age confidence devDependencies major
x-fetch ^0.2.6^0.3.0 age confidence dependencies minor
yarn (source) 4.15.04.17.1 age confidence packageManager minor

Release Notes

web-infra-dev/rsbuild (@​rsbuild/plugin-sass)

v2.0.1

Compare Source

New features
Document

v2.0.0

Compare Source

Breaking changes
Other changes

v1.5.3

Compare Source

Bug fixes
Other changes
rstackjs/rsbuild-plugin-yaml (@​rsbuild/plugin-yaml)

v2.0.0

Compare Source

This package is now a pure ESM package.

What's Changed

New Contributors

Full Changelog: rstackjs/rsbuild-plugin-yaml@v1.0.5...v2.0.0

v1.0.5

Compare Source

What's Changed

Full Changelog: rstackjs/rsbuild-plugin-yaml@v1.0.4...v1.0.5

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

v2.0.18

Highlights
🤖 More Flexible LLM-ready Documentation

SSG-MD now supports custom llms.txt rendering through llms.llmsTxt, including asynchronous renderers and navigation-ordered page sections. The new themeConfig.llmsUI.injectLlmsHint option controls a hidden HTML hint that points LLMs to llms.txt, llms-full.txt, and the current page's Markdown version.

🌍 Better Multilingual SEO

Rspress now adds reciprocal rel="alternate" and hreflang links for translations that actually exist, with generated URLs respecting base, siteOrigin, and route.cleanUrls.

⚡ Faster Route Hydration

Each generated page now preloads its current async route chunk, starting the download before the client runtime begins hydration and removing an extra network waterfall. Preload URLs support base, CDN asset prefixes, and assetPrefix: 'auto'.

What's Changed
New Features 🎉
Performance 🚀
Bug Fixes 🐞
Refactor 🔨
Other Changes
New Contributors

Full Changelog: web-infra-dev/rspress@v2.0.17...v2.0.18

v2.0.17

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Other Changes

New Contributors

Full Changelog: web-infra-dev/rspress@v2.0.16...v2.0.17

v2.0.16

Compare Source

What's Changed
New Features 🎉
  • feat(mdx/container): Support [!IMPORTANT] callout for feature parity with GitHub-flavored markdown by @​mnebes in #​3493
Bug Fixes 🐞
Refactor 🔨
Document 📖
Other Changes
New Contributors

Full Changelog: web-infra-dev/rspress@v2.0.15...v2.0.16

v2.0.15

Compare Source

Highlights
🌙 themeConfig.darkMode supports default and forced values

You can now set the default or forced theme behavior directly via themeConfig.darkMode, instead of relying on window.RSPRESS_THEME. It accepts values like 'dark', 'light', 'auto', 'force-dark', and 'force-light'.

import { defineConfig } from '@​rspress/core';

export default defineConfig({
  themeConfig: {
    darkMode: 'force-dark',
  },
});
🔗 Markdown anchor link validation

Rspress now validates internal heading hash links during builds. Enable markdown.link.checkAnchors to catch broken anchors in same-page, relative, and absolute Markdown/MDX links.

import { defineConfig } from '@​rspress/core';

export default defineConfig({
  markdown: {
    link: {
      checkAnchors: true,
    },
  },
});
What's Changed
New Features 🎉
Performance 🚀
Bug Fixes 🐞
Refactor 🔨
Document 📖
Other Changes
New Contributors

Full Changelog: web-infra-dev/rspress@v2.0.14...v2.0.15

v2.0.14

Compare Source

What's Changed

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

New Contributors

Full Changelog: web-infra-dev/rspress@v2.0.13...v2.0.14

v2.0.13

Compare Source

What's Changed

🐛 Bug Fixes
🛠 Refactors
  • refactor(ssg-md): use import.meta env for SSG-MD and add snapshot tests by @​SoonIter in #​3406
📦 Chores & Dependencies

Full Changelog: web-infra-dev/rspress@v2.0.12...v2.0.13

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

v0.11.2

Compare Source

Highlights
Your last run now makes the next one faster

Rstest remembers how each test file did last run, and uses it two ways.

Failures come back first — no flag needed. Previously failed files now run first, so a broken test shows up at the start instead of the end. Slowest files go out first too, trimming wall-clock time on CI where workers are scarce.

Or skip the passing files with --onlyFailures. When one change breaks several files, -f runs only what failed, so each fix-and-verify round stays short. Once nothing is failing, the next -f goes back to the full suite instead of running nothing.

npx rstest -f

# onlyFailures: running 2 of 14 test files (12 deselected).

See onlyFailures for details.

Rsbuild plugins can now read your Rstest config

getRstestConfig gives an Rsbuild plugin the resolved config for the environment it's building — the project's settings merged with run-level ones like pool, reporters, and shard. Useful for tailoring plugin behavior per project.

import type { RsbuildPlugin } from '@​rsbuild/core';
import type { RstestExposeAPI } from '@​rstest/core';

export const myPlugin = (): RsbuildPlugin => ({
  name: 'read-rstest-config',
  setup(api) {
    const rstestConfig = api
      .useExposed<RstestExposeAPI>('rstest')
      ?.getRstestConfig();

    console.log(rstestConfig?.name);
  },
});

See Read Rstest config in Rsbuild plugins for details.

What's Changed
New Features 🎉
Performance 🚀
Bug Fixes 🐞
Refactor 🔨
Document 📖
Other Changes
New Contributors

Full Changelog: web-infra-dev/rstest@v0.11.1...v0.11.2

v0.11.1

Compare Source

Highlights

New Playwright integration package

This release adds @rstest/playwright, providing Playwright-style browser automation fixtures such as browser, context, page, request, and serve, plus Playwright-style async assertions integrated with Rstest expect.

import { expect, test } from '@&#8203;rstest/playwright';

test('home page', async ({ page, serve }) => {
  const { url } = await serve('./dist/index.html');

  await page.goto(url);
  await expect(page.locator('h1

>  **Note**
> 
> PR body was truncated to here.


</details>

---

### Configuration

📅 **Schedule**: (UTC)

- Branch creation
  - Between 12:00 AM and 03:59 AM, on day 1 of the month (`* 0-3 1 * *`)
- Automerge
  - At any time (no schedule defined)

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

 **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/alauda/doom).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yNDIuMiIsInVwZGF0ZWRJblZlciI6IjQzLjI2NS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

@changeset-bot

changeset-bot Bot commented Jul 1, 2026

Copy link
Copy Markdown

⚠️ No Changeset found

Latest commit: 4f40138

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.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

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

@renovate
renovate Bot force-pushed the renovate/all branch 6 times, most recently from 5ecf124 to 31c35ac Compare July 8, 2026 23:30
@renovate
renovate Bot force-pushed the renovate/all branch 4 times, most recently from 5e43391 to 5161e9a Compare July 15, 2026 12:01
@renovate

renovate Bot commented Jul 17, 2026

Copy link
Copy Markdown
Contributor Author

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: yarn.lock
➤ YN0000: · Yarn 4.17.1
➤ YN0000: ┌ Resolution step
➤ YN0016: │ @rspress/core@npm:2.0.18: All versions satisfying "2.0.18" are quarantined
➤ YN0000: └ Completed in 1s 192ms
➤ YN0000: · Failed with errors in 1s 202ms

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.

0 participants