357.json (14013B)
1 { 2 "number": 357, 3 "title": "Bump @vitest/ui from 0.27.3 to 0.29.1", 4 "state": "closed", 5 "diff_file": "357.diff", 6 "author": "dependabot[bot]", 7 "created_at": "2023-02-27T09:20:26Z", 8 "closed_at": "2023-03-02T09:13:29Z", 9 "merged_at": null, 10 "base_ref": "main", 11 "head_ref": "dependabot/npm_and_yarn/vitest/ui-0.29.1", 12 "labels": [ 13 "dependencies", 14 "javascript" 15 ], 16 "assignees": [ 17 "MTRNord" 18 ], 19 "requested_reviewers": [ 20 "MTRNord" 21 ], 22 "body": "Bumps [@vitest/ui](https://github.com/vitest-dev/vitest/tree/HEAD/packages/ui) from 0.27.3 to 0.29.1.\n<details>\n<summary>Release notes</summary>\n<p><em>Sourced from <a href=\"https://github.com/vitest-dev/vitest/releases\"><code>@\u200bvitest/ui</code>'s releases</a>.</em></p>\n<blockquote>\n<h2>v0.29.1</h2>\n<h3>\u00a0\u00a0\u00a0\ud83d\udc1e Bug Fixes</h3>\n<ul>\n<li>Wait for optimized dependency to be bundled in non-pnpm package managers \u00a0-\u00a0 by <a href=\"https://github.com/sheremet-va\"><code>@\u200bsheremet-va</code></a> <a href=\"https://github.com/vitest-dev/vitest/commit/d2460b7a\"><!-- raw HTML omitted -->(d2460)<!-- raw HTML omitted --></a></li>\n</ul>\n<h5>\u00a0\u00a0\u00a0\u00a0<a href=\"https://github.com/vitest-dev/vitest/compare/v0.29.0...v0.29.1\">View changes on GitHub</a></h5>\n<h2>v0.29.0</h2>\n<p>This release makes some significant changes to how tests are running. If you were using <code>--no-threads</code> before, you might consider enabling <code>--single-thread</code> instead (because your tests are now running in <code>child_process</code> instead of a worker thread) or try our new performance optimization feature (discussed later). If you were relying on API that was not available inside a worker (like <code>process.chdir()</code>, you can now use this option.</p>\n<p>One of the potential breaking bug fixes is that environments do not share the same global scope anymore if you run them with <code>--no-isolate</code>, <code>--no-threads</code> or <code>--single-thread</code> - you might need to update your setup files if you were relying on a global variable before.</p>\n<p>If you had performance issues on large code bases before, try the new <a href=\"https://vitest.dev/config/#deps-experimentaloptimizer\"><code>deps.experimentalOptimizer</code></a> option instead of disabling threads. Feedback is welcome!</p>\n<p>One of the breaking changes includes adding a link to snapshots inside snapshot files, meaning you will need to update all your snapshots.</p>\n<h3>\u00a0\u00a0\u00a0\ud83d\udea8 Breaking Changes</h3>\n<ul>\n<li>Vitest as peer dependency for coverage packages \u00a0-\u00a0 by <a href=\"https://github.com/AriPerkkio\"><code>@\u200bAriPerkkio</code></a> in <a href=\"https://github-redirect.dependabot.com/vitest-dev/vitest/issues/2836\">vitest-dev/vitest#2836</a> <a href=\"https://github.com/vitest-dev/vitest/commit/94247f1b\"><!-- raw HTML omitted -->(94247)<!-- raw HTML omitted --></a></li>\n<li>Coverage-c8 to use V8 profiler directly instead of <code>NODE_V8_COVERAGE</code> \u00a0-\u00a0 by <a href=\"https://github.com/AriPerkkio\"><code>@\u200bAriPerkkio</code></a> in <a href=\"https://github-redirect.dependabot.com/vitest-dev/vitest/issues/2786\">vitest-dev/vitest#2786</a> <a href=\"https://github.com/vitest-dev/vitest/commit/095c6390\"><!-- raw HTML omitted -->(095c6)<!-- raw HTML omitted --></a></li>\n<li>Add a link to the comment at the top of the snapshot file \u00a0-\u00a0 by <a href=\"https://github.com/btea\"><code>@\u200bbtea</code></a> in <a href=\"https://github-redirect.dependabot.com/vitest-dev/vitest/issues/2867\">vitest-dev/vitest#2867</a> <a href=\"https://github.com/vitest-dev/vitest/commit/615e150b\"><!-- raw HTML omitted -->(615e1)<!-- raw HTML omitted --></a></li>\n<li>Always run separate environments in isolation \u00a0-\u00a0 by <a href=\"https://github.com/sheremet-va\"><code>@\u200bsheremet-va</code></a> in <a href=\"https://github-redirect.dependabot.com/vitest-dev/vitest/issues/2860\">vitest-dev/vitest#2860</a> <a href=\"https://github.com/vitest-dev/vitest/commit/1f858e0c\"><!-- raw HTML omitted -->(1f858)<!-- raw HTML omitted --></a>\n<ul>\n<li>Tests with <code>node</code> and <code>jsdom</code> (and other environments) now don't share the same global scope, if you run them with <code>--no-isolate</code> or <code>--no-threads</code> flag. Vitest doesn't provide a way to restore the previous behavior as it is considered a bug.</li>\n</ul>\n</li>\n<li>Use child_process when --no-threads is used \u00a0-\u00a0 by <a href=\"https://github.com/sheremet-va\"><code>@\u200bsheremet-va</code></a> in <a href=\"https://github-redirect.dependabot.com/vitest-dev/vitest/issues/2772\">vitest-dev/vitest#2772</a> <a href=\"https://github.com/vitest-dev/vitest/commit/7bf54505\"><!-- raw HTML omitted -->(7bf54)<!-- raw HTML omitted --></a>\n<ul>\n<li>Tests inside <code>chid_process</code> might run longer due to the communication overhead. If you want to restore the previous behavior, use <code>--single-thread</code>.</li>\n</ul>\n</li>\n</ul>\n<h3>\u00a0\u00a0\u00a0\ud83d\ude80 Features</h3>\n<ul>\n<li>Add test seed to banner \u00a0-\u00a0 by <a href=\"https://github.com/btkostner\"><code>@\u200bbtkostner</code></a> in <a href=\"https://github-redirect.dependabot.com/vitest-dev/vitest/issues/2877\">vitest-dev/vitest#2877</a> <a href=\"https://github.com/vitest-dev/vitest/commit/bdb39569\"><!-- raw HTML omitted -->(bdb39)<!-- raw HTML omitted --></a></li>\n<li>Use custom source-map-support implementation \u00a0-\u00a0 by <a href=\"https://github.com/sheremet-va\"><code>@\u200bsheremet-va</code></a> in <a href=\"https://github-redirect.dependabot.com/vitest-dev/vitest/issues/2905\">vitest-dev/vitest#2905</a> <a href=\"https://github.com/vitest-dev/vitest/commit/6ff6c6eb\"><!-- raw HTML omitted -->(6ff6c)<!-- raw HTML omitted --></a></li>\n<li>Add an option to enable Vite optimizer \u00a0-\u00a0 by <a href=\"https://github.com/sheremet-va\"><code>@\u200bsheremet-va</code></a> in <a href=\"https://github-redirect.dependabot.com/vitest-dev/vitest/issues/2912\">vitest-dev/vitest#2912</a> <a href=\"https://github.com/vitest-dev/vitest/commit/af8de362\"><!-- raw HTML omitted -->(af8de)<!-- raw HTML omitted --></a></li>\n<li><strong>coverage</strong>:\n<ul>\n<li>Add support for coverage reporter options \u00a0-\u00a0 by <a href=\"https://github.com/AriPerkkio\"><code>@\u200bAriPerkkio</code></a> in <a href=\"https://github-redirect.dependabot.com/vitest-dev/vitest/issues/2690\">vitest-dev/vitest#2690</a> <a href=\"https://github.com/vitest-dev/vitest/commit/f8176182\"><!-- raw HTML omitted -->(f8176)<!-- raw HTML omitted --></a></li>\n<li>Automatic threshold updating \u00a0-\u00a0 by <a href=\"https://github.com/AriPerkkio\"><code>@\u200bAriPerkkio</code></a> in <a href=\"https://github-redirect.dependabot.com/vitest-dev/vitest/issues/2886\">vitest-dev/vitest#2886</a> <a href=\"https://github.com/vitest-dev/vitest/commit/e1652163\"><!-- raw HTML omitted -->(e1652)<!-- raw HTML omitted --></a></li>\n</ul>\n</li>\n<li><strong>spy</strong>:\n<ul>\n<li>Implement mock.withImplementation API \u00a0-\u00a0 by <a href=\"https://github.com/obadakhalili\"><code>@\u200bobadakhalili</code></a> and <a href=\"https://github.com/sheremet-va\"><code>@\u200bsheremet-va</code></a> in <a href=\"https://github-redirect.dependabot.com/vitest-dev/vitest/issues/2835\">vitest-dev/vitest#2835</a> <a href=\"https://github.com/vitest-dev/vitest/commit/610b1d46\"><!-- raw HTML omitted -->(610b1)<!-- raw HTML omitted --></a></li>\n</ul>\n</li>\n<li><strong>vite-node</strong>:\n<ul>\n<li>Cli option for vite mode \u00a0-\u00a0 by <a href=\"https://github.com/abarke\"><code>@\u200babarke</code></a> in <a href=\"https://github-redirect.dependabot.com/vitest-dev/vitest/issues/2893\">vitest-dev/vitest#2893</a> <a href=\"https://github.com/vitest-dev/vitest/commit/0fc08032\"><!-- raw HTML omitted -->(0fc08)<!-- raw HTML omitted --></a></li>\n</ul>\n</li>\n</ul>\n<h3>\u00a0\u00a0\u00a0\ud83d\udc1e Bug Fixes</h3>\n<ul>\n<li>Wait for console.log to print a message before terminating a worker \u00a0-\u00a0 by <a href=\"https://github.com/sheremet-va\"><code>@\u200bsheremet-va</code></a> in <a href=\"https://github-redirect.dependabot.com/vitest-dev/vitest/issues/2861\">vitest-dev/vitest#2861</a> <a href=\"https://github.com/vitest-dev/vitest/commit/fbc54c91\"><!-- raw HTML omitted -->(fbc54)<!-- raw HTML omitted --></a></li>\n<li>Cleanup last mocked cache when call vi.doMock \u00a0-\u00a0 by <a href=\"https://github.com/mysteryven\"><code>@\u200bmysteryven</code></a> in <a href=\"https://github-redirect.dependabot.com/vitest-dev/vitest/issues/2872\">vitest-dev/vitest#2872</a> <a href=\"https://github.com/vitest-dev/vitest/commit/65d71b9e\"><!-- raw HTML omitted -->(65d71)<!-- raw HTML omitted --></a></li>\n<li>Reload changed configuration file on watch mode \u00a0-\u00a0 by <a href=\"https://github.com/AriPerkkio\"><code>@\u200bAriPerkkio</code></a> in <a href=\"https://github-redirect.dependabot.com/vitest-dev/vitest/issues/2889\">vitest-dev/vitest#2889</a> <a href=\"https://github.com/vitest-dev/vitest/commit/4d277d8d\"><!-- raw HTML omitted -->(4d277)<!-- raw HTML omitted --></a></li>\n<li><strong>coverage</strong>: Custom providers to work inside worker threads \u00a0-\u00a0 by <a href=\"https://github.com/AriPerkkio\"><code>@\u200bAriPerkkio</code></a> in <a href=\"https://github-redirect.dependabot.com/vitest-dev/vitest/issues/2817\">vitest-dev/vitest#2817</a> <a href=\"https://github.com/vitest-dev/vitest/commit/81604bce\"><!-- raw HTML omitted -->(81604)<!-- raw HTML omitted --></a></li>\n</ul>\n<h5>\u00a0\u00a0\u00a0\u00a0<a href=\"https://github.com/vitest-dev/vitest/compare/v0.28.5...v0.29.0\">View changes on GitHub</a></h5>\n<h2>v0.28.5</h2>\n<h3>\u00a0\u00a0\u00a0\ud83d\ude80 Features</h3>\n<!-- raw HTML omitted -->\n</blockquote>\n<p>... (truncated)</p>\n</details>\n<details>\n<summary>Commits</summary>\n<ul>\n<li><a href=\"https://github.com/vitest-dev/vitest/commit/20c99934ee66fd4aac33edae707d7add76f08576\"><code>20c9993</code></a> chore: release v0.29.1</li>\n<li><a href=\"https://github.com/vitest-dev/vitest/commit/965f32a55eb1d5d594eebfda76e413f4fbd2c4ca\"><code>965f32a</code></a> chore: release v0.29.0</li>\n<li><a href=\"https://github.com/vitest-dev/vitest/commit/4ae6a79179d092fed0e6830ed77086228ddab985\"><code>4ae6a79</code></a> chore: release v0.28.5</li>\n<li><a href=\"https://github.com/vitest-dev/vitest/commit/4ea1f1d974f12ffdce9cdaa5665900a2a4164386\"><code>4ea1f1d</code></a> test: ui e2e (<a href=\"https://github.com/vitest-dev/vitest/tree/HEAD/packages/ui/issues/2710\">#2710</a>)</li>\n<li><a href=\"https://github.com/vitest-dev/vitest/commit/5eeb6f38637e4176591b0d73cc691553c9cd8078\"><code>5eeb6f3</code></a> chore: release v0.28.4</li>\n<li><a href=\"https://github.com/vitest-dev/vitest/commit/31da992c7201d510a39df00cfe6be2a361ee19c0\"><code>31da992</code></a> chore: release v0.28.3</li>\n<li><a href=\"https://github.com/vitest-dev/vitest/commit/1b54b4cb96808716788e1178b29b12d9e69ad9ac\"><code>1b54b4c</code></a> chore: release v0.28.2</li>\n<li><a href=\"https://github.com/vitest-dev/vitest/commit/e28b9b91167fa16e189b0f7b085df70aca6bb6a8\"><code>e28b9b9</code></a> chore: release v0.28.1</li>\n<li><a href=\"https://github.com/vitest-dev/vitest/commit/6949b55beabae220a9a092bdaf9c1f8851bf778e\"><code>6949b55</code></a> chore: release v0.28.0</li>\n<li><a href=\"https://github.com/vitest-dev/vitest/commit/482b72fc5f02da87498a18e0ed844ecb6bc772ca\"><code>482b72f</code></a> feat!: move test runner into a separate package (<a href=\"https://github.com/vitest-dev/vitest/tree/HEAD/packages/ui/issues/2721\">#2721</a>)</li>\n<li>See full diff in <a href=\"https://github.com/vitest-dev/vitest/commits/v0.29.1/packages/ui\">compare view</a></li>\n</ul>\n</details>\n<br />\n\n\n[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n<details>\n<summary>Dependabot commands and options</summary>\n<br />\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n</details>\n\n<!-- Replace -->\n----\n\u231b Deploy Preview - Build in Progress\n<!-- Replace -->\n", 23 "comments": [ 24 { 25 "author": "dependabot[bot]", 26 "created_at": "2023-03-02T09:13:28Z", 27 "body": "Superseded by #365." 28 } 29 ], 30 "review_comments": [] 31 }