Skip to content

chore(deps): update test packages#685

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/test-packages
Open

chore(deps): update test packages#685
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/test-packages

Conversation

@renovate

@renovate renovate Bot commented Mar 16, 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
@codspeed/vitest-plugin (source) 5.2.05.6.0 age confidence
@vitest/coverage-v8 (source) 4.0.184.1.9 age confidence
vitest (source) 4.0.184.1.9 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

CodSpeedHQ/codspeed-node (@​codspeed/vitest-plugin)

v5.6.0

Compare Source

What's Changed

Full Changelog: CodSpeedHQ/codspeed-node@v5.5.0...v5.6.0

v5.5.0

Compare Source

Highlights

We are introducing @codspeed/playwright, for walltime benchmarking and profiling of end to end browser applications through playwright.

Here's an example usage, but head to the docs for more information

import { bench, type Page } from "@​codspeed/playwright-plugin";
import electronExecutable from "electron";
import path from "node:path";
import { fileURLToPath } from "node:url";

const __dirname = path.dirname(fileURLToPath(import.meta.url));
const appRoot = path.resolve(__dirname, "..");

async function waitUntilSettled(page: Page): Promise<void> {
  await page.waitForFunction(() => {
    const main = document.getElementById("main");
    return !!main && !main.classList.contains("loading");
  });
}

await bench(
  "inbox-search-archive-threads",
  async ({ page }) => {
    await page.fill("#search", "update");
    await waitUntilSettled(page);

    await page.click("#select-visible-btn");
    await page.click("#archive-btn");
    await waitUntilSettled(page);

    await page.click('#sidebar nav button[data-view="threads"]');
    await waitUntilSettled(page);
  },
  {
    target: {
      kind: "electron",
      appPath: path.join(appRoot, "out/main/index.js"),
      cwd: appRoot,
    },
    beforeRound: async ({ page }) => {
      page.setDefaultTimeout(180_000);
      await page.waitForSelector("#main");
      await waitUntilSettled(page);
    },
  },
);

Note: this plugin is only compatible with the walltime instrument.

What's Changed

Full Changelog: CodSpeedHQ/codspeed-node@v5.4.0...v5.5.0

v5.4.0

Compare Source

What's Changed

This release adds first support for macOS walltime.

Please note that profiling and other instruments are not yet available on macOS and will come in a later update.

Full Changelog: CodSpeedHQ/codspeed-node@v5.3.0...v5.4.0

v5.3.0

Compare Source

What's Changed

We now collect buildtime and runtime environment data to warn users about differences in their runtime environment when comparing two runs against one another.

This data includes toolchain metadata like version and build options, as well as a list of dynamically loaded linked libraries.

Full Changelog: CodSpeedHQ/codspeed-node@v5.2.0...v5.3.0

vitest-dev/vitest (@​vitest/coverage-v8)

v4.1.9

Compare Source

🐞 Bug Fixes
  • Fix importOriginal with optimizer and query import [backport to v4] - by Hiroshi Ogawa, David Harris, Codexand Vladimir in #​10546 (a5180)
  • browser:
    • Wait for orchestrator readiness before resolving browser sessions [backport to v4] - by Vladimir and Séamus O'Connor in #​10555 (7fb29)
    • Wait for iframe tester readiness before preparing [backport to v4] - by Vladimir and Séamus O'Connor in #​10497 and #​10556 (fbc62)
  • mocker:
    • Hoist vi.mock() for vite-plus/test imports [backport to v4] - by Hiroshi Ogawa, LongYinan, Claude Opus 4.8 and Vladimir in #​10548 (2c955)
  • pool:
    • Prevent test run hang on worker crash [backport to v4] - by Ari Perkkiö and Jattioui Ismail in #​10543 and #​10564 (934b0)
View changes on GitHub

v4.1.8

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v4.1.7

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v4.1.6

Compare Source

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v4.1.5

Compare Source

   🚀 Experimental Features
   🐞 Bug Fixes
    View changes on GitHub

v4.1.4

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v4.1.3

Compare Source

   🚀 Experimental Features
   🐞 Bug Fixes
    View changes on GitHub

v4.1.2

Compare Source

This release bumps Vitest's flatted version and removes version pinning to resolve flatted's CVE related issues (#​9975).

   🐞 Bug Fixes
    View changes on GitHub

v4.1.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v4.1.0

Compare Source

Vitest 4.1 is out!

This release page lists all changes made to the project during the 4.1 beta. To get a review of all the new features, read our blog post.

   🚀 Features
   🐞 Bug Fixes

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "on Monday"
  • 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 added the chore label Mar 16, 2026
@renovate renovate Bot requested a review from danielroe as a code owner March 16, 2026 02:54
@vercel

vercel Bot commented Mar 16, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
magic-regexp-docs Error Error Jun 16, 2026 2:56pm

@renovate

renovate Bot commented Mar 16, 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: pnpm-lock.yaml
Scope: all 3 workspace projects
Progress: resolved 1, reused 0, downloaded 0, added 0
Progress: resolved 25, reused 0, downloaded 0, added 0
Progress: resolved 38, reused 0, downloaded 0, added 0
Progress: resolved 136, reused 0, downloaded 0, added 0
Progress: resolved 200, reused 0, downloaded 0, added 0
Progress: resolved 285, reused 0, downloaded 0, added 0
Progress: resolved 330, reused 0, downloaded 0, added 0
Progress: resolved 414, reused 0, downloaded 0, added 0
Progress: resolved 459, reused 0, downloaded 0, added 0
Progress: resolved 529, reused 0, downloaded 0, added 0
Progress: resolved 610, reused 0, downloaded 0, added 0
Progress: resolved 698, reused 0, downloaded 0, added 0
Progress: resolved 721, reused 0, downloaded 0, added 0
Progress: resolved 786, reused 0, downloaded 0, added 0
Progress: resolved 851, reused 0, downloaded 0, added 0
Progress: resolved 861, reused 0, downloaded 0, added 0
 WARN  Request took 10651ms: https://registry.npmjs.org/playwright-core
Progress: resolved 910, reused 0, downloaded 0, added 0
Progress: resolved 1034, reused 0, downloaded 0, added 0
 WARN  Request took 11789ms: https://registry.npmjs.org/@typescript-eslint%2Ftypescript-estree
Progress: resolved 1061, reused 0, downloaded 0, added 0
Progress: resolved 1119, reused 0, downloaded 0, added 0
Progress: resolved 1212, reused 0, downloaded 0, added 0
/tmp/renovate/repos/github/unjs/magic-regexp/docs:
 ERR_PNPM_TRUST_DOWNGRADE  High-risk trust downgrade for "semver@6.3.1" (possible package takeover)

This error happened while installing the dependencies of nuxt@4.3.1
 at @nuxt/vite-builder@4.3.1
 at @vitejs/plugin-vue-jsx@5.1.4
 at @babel/core@7.29.0

Trust checks are based solely on publish date, not semver. A package cannot be installed if any earlier-published version had stronger trust evidence. Earlier versions had provenance attestation, but this version has no trust evidence. A trust downgrade may indicate a supply chain incident.

@renovate renovate Bot force-pushed the renovate/test-packages branch from 7207b0e to 2566f94 Compare March 23, 2026 15:33
@renovate renovate Bot changed the title chore(deps): update test packages to v4.1.0 chore(deps): update test packages to v4.1.1 Mar 23, 2026
@renovate renovate Bot force-pushed the renovate/test-packages branch from 2566f94 to 4e39aa4 Compare March 26, 2026 14:58
@renovate renovate Bot changed the title chore(deps): update test packages to v4.1.1 chore(deps): update test packages to v4.1.2 Mar 26, 2026
@renovate renovate Bot force-pushed the renovate/test-packages branch from 4e39aa4 to f9f1e62 Compare April 1, 2026 15:45
@renovate renovate Bot force-pushed the renovate/test-packages branch from f9f1e62 to b838859 Compare April 7, 2026 10:52
@renovate renovate Bot changed the title chore(deps): update test packages to v4.1.2 chore(deps): update test packages to v4.1.3 Apr 7, 2026
@renovate renovate Bot force-pushed the renovate/test-packages branch from b838859 to cdff83d Compare April 8, 2026 16:15
@renovate renovate Bot force-pushed the renovate/test-packages branch from cdff83d to dcf71d4 Compare April 9, 2026 12:15
@renovate renovate Bot changed the title chore(deps): update test packages to v4.1.3 chore(deps): update test packages to v4.1.4 Apr 9, 2026
@renovate renovate Bot force-pushed the renovate/test-packages branch from dcf71d4 to 7464bb7 Compare April 17, 2026 12:49
@renovate renovate Bot changed the title chore(deps): update test packages to v4.1.4 chore(deps): update test packages Apr 17, 2026
@renovate renovate Bot force-pushed the renovate/test-packages branch from 7464bb7 to 3f63dcf Compare April 21, 2026 11:33
@renovate renovate Bot force-pushed the renovate/test-packages branch from 3f63dcf to 4a570e6 Compare April 28, 2026 17:51
@renovate renovate Bot force-pushed the renovate/test-packages branch from 4a570e6 to 5988f29 Compare April 29, 2026 17:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants