matrix-art.meta

Issues/PRs archive for MTRNord/matrix-art
git clone git://archive.git.mtrnord.blog/MTRNord/matrix-art.meta.git
Log | Files | Refs

358.json (14790B)


      1 {
      2   "number": 358,
      3   "title": "Bump vitest from 0.27.3 to 0.29.1",
      4   "state": "closed",
      5   "diff_file": "358.diff",
      6   "author": "dependabot[bot]",
      7   "created_at": "2023-02-27T09:20:26Z",
      8   "closed_at": "2023-03-02T09:14:11Z",
      9   "merged_at": null,
     10   "base_ref": "main",
     11   "head_ref": "dependabot/npm_and_yarn/vitest-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](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) 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\">vitest'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/7bf54505a127b976c7e69cbec25cbb2c5bc6219e\"><code>7bf5450</code></a> feat!: use child_process when --no-threads is used (<a href=\"https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/2772\">#2772</a>)</li>\n<li><a href=\"https://github.com/vitest-dev/vitest/commit/4d277d8d1dc5d9e663252d604ba54765e50dc8d3\"><code>4d277d8</code></a> fix: reload changed configuration file on watch mode (<a href=\"https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/2889\">#2889</a>)</li>\n<li><a href=\"https://github.com/vitest-dev/vitest/commit/e1652163564fef635a17d3e449de2e3bd9cc1818\"><code>e165216</code></a> feat(coverage): automatic threshold updating (<a href=\"https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/2886\">#2886</a>)</li>\n<li><a href=\"https://github.com/vitest-dev/vitest/commit/615e150b0f7d84e127cc9588036ad515a8350dd8\"><code>615e150</code></a> feat: add a link to the comment at the top of the snapshot file (<a href=\"https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/2867\">#2867</a>)</li>\n<li><a href=\"https://github.com/vitest-dev/vitest/commit/af8de36215960ffcccbe5658f5f3730413969b37\"><code>af8de36</code></a> feat: add an option to enable Vite optimizer (<a href=\"https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/2912\">#2912</a>)</li>\n<li><a href=\"https://github.com/vitest-dev/vitest/commit/6ff6c6eb4d6d2327c9f95d0e19488109660e2ee1\"><code>6ff6c6e</code></a> feat: use custom source-map-support implementation (<a href=\"https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/2905\">#2905</a>)</li>\n<li><a href=\"https://github.com/vitest-dev/vitest/commit/65d71b9e97e6d4a6d7e38e12ed2c436e41dc97e3\"><code>65d71b9</code></a> fix: cleanup last mocked cache when call vi.doMock (<a href=\"https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/2872\">#2872</a>)</li>\n<li><a href=\"https://github.com/vitest-dev/vitest/commit/bdb3956960c57813712bfb90079e517dd659ad60\"><code>bdb3956</code></a> feat: add test seed to banner (<a href=\"https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/2877\">#2877</a>)</li>\n<li>Additional commits viewable in <a href=\"https://github.com/vitest-dev/vitest/commits/v0.29.1/packages/vitest\">compare view</a></li>\n</ul>\n</details>\n<br />\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=vitest&package-manager=npm_and_yarn&previous-version=0.27.3&new-version=0.29.1)](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:14:10Z",
     27       "body": "Superseded by #367."
     28     }
     29   ],
     30   "review_comments": []
     31 }