Skip to content

fix(deps): update all non-major dependencies#46

Merged
chenjiahan merged 2 commits intomainfrom
renovate/all-minor-patch
Feb 3, 2026
Merged

fix(deps): update all non-major dependencies#46
chenjiahan merged 2 commits intomainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Feb 1, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update
@astrojs/sitemap (source) ^3.6.0^3.7.0 age confidence devDependencies minor
@rslib/core (source) 0.18.20.19.4 age confidence devDependencies minor
@rstest/core (source) ^0.6.8^0.8.2 age confidence devDependencies minor
@types/node (source) 22.19.122.19.8 age confidence devDependencies patch
fs-extra ^11.3.2^11.3.3 age confidence devDependencies patch
node 22.21.122.22.0 age confidence uses-with minor
node 20.19.620.20.0 age confidence uses-with minor
pnpm (source) 10.24.010.28.2 age confidence packageManager minor
pnpm (source) 10.24.010.28.2 age confidence uses-with minor
prettier (source) ^3.7.3^3.8.1 age confidence dependencies minor
rollup (source) ^4.53.3^4.57.1 age confidence dependencies minor
terser (source) ^5.44.1^5.46.0 age confidence dependencies minor

Release Notes

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
web-infra-dev/rslib (@​rslib/core)

v0.19.4

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

New Contributors

Full Changelog: web-infra-dev/rslib@v0.19.3...v0.19.4

v0.19.3

Compare Source

What's Changed

Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.19.2...v0.19.3

v0.19.2

Compare Source

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

Full Changelog: web-infra-dev/rslib@v0.19.1...v0.19.2

v0.19.1

Compare Source

What's Changed

Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.19.0...v0.19.1

v0.19.0

Compare Source

Highlights 💡

New JavaScript API

This release introduces a new, comprehensive JavaScript API for Rslib.

[!CAUTION]
This is a Breaking Change. The previously exposed informal API has been removed. You can switch to the new JavaScript API and refer to the docs below to re-integrate.

See the API docs for details:

Usage
  1. Install Rslib: install the @rslib/core package:
npm add @​rslib/core -D
  1. Create an Rslib instance: call the createRslib method to create an Rslib instance:
import { createRslib } from '@​rslib/core';

const rslib = await createRslib();
  1. Call Rslib instance methods: use the rslib.build method which will build production outputs:
await rslib.build();
Advanced ESM Output

In previous versions, Rslib integrated Rspack's EsmLibraryPlugin through an experimental configuration of experiments.advancedEsm, aiming to optimize the quality of ESM outputs. Now, we are pleased to announce that this plugin has been stabilized.

In this release, the EsmLibraryPlugin is enabled by default by setting experiments.advancedEsm to true in bundle mode. Developers can directly obtain ESM output that is high-quality, more friendly to static analysis, and supports code splitting without any additional configuration.

Better Rstest Integration

Rslib now supports seamless integration with Rstest.

By using the official @​rstest/adapter-rslib, you can directly reuse your Rslib build configurations (such as resolve.alias and source.define) within Rstest. This enables zero-config testing for Rslib projects, ensuring your test environment perfectly mirrors your build environment while eliminating the overhead of maintaining duplicate configurations.

// rstest.config.ts
import { defineConfig } from '@​rstest/core';
import { withRslibConfig } from '@​rstest/adapter-rslib';

export default defineConfig({
  extends: withRslibConfig({}),
  // Additional Rstest-specific configurations
  // ...
});

More details: https://rstest.rs/guide/integration/rslib

What's Changed

New Features 🎉
Other Changes

Full Changelog: web-infra-dev/rslib@v0.18.6...v0.19.0

v0.18.6

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rslib@v0.18.5...v0.18.6

v0.18.5

Compare Source

What's Changed
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.18.4...v0.18.5

v0.18.4

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rslib@v0.18.3...v0.18.4

v0.18.3

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rslib@v0.18.2...v0.18.3

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

v0.8.2

Compare Source

Highlights 💡
Introducing Markdown reporter for agent 🤖

Rstest automatically detects AI coding agent (Claude Code, Cursor, Codex, opencode, etc.) and switches to Markdown output — no configuration needed.

The structured Markdown format is easier for LLMs to parse and understand compared to traditional terminal output. Each failure includes a one-click repro command so agents can quickly rerun and debug individual test cases. Output is intelligently truncated to stay within context limits even when many tests fail, saving tokens and reducing cost.

For detailed configuration options, see https://rstest.rs/guide/basic/reporters#markdown-reporter.

md-reporter.mp4
Introducing Browser mode (experimental)
What's Changed
New Features 🎉
Bug Fixes 🐞
Document 📖
  • docs: clarify mock behavior in vitest migration guide by @​9aoy in #​912
Other Changes
New Contributors

Full Changelog: web-infra-dev/rstest@v0.8.1...v0.8.2

v0.8.1

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rstest@v0.8.0...v0.8.1

v0.8.0

Compare Source

Highlights 💡

Introducing Browser mode (experimental)

Run UI tests in real browsers (Chromium / Firefox / WebKit) via Playwright — validate real rendering/layout + browser-native APIs, debug visually in the built-in UI, and iterate faster with watch-mode re-runs on source changes.

Note: Browser mode is still experimental — we’re just getting started: more providers, more framework integrations, and, AI.

cursorful-video-1768812047098.mp4

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

New Contributors

Full Changelog: web-infra-dev/rstest@v0.7.9...v0.8.0

v0.7.9

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
  • fix: coverage cannot includes parent folders by @​claneo in #​825
  • fix: Using include in coverage will cause file items to be displayed repeatedly in the report. by @​hoifong in #​822
  • fix: override globals that Fetch API relies on by @​tmkx in #​833
  • fix(browser): forever hang if playwright is not installed by @​fi3ework in #​836
  • fix: should print error correctly when worker unexpectedly exit by @​9aoy in #​837
  • fix: handle projects using extends configuration correctly by @​9aoy in #​843
  • fix: only filter experimental warnings by default by @​9aoy in #​845
Document 📖
Other Changes

New Contributors

Full Changelog: web-infra-dev/rstest@v0.7.8...v0.7.9

v0.7.8

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
  • fix: allow inlineSnapshot calls in each with same snapshot by @​9aoy in #​820
  • fix: should treat mjs and mts files as strict ES modules by @​9aoy in #​818
Document 📖
Other Changes

Full Changelog: web-infra-dev/rstest@v0.7.7...v0.7.8

v0.7.7

Compare Source

What's Changed

New Features 🎉
Performance 🚀
Bug Fixes 🐞
  • fix: cannot debug or profile child processes by @​claneo in #​800
  • fix: incorrect setup files source mapping when no isolated by @​9aoy in #​805
  • fix: coverage should show 0% when no source files are tested by @​9aoy in #​806
Document 📖
Other Changes

Full Changelog: web-infra-dev/rstest@v0.7.6...v0.7.7

v0.7.6

Compare Source

What's Changed

New Features 🎉
  • feat: always display all test cases when running a single test file by @​9aoy in #​794
Performance 🚀
Bug Fixes 🐞
Document 📖

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 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 force-pushed the renovate/all-minor-patch branch 2 times, most recently from 2f24224 to 471c759 Compare February 3, 2026 08:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 471c759 to ba2131c Compare February 3, 2026 13:31
@chenjiahan chenjiahan merged commit 167fb14 into main Feb 3, 2026
6 checks passed
@chenjiahan chenjiahan deleted the renovate/all-minor-patch branch February 3, 2026 13:55
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