Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Sep 25, 2025

Coming soon: The Renovate bot (GitHub App) will be renamed to Mend. PRs from Renovate will soon appear from 'Mend'. Learn more here.

This PR contains the following updates:

Package Change Age Confidence
@rstest/core (source) ^0.4.1 -> ^0.5.0 age confidence

Release Notes

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

v0.5.0

Compare Source

What's Changed

Breaking Changes
Merge exclude values by default

Change the default behavior of the exclude configuration from override to merge, which will be more intuitive for most people. This helps avoid matching a large number of tests in node_modules because node_modules was not added to the exclude list.

before:

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

export default defineConfig({
   exclude: ['**/some-dirs/**', '**/node_modules/**', '**/dist/**', '**/.{idea,git,cache,output,temp}/**']
});

after:

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

export default defineConfig({
   exclude: ['**/some-dirs/**']
});

If you want to override the default exclude configuration, you can set override to true.

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

export default defineConfig({
  exclude: {
    patterns: ['**/node_modules/**'],
    override: true,
  },
});
New Features 🎉
  • feat!: merge exclude values by default by @​9aoy in #​588
  • feat(coverage): support coverage.include by @​9aoy in #​585
  • feat(coverage): coverage.includes works in projects by @​9aoy in #​593
  • feat(coverage): support checking coverage threshold for glob files by @​9aoy in #​589
  • feat(coverage): support check coverage threshold for per file by @​9aoy in #​590
  • feat: support use <rootDir> in path-based configuration settings by @​9aoy in #​583
  • feat: stubEnv support import.meta.env by @​9aoy in #​594
Bug Fixes 🐞
  • fix(coverage): should not watch coverage reportsDirectory by @​9aoy in #​586
  • fix(coverage): coverage.exclude should exclude path correctly by @​9aoy in #​592
Document 📖
Other Changes

Full Changelog: web-infra-dev/rstest@v0.4.1...v0.5.0


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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • 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 Sep 25, 2025

Deploy Preview for rsbuild ready!

Name Link
🔨 Latest commit 8d32875
🔍 Latest deploy log https://app.netlify.com/projects/rsbuild/deploys/68d53ca5c6e15a0008ec0f5c
😎 Deploy Preview https://deploy-preview-6256--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: 77 (🟢 up 21 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 0641f66 into main Sep 26, 2025
12 checks passed
@chenjiahan chenjiahan deleted the renovate/rstest-core-0.x branch September 26, 2025 01:26
@chenjiahan chenjiahan mentioned this pull request Sep 29, 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.

2 participants