Skip to content

chore(deps): update dependency @rstest/core to v0.5.0#368

Merged
chenjiahan merged 1 commit intomainfrom
renovate/rstest-core-0.x
Sep 29, 2025
Merged

chore(deps): update dependency @rstest/core to v0.5.0#368
chenjiahan merged 1 commit intomainfrom
renovate/rstest-core-0.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Sep 29, 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.3.2 -> 0.5.0 age confidence
@rstest/core (source) ^0.3.2 -> ^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

v0.4.1

Compare Source

What's Changed
Document 📖
Other Changes
New Contributors

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

v0.4.0

Compare Source

Highlights 💡
Code coverage support 🎉

Rstest supports collecting code coverage and generating coverage reports using istanbul.

$ npx rstest --coverage

----------|---------|----------|---------|---------|-------------------
File      | % Stmts | % Branch | % Funcs | % Lines | Uncovered Line #s
----------|---------|----------|---------|---------|-------------------
All files |     100 |      100 |     100 |     100 |
 index.ts |     100 |      100 |     100 |     100 |
----------|---------|----------|---------|---------|-------------------

Learn more about Code coverage.

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

Full Changelog: web-infra-dev/rstest@v0.3.4...v0.4.0

v0.3.4

Compare Source

What's Changed
Bug Fixes 🐞
  • fix: support use rstest global APIs in external modules by @​9aoy in #​554

Full Changelog: web-infra-dev/rstest@v0.3.3...v0.3.4

v0.3.3

Compare Source

What's Changed
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rstest@v0.3.2...v0.3.3


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 is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates 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
Copy Markdown

netlify bot commented Sep 29, 2025

Deploy Preview for rslint ready!

Name Link
🔨 Latest commit 8264777
🔍 Latest deploy log https://app.netlify.com/projects/rslint/deploys/68d9f148e5d6f700083425f4
😎 Deploy Preview https://deploy-preview-368--rslint.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 project configuration.

@chenjiahan chenjiahan merged commit 39a97dc into main Sep 29, 2025
18 checks passed
@chenjiahan chenjiahan deleted the renovate/rstest-core-0.x branch September 29, 2025 03:31
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