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
@rspress/core (source) 2.0.122.0.16 age confidence dependencies patch
@rspress/plugin-algolia (source) 2.0.122.0.16 age confidence dependencies patch
@rspress/plugin-sitemap (source) 2.0.122.0.16 age confidence dependencies patch
@rspress/shared (source) 2.0.122.0.16 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
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
x-fetch ^0.2.6^0.3.0 age confidence dependencies minor
yarn (source) 4.15.04.17.0 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
web-infra-dev/rspress (@​rspress/core)

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.0

Compare Source

What's Changed

Breaking Changes 🍭
New Features 🎉
Performance 🚀
  • perf(coverage-v8): optimize V8 AST coverage conversion by @​9aoy in #​1490
  • perf(coverage-v8): resolve raw coverage in main process by @​9aoy in #​1501
Bug Fixes 🐞
Document 📖
Other Changes

New Contributors

Full Changelog: web-infra-dev/rstest@v0.10.6...v0.11.0

v0.10.6

Compare Source

What's Changed
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rstest@v0.10.5...v0.10.6

v0.10.5

Compare Source

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

Full Changelog: web-infra-dev/rstest@v0.10.4...v0.10.5

v0.10.4

Compare Source

What's Changed
New Features 🎉
Bug Fixes 🐞
Refactor 🔨
  • refactor(core): single-source RSTEST_* env-var names by @​fi3ework in #​1387
  • refactor(core, adapters): single-source adapter cache-key & target→env logic by @​fi3ework in #​1384
  • refactor(coverage): single-source provider contract and align collect error handling by @​fi3ework in #​1385
  • refactor(core): single-source reporter map and GitHub Actions detection by @​fi3ework in #​1383
  • refactor(core): single-source test-execution runtime contracts by @​fi3ework in #​1381
  • refactor(browser): deepen core↔browser seam and close browser-mode drift hazards by @​fi3ework in #​1382
  • refactor(core): consolidate runtime primitives (file task-id, env-loader registry, scoped-restore LIFO) by @​fi3ework in #​1379
  • refactor(browser): single-source the runner dispatch method vocabulary by @​fi3ework in #​1380
  • refactor(browser): single-source the snapshot RPC method/args contract by @​fi3ework in #​1377
  • refactor(core): single-source reporter run-count derivation and CLI/init owners by @​fi3ework in #​1374
  • refactor(core): gate global setup once and co-locate run verdict by @​fi3ework in #​1371
  • refactor(core): derive hook registration signatures from RunnerAPI by @​fi3ework in #​1370
  • refactor(core): own runtime-contract grammar for chunk names and worker import hooks by @​fi3ework in #​1366
  • refactor(core, browser): deepen core↔browser seams and dedupe shared primitives by @​fi3ework in #​1362
  • refactor(core): unify dynamic-import resolver across CJS/ESM worker loaders by @​fi3ework in #​1359
  • refactor(browser): drop unused internal browser surface by @​fi3ework in #​1360
  • refactor(core): move internal browser host subpaths under ./internal by @​fi3ework in #​1358
Document 📖
Other Changes

Full Changelog: web-infra-dev/rstest@v0.10.3...v0.10.4

v0.10.3

Compare Source

What's Changed
New Features 🎉
Performance 🚀
Bug Fixes 🐞

Note

PR body was truncated to here.


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 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.

@changeset-bot

changeset-bot Bot commented Jul 1, 2026

Copy link
Copy Markdown

⚠️ No Changeset found

Latest commit: 0b71105

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 2 times, most recently from fe22782 to de77c33 Compare July 3, 2026 08:51
@renovate

renovate Bot commented Jul 3, 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.0
➤ YN0000: ┌ Resolution step
➤ YN0016: │ @rstest/core@npm:^0.11.0: All versions satisfying "^0.11.0" are quarantined
➤ YN0000: └ Completed in 1s 376ms
➤ YN0000: · Failed with errors in 1s 396ms

@renovate renovate Bot force-pushed the renovate/all branch from de77c33 to 0b71105 Compare July 6, 2026 08:49
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