-
Notifications
You must be signed in to change notification settings - Fork 40
Bump the other group with 3 updates #420
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Bumps the other group with 3 updates: [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react), [esbuild](https://github.com/evanw/esbuild) and [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest). Updates `@types/react` from 18.2.64 to 18.2.66 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `esbuild` from 0.20.1 to 0.20.2 - [Release notes](https://github.com/evanw/esbuild/releases) - [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md) - [Commits](evanw/esbuild@v0.20.1...v0.20.2) Updates `vitest` from 1.3.1 to 1.4.0 - [Release notes](https://github.com/vitest-dev/vitest/releases) - [Commits](https://github.com/vitest-dev/vitest/commits/v1.4.0/packages/vitest) --- updated-dependencies: - dependency-name: "@types/react" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: other - dependency-name: esbuild dependency-type: direct:development update-type: version-update:semver-patch dependency-group: other - dependency-name: vitest dependency-type: direct:development update-type: version-update:semver-minor dependency-group: other ... Signed-off-by: dependabot[bot] <support@github.com>
roger120981
pushed a commit
to roger120981/lonboard
that referenced
this pull request
Jul 14, 2025
Bumps the other group with 3 updates: [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react), [esbuild](https://github.com/evanw/esbuild) and [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest). Updates `@types/react` from 18.2.64 to 18.2.66 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react">compare view</a></li> </ul> </details> <br /> Updates `esbuild` from 0.20.1 to 0.20.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/evanw/esbuild/releases">esbuild's releases</a>.</em></p> <blockquote> <h2>v0.20.2</h2> <ul> <li> <p>Support TypeScript experimental decorators on <code>abstract</code> class fields (<a href="https://redirect.github.com/evanw/esbuild/issues/3684">#3684</a>)</p> <p>With this release, you can now use TypeScript experimental decorators on <code>abstract</code> class fields. This was silently compiled incorrectly in esbuild 0.19.7 and below, and was an error from esbuild 0.19.8 to esbuild 0.20.1. Code such as the following should now work correctly:</p> <pre lang="ts"><code>// Original code const log = (x: any, y: string) => console.log(y) abstract class Foo { @log abstract foo: string } new class extends Foo { foo = '' } <p>// Old output (with --loader=ts --tsconfig-raw={&quot;compilerOptions&quot;:{&quot;experimentalDecorators&quot;:true}}) const log = (x, y) => console.log(y); class Foo { } new class extends Foo { foo = ""; }();</p> <p>// New output (with --loader=ts --tsconfig-raw={&quot;compilerOptions&quot;:{&quot;experimentalDecorators&quot;:true}}) const log = (x, y) => console.log(y); class Foo { } __decorateClass([ log ], Foo.prototype, "foo", 2); new class extends Foo { foo = ""; }(); </code></pre></p> </li> <li> <p>JSON loader now preserves <code>__proto__</code> properties (<a href="https://redirect.github.com/evanw/esbuild/issues/3700">#3700</a>)</p> <p>Copying JSON source code into a JavaScript file will change its meaning if a JSON object contains the <code>__proto__</code> key. A literal <code>__proto__</code> property in a JavaScript object literal sets the prototype of the object instead of adding a property named <code>__proto__</code>, while a literal <code>__proto__</code> property in a JSON object literal just adds a property named <code>__proto__</code>. With this release, esbuild will now work around this problem by converting JSON to JavaScript with a computed property key in this case:</p> <pre lang="js"><code>// Original code import data from 'data:application/json,{"__proto__":{"fail":true}}' if (Object.getPrototypeOf(data)?.fail) throw 'fail' <p>// Old output (with --bundle) (() => { // <data:application/json,{"<strong>proto</strong>":{"fail":true}}> var json_proto_fail_true_default = { <strong>proto</strong>: { fail: true } };</p> <p>// entry.js if (Object.getPrototypeOf(json_proto_fail_true_default)?.fail) throw "fail"; })();</p> <p></code></pre></p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/evanw/esbuild/blob/main/CHANGELOG.md">esbuild's changelog</a>.</em></p> <blockquote> <h2>0.20.2</h2> <ul> <li> <p>Support TypeScript experimental decorators on <code>abstract</code> class fields (<a href="https://redirect.github.com/evanw/esbuild/issues/3684">#3684</a>)</p> <p>With this release, you can now use TypeScript experimental decorators on <code>abstract</code> class fields. This was silently compiled incorrectly in esbuild 0.19.7 and below, and was an error from esbuild 0.19.8 to esbuild 0.20.1. Code such as the following should now work correctly:</p> <pre lang="ts"><code>// Original code const log = (x: any, y: string) => console.log(y) abstract class Foo { @log abstract foo: string } new class extends Foo { foo = '' } <p>// Old output (with --loader=ts --tsconfig-raw={&quot;compilerOptions&quot;:{&quot;experimentalDecorators&quot;:true}}) const log = (x, y) => console.log(y); class Foo { } new class extends Foo { foo = ""; }();</p> <p>// New output (with --loader=ts --tsconfig-raw={&quot;compilerOptions&quot;:{&quot;experimentalDecorators&quot;:true}}) const log = (x, y) => console.log(y); class Foo { } __decorateClass([ log ], Foo.prototype, "foo", 2); new class extends Foo { foo = ""; }(); </code></pre></p> </li> <li> <p>JSON loader now preserves <code>__proto__</code> properties (<a href="https://redirect.github.com/evanw/esbuild/issues/3700">#3700</a>)</p> <p>Copying JSON source code into a JavaScript file will change its meaning if a JSON object contains the <code>__proto__</code> key. A literal <code>__proto__</code> property in a JavaScript object literal sets the prototype of the object instead of adding a property named <code>__proto__</code>, while a literal <code>__proto__</code> property in a JSON object literal just adds a property named <code>__proto__</code>. With this release, esbuild will now work around this problem by converting JSON to JavaScript with a computed property key in this case:</p> <pre lang="js"><code>// Original code import data from 'data:application/json,{"__proto__":{"fail":true}}' if (Object.getPrototypeOf(data)?.fail) throw 'fail' <p>// Old output (with --bundle) (() => { // <data:application/json,{"<strong>proto</strong>":{"fail":true}}> var json_proto_fail_true_default = { <strong>proto</strong>: { fail: true } };</p> <p>// entry.js if (Object.getPrototypeOf(json_proto_fail_true_default)?.fail) throw "fail"; })(); </code></pre></p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/evanw/esbuild/commit/617eddaa32b7649ad23ddd15257816df3f0f544c"><code>617edda</code></a> publish 0.20.2 to npm</li> <li><a href="https://github.com/evanw/esbuild/commit/4780075ace9f5f59b61018326ec57da624a7d7a2"><code>4780075</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/3700">#3700</a>: json loader preserves <code>__proto__</code> keys</li> <li><a href="https://github.com/evanw/esbuild/commit/30bed2d2d7572b58399a6c07643878f3377800fe"><code>30bed2d</code></a> better errors for invalid js decorator syntax</li> <li><a href="https://github.com/evanw/esbuild/commit/300eeb711261144a70ab33221fe6a1313b309348"><code>300eeb7</code></a> ts: allow non-null assertions in js decorators</li> <li><a href="https://github.com/evanw/esbuild/commit/4d997d948579b2e4e9bd3bf820a0108b58b3732b"><code>4d997d9</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/3698">#3698</a>: yarn pnp edge case with <code>tsconfig.json</code></li> <li><a href="https://github.com/evanw/esbuild/commit/cf42954760e666c048a866589f43ef937f9ec1e6"><code>cf42954</code></a> resolver: improve some debug logging</li> <li><a href="https://github.com/evanw/esbuild/commit/b0765ae1323363fd61727df54e9e57c2b81bdd4b"><code>b0765ae</code></a> fix some lints</li> <li><a href="https://github.com/evanw/esbuild/commit/dfa62069192b1c49918b2dfe4b8c10278361ae34"><code>dfa6206</code></a> fix some comments (closes <a href="https://redirect.github.com/evanw/esbuild/issues/3683">#3683</a>)</li> <li><a href="https://github.com/evanw/esbuild/commit/ae5cc175165551016f8e19475c4ac9872e60f247"><code>ae5cc17</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/3684">#3684</a>: <code>abstract</code> experimental decorators</li> <li><a href="https://github.com/evanw/esbuild/commit/c809af050a74f022d9cf61c66e13365434542420"><code>c809af0</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/2388">#2388</a>: allow consuming types without dom types (<a href="https://redirect.github.com/evanw/esbuild/issues/3679">#3679</a>)</li> <li>Additional commits viewable in <a href="https://github.com/evanw/esbuild/compare/v0.20.1...v0.20.2">compare view</a></li> </ul> </details> <br /> Updates `vitest` from 1.3.1 to 1.4.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/vitest-dev/vitest/releases">vitest's releases</a>.</em></p> <blockquote> <h2>v1.4.0</h2> <h3> 🚀 Features</h3> <ul> <li>Throw error when using snapshot assertion with <code>not</code> - by <a href="https://github.com/fenghan34"><code>@fenghan34</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/5294">vitest-dev/vitest#5294</a> <a href="https://github.com/vitest-dev/vitest/commit/b9d378f5"><!-- raw HTML omitted -->(b9d37)<!-- raw HTML omitted --></a></li> <li>Add a flag to include test location in tasks - by <a href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/5342">vitest-dev/vitest#5342</a> <a href="https://github.com/vitest-dev/vitest/commit/d627e209"><!-- raw HTML omitted -->(d627e)<!-- raw HTML omitted --></a></li> <li><strong>cli</strong>: <ul> <li>Support wildcards in <code>--project</code> option - by <a href="https://github.com/fenghan34"><code>@fenghan34</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/5295">vitest-dev/vitest#5295</a> <a href="https://github.com/vitest-dev/vitest/commit/201bd067"><!-- raw HTML omitted -->(201bd)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>config</strong>: <ul> <li>Add <code>shuffle.files</code> and <code>shuffle.tests</code> options - by <a href="https://github.com/fenghan34"><code>@fenghan34</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/5281">vitest-dev/vitest#5281</a> <a href="https://github.com/vitest-dev/vitest/commit/356db87b"><!-- raw HTML omitted -->(356db)<!-- raw HTML omitted --></a></li> <li>Deprecate <code>cache.dir</code> option - by <a href="https://github.com/fenghan34"><code>@fenghan34</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/5229">vitest-dev/vitest#5229</a> <a href="https://github.com/vitest-dev/vitest/commit/d7e8b53e"><!-- raw HTML omitted -->(d7e8b)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>coverage</strong>: <ul> <li>Support <code>--changed</code> option - by <a href="https://github.com/AriPerkkio"><code>@AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/5314">vitest-dev/vitest#5314</a> <a href="https://github.com/vitest-dev/vitest/commit/600b44d6"><!-- raw HTML omitted -->(600b4)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>vitest</strong>: <ul> <li>Support <code>clearScreen</code> cli flag - by <a href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/5241">vitest-dev/vitest#5241</a> <a href="https://github.com/vitest-dev/vitest/commit/e1735fb6"><!-- raw HTML omitted -->(e1735)<!-- raw HTML omitted --></a></li> </ul> </li> </ul> <h3> 🐞 Bug Fixes</h3> <ul> <li>Repeatable <code>--project</code> option - by <a href="https://github.com/fenghan34"><code>@fenghan34</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/5265">vitest-dev/vitest#5265</a> <a href="https://github.com/vitest-dev/vitest/commit/d1a06730"><!-- raw HTML omitted -->(d1a06)<!-- raw HTML omitted --></a></li> <li><code>--inspect-brk</code> to pause before execution - by <a href="https://github.com/AriPerkkio"><code>@AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/5355">vitest-dev/vitest#5355</a> <a href="https://github.com/vitest-dev/vitest/commit/e77c553f"><!-- raw HTML omitted -->(e77c5)<!-- raw HTML omitted --></a></li> <li>Correct locations in test.each tasks - by <a href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> <a href="https://github.com/vitest-dev/vitest/commit/4f6e39c1"><!-- raw HTML omitted -->(4f6e3)<!-- raw HTML omitted --></a></li> <li><strong>api</strong>: <ul> <li>Use resolvedUrls from devserver - by <a href="https://github.com/saitonakamura"><code>@saitonakamura</code></a> and <a href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/5289">vitest-dev/vitest#5289</a> <a href="https://github.com/vitest-dev/vitest/commit/2fef5a7e"><!-- raw HTML omitted -->(2fef5)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>browser</strong>: <ul> <li>Add <code>magic-string</code> to <code>optimizeDeps.include</code> - by <a href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/5278">vitest-dev/vitest#5278</a> <a href="https://github.com/vitest-dev/vitest/commit/8f04e798"><!-- raw HTML omitted -->(8f04e)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>coverage</strong>: <ul> <li>Expensive regexp hangs v8 report generation - by <a href="https://github.com/AriPerkkio"><code>@AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/5259">vitest-dev/vitest#5259</a> <a href="https://github.com/vitest-dev/vitest/commit/d68a7390"><!-- raw HTML omitted -->(d68a7)<!-- raw HTML omitted --></a></li> <li>V8 to ignore type-only files - by <a href="https://github.com/AriPerkkio"><code>@AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/5328">vitest-dev/vitest#5328</a> <a href="https://github.com/vitest-dev/vitest/commit/c3eb8deb"><!-- raw HTML omitted -->(c3eb8)<!-- raw HTML omitted --></a></li> <li>Respect source maps of pre-transpiled sources - by <a href="https://github.com/AriPerkkio"><code>@AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/5367">vitest-dev/vitest#5367</a> <a href="https://github.com/vitest-dev/vitest/commit/6eda473f"><!-- raw HTML omitted -->(6eda4)<!-- raw HTML omitted --></a></li> <li>Prevent <code>reportsDirectory</code> from removing user's project - by <a href="https://github.com/AriPerkkio"><code>@AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/5376">vitest-dev/vitest#5376</a> <a href="https://github.com/vitest-dev/vitest/commit/07ec3779"><!-- raw HTML omitted -->(07ec3)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>expect</strong>: <ul> <li>Show diff on <code>toContain/toMatch</code> assertion error - by <a href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/5267">vitest-dev/vitest#5267</a> <a href="https://github.com/vitest-dev/vitest/commit/8ee59f0d"><!-- raw HTML omitted -->(8ee59)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>forks</strong>: <ul> <li>Wrap <code>defines</code> to support <code>undefined</code> values - by <a href="https://github.com/AriPerkkio"><code>@AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/5284">vitest-dev/vitest#5284</a> <a href="https://github.com/vitest-dev/vitest/commit/5b58b399"><!-- raw HTML omitted -->(5b58b)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>typecheck</strong>: <ul> <li>Update get-tsconfig 4.7.3 to fix false circularity error - by <a href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/5384">vitest-dev/vitest#5384</a> <a href="https://github.com/vitest-dev/vitest/commit/bdc371ee"><!-- raw HTML omitted -->(bdc37)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>ui</strong>: <ul> <li>Escape html in error diff - by <a href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/5325">vitest-dev/vitest#5325</a> <a href="https://github.com/vitest-dev/vitest/commit/ab60bf8d"><!-- raw HTML omitted -->(ab60b)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>vitest</strong>: <ul> <li>Loosen <code>onConsoleLog</code> return type - by <a href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/5337">vitest-dev/vitest#5337</a> <a href="https://github.com/vitest-dev/vitest/commit/6d1b1451"><!-- raw HTML omitted -->(6d1b1)<!-- raw HTML omitted --></a></li> <li>Ensure restoring terminal cursor on close - by <a href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/5292">vitest-dev/vitest#5292</a> <a href="https://github.com/vitest-dev/vitest/commit/0bea2247"><!-- raw HTML omitted -->(0bea2)<!-- raw HTML omitted --></a></li> <li>Ignore timeout on websocket reporter rpc - by <a href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> <a href="https://github.com/vitest-dev/vitest/commit/38119b75"><!-- raw HTML omitted -->(38119)<!-- raw HTML omitted --></a></li> <li>Correctly override api with --no-api flag - by <a href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/5386">vitest-dev/vitest#5386</a> <a href="https://github.com/vitest-dev/vitest/commit/51d1d472"><!-- raw HTML omitted -->(51d1d)<!-- raw HTML omitted --></a></li> <li>Logs in <code>beforeAll</code> and <code>afterAll</code> - by <a href="https://github.com/fenghan34"><code>@fenghan34</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/5288">vitest-dev/vitest#5288</a> <a href="https://github.com/vitest-dev/vitest/commit/ce5ca6bf"><!-- raw HTML omitted -->(ce5ca)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>workspace</strong>: <ul> <li>Throw error when browser mode and <code>@vitest/coverage-v8</code> are used - by <a href="https://github.com/AriPerkkio"><code>@AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/5250">vitest-dev/vitest#5250</a> <a href="https://github.com/vitest-dev/vitest/commit/29f98cd3"><!-- raw HTML omitted -->(29f98)<!-- raw HTML omitted --></a></li> </ul> </li> </ul> <h5> <a href="https://github.com/vitest-dev/vitest/compare/v1.3.1...v1.4.0">View changes on GitHub</a></h5> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitest-dev/vitest/commit/a8da192c61ff0e3adf64b31378546de3b2f4c1bc"><code>a8da192</code></a> chore: release v1.4.0</li> <li><a href="https://github.com/vitest-dev/vitest/commit/d7e8b53ed057b2127d8073b11f5f2732354bdd7c"><code>d7e8b53</code></a> feat(config): deprecate <code>cache.dir</code> option (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/5229">#5229</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/c65214822a06639e915128496e0534184f219d2f"><code>c652148</code></a> chore: remove unused property</li> <li><a href="https://github.com/vitest-dev/vitest/commit/ce5ca6bf6c8f9b30a2331b2dcd761e72c13392e9"><code>ce5ca6b</code></a> fix(vitest): logs in <code>beforeAll</code> and <code>afterAll</code> (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/5288">#5288</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/51d1d47263e80f6a40da7639382efd5160f4145c"><code>51d1d47</code></a> fix(vitest): correctly override api with --no-api flag (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/5386">#5386</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/efe441fd217d4ec3081ec7aca58543b2233bab2d"><code>efe441f</code></a> chore: guard try/catch in websocket reporter</li> <li><a href="https://github.com/vitest-dev/vitest/commit/07ec3779aba22680ae1dd4cb83cd276354c8023f"><code>07ec377</code></a> fix(coverage): prevent <code>reportsDirectory</code> from removing user's project (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/5376">#5376</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/38119b75aff28682b0c8088991cc2c761760ff6d"><code>38119b7</code></a> fix(vitest): ignore timeout on websocket reporter rpc</li> <li><a href="https://github.com/vitest-dev/vitest/commit/e77c553ffb389a79bf568ab0ec4a48f2c572f9a3"><code>e77c553</code></a> fix: <code>--inspect-brk</code> to pause before execution (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/5355">#5355</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/d627e209dd99ba17557ef6ba2e4b2c52ddf6fa97"><code>d627e20</code></a> feat: add a flag to include test location in tasks (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/5342">#5342</a>)</li> <li>Additional commits viewable in <a href="https://github.com/vitest-dev/vitest/commits/v1.4.0/packages/vitest">compare view</a></li> </ul> </details> <br /> Dependabot 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`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Bumps the other group with 3 updates: @types/react, esbuild and vitest.
Updates
@types/reactfrom 18.2.64 to 18.2.66Commits
Updates
esbuildfrom 0.20.1 to 0.20.2Release notes
Sourced from esbuild's releases.
... (truncated)
Changelog
Sourced from esbuild's changelog.
... (truncated)
Commits
617eddapublish 0.20.2 to npm4780075fix #3700: json loader preserves__proto__keys30bed2dbetter errors for invalid js decorator syntax300eeb7ts: allow non-null assertions in js decorators4d997d9fix #3698: yarn pnp edge case withtsconfig.jsoncf42954resolver: improve some debug loggingb0765aefix some lintsdfa6206fix some comments (closes #3683)ae5cc17fix #3684:abstractexperimental decoratorsc809af0fix #2388: allow consuming types without dom types (#3679)Updates
vitestfrom 1.3.1 to 1.4.0Release notes
Sourced from vitest's releases.
Commits
a8da192chore: release v1.4.0d7e8b53feat(config): deprecatecache.diroption (#5229)c652148chore: remove unused propertyce5ca6bfix(vitest): logs inbeforeAllandafterAll(#5288)51d1d47fix(vitest): correctly override api with --no-api flag (#5386)efe441fchore: guard try/catch in websocket reporter07ec377fix(coverage): preventreportsDirectoryfrom removing user's project (#5376)38119b7fix(vitest): ignore timeout on websocket reporter rpce77c553fix:--inspect-brkto pause before execution (#5355)d627e20feat: add a flag to include test location in tasks (#5342)Dependabot 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.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions