Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(deps-dev): bump the development-dependencies group with 2 updat…
…es (#52) Bumps the development-dependencies group with 2 updates: [esbuild](https://github.com/evanw/esbuild) and [undici](https://github.com/nodejs/undici). Updates `esbuild` from 0.19.2 to 0.19.4 <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.19.4</h2> <ul> <li> <p>Fix printing of JavaScript decorators in tricky cases (<a href="https://redirect.github.com/evanw/esbuild/issues/3396">#3396</a>)</p> <p>This release fixes some bugs where esbuild's pretty-printing of JavaScript decorators could incorrectly produced code with a syntax error. The problem happened because esbuild sometimes substitutes identifiers for other expressions in the pretty-printer itself, but the decision about whether to wrap the expression or not didn't account for this. Here are some examples:</p> <pre lang="js"><code>// Original code import { constant } from './constants.js' import { imported } from 'external' import { undef } from './empty.js' class Foo { @constant() @imported() @undef() foo } <p>// Old output (with --bundle --format=cjs --packages=external --minify-syntax) var import_external = require("external"); var Foo = class { <a href="https://github.com/123"><code>@123</code></a>() @(0, import_external.imported)() @(void 0)() foo; };</p> <p>// New output (with --bundle --format=cjs --packages=external --minify-syntax) var import_external = require("external"); var Foo = class { @(123()) @((0, import_external.imported)()) @((void 0)()) foo; }; </code></pre></p> </li> <li> <p>Allow pre-release versions to be passed to <code>target</code> (<a href="https://redirect.github.com/evanw/esbuild/issues/3388">#3388</a>)</p> <p>People want to be able to pass version numbers for unreleased versions of node (which have extra stuff after the version numbers) to esbuild's <code>target</code> setting and have esbuild do something reasonable with them. These version strings are of course not present in esbuild's internal feature compatibility table because an unreleased version has not been released yet (by definition). With this release, esbuild will now attempt to accept these version strings passed to <code>target</code> and do something reasonable with them.</p> </li> </ul> <h2>v0.19.3</h2> <ul> <li> <p>Fix <code>list-style-type</code> with the <code>local-css</code> loader (<a href="https://redirect.github.com/evanw/esbuild/issues/3325">#3325</a>)</p> <p>The <code>local-css</code> loader incorrectly treated all identifiers provided to <code>list-style-type</code> as a custom local identifier. That included identifiers such as <code>none</code> which have special meaning in CSS, and which should not be treated as custom local identifiers. This release fixes this bug:</p> <pre lang="css"><code>/* Original code */ ul { list-style-type: none } <p>/* Old output (with --loader=local-css) */ </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.19.4</h2> <ul> <li> <p>Fix printing of JavaScript decorators in tricky cases (<a href="https://redirect.github.com/evanw/esbuild/issues/3396">#3396</a>)</p> <p>This release fixes some bugs where esbuild's pretty-printing of JavaScript decorators could incorrectly produced code with a syntax error. The problem happened because esbuild sometimes substitutes identifiers for other expressions in the pretty-printer itself, but the decision about whether to wrap the expression or not didn't account for this. Here are some examples:</p> <pre lang="js"><code>// Original code import { constant } from './constants.js' import { imported } from 'external' import { undef } from './empty.js' class Foo { @constant() @imported() @undef() foo } <p>// Old output (with --bundle --format=cjs --packages=external --minify-syntax) var import_external = require("external"); var Foo = class { <a href="https://github.com/123"><code>@123</code></a>() @(0, import_external.imported)() @(void 0)() foo; };</p> <p>// New output (with --bundle --format=cjs --packages=external --minify-syntax) var import_external = require("external"); var Foo = class { @(123()) @((0, import_external.imported)()) @((void 0)()) foo; }; </code></pre></p> </li> <li> <p>Allow pre-release versions to be passed to <code>target</code> (<a href="https://redirect.github.com/evanw/esbuild/issues/3388">#3388</a>)</p> <p>People want to be able to pass version numbers for unreleased versions of node (which have extra stuff after the version numbers) to esbuild's <code>target</code> setting and have esbuild do something reasonable with them. These version strings are of course not present in esbuild's internal feature compatibility table because an unreleased version has not been released yet (by definition). With this release, esbuild will now attempt to accept these version strings passed to <code>target</code> and do something reasonable with them.</p> </li> </ul> <h2>0.19.3</h2> <ul> <li> <p>Fix <code>list-style-type</code> with the <code>local-css</code> loader (<a href="https://redirect.github.com/evanw/esbuild/issues/3325">#3325</a>)</p> <p>The <code>local-css</code> loader incorrectly treated all identifiers provided to <code>list-style-type</code> as a custom local identifier. That included identifiers such as <code>none</code> which have special meaning in CSS, and which should not be treated as custom local identifiers. This release fixes this bug:</p> <pre lang="css"><code>/* Original code */ ul { list-style-type: none } </code></pre> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/evanw/esbuild/commit/a75b16ec09e76a050cea8ad43588172dc297784d"><code>a75b16e</code></a> publish 0.19.4 to npm</li> <li><a href="https://github.com/evanw/esbuild/commit/65a4439ff7c469ffc654f497fe3dee6bb1fa2ddb"><code>65a4439</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/3396">#3396</a>: js decorator pretty-printing bugs</li> <li><a href="https://github.com/evanw/esbuild/commit/6ad177c55bb5ea6f47cf741487308ee612c75222"><code>6ad177c</code></a> add some js decorator printing tests</li> <li><a href="https://github.com/evanw/esbuild/commit/0e1696fdce7cd97d2d500358b69a4051f1417585"><code>0e1696f</code></a> ignore <code>TP</code> in data from caniuse-lite</li> <li><a href="https://github.com/evanw/esbuild/commit/e7bf735c440c3e7ecc1b59826071ff6891f1691f"><code>e7bf735</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/3390">#3390</a>: allow <code>using</code> disposable functions (<a href="https://redirect.github.com/evanw/esbuild/issues/3391">#3391</a>)</li> <li><a href="https://github.com/evanw/esbuild/commit/24bea0e759553755f73583c4d79c40d8a8bbf975"><code>24bea0e</code></a> update <code>compat-table</code> (note: regexp unicode 15.1)</li> <li><a href="https://github.com/evanw/esbuild/commit/ea9c644db3c95cd264fa12f6d85fd67daabb51eb"><code>ea9c644</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/3388">#3388</a>: do something with pre-release versions</li> <li><a href="https://github.com/evanw/esbuild/commit/673ad10ff752486aa90749b63ebeb952c29106a1"><code>673ad10</code></a> publish 0.19.3 to npm</li> <li><a href="https://github.com/evanw/esbuild/commit/6402f110e30d034d19a5f0410d3f5c6fdf86900b"><code>6402f11</code></a> basic support for parsing import attributes</li> <li><a href="https://github.com/evanw/esbuild/commit/7ece5567511b25fa559082a8fd9aef8c23db66a1"><code>7ece556</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/3322">#3322</a>: avoid temporaries before <code>"use strict"</code></li> <li>Additional commits viewable in <a href="https://github.com/evanw/esbuild/compare/v0.19.2...v0.19.4">compare view</a></li> </ul> </details> <br /> Updates `undici` from 5.23.0 to 5.25.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/nodejs/undici/releases">undici's releases</a>.</em></p> <blockquote> <h2>v5.25.2</h2> <h2>What's Changed</h2> <ul> <li>Add Khaf to releasers by <a href="https://github.com/mcollina"><code>@mcollina</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/2276">nodejs/undici#2276</a></li> <li>fix: fix request with readable mode is object by <a href="https://github.com/killagu"><code>@killagu</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/2279">nodejs/undici#2279</a></li> <li>fix loading websockets when node is built w/ --without-ssl by <a href="https://github.com/KhafraDev"><code>@KhafraDev</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/2282">nodejs/undici#2282</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/killagu"><code>@killagu</code></a> made their first contribution in <a href="https://redirect.github.com/nodejs/undici/pull/2279">nodejs/undici#2279</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/nodejs/undici/compare/v5.25.1...v5.25.2">https://github.com/nodejs/undici/compare/v5.25.1...v5.25.2</a></p> <h2>v5.25.1</h2> <h2>What's Changed</h2> <ul> <li>Add publish types script by <a href="https://github.com/Ethan-Arrowood"><code>@Ethan-Arrowood</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/2273">nodejs/undici#2273</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/nodejs/undici/compare/v5.25.0...v5.25.1">https://github.com/nodejs/undici/compare/v5.25.0...v5.25.1</a></p> <h2>v5.25.0</h2> <h2>What's Changed</h2> <ul> <li>fix: h2 without body by <a href="https://github.com/metcoder95"><code>@metcoder95</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/2258">nodejs/undici#2258</a></li> <li>ci: remove duplicated runs by <a href="https://github.com/metcoder95"><code>@metcoder95</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/2265">nodejs/undici#2265</a></li> <li>improve documentation of timeouts by making the units clear in all places by <a href="https://github.com/mcfedr"><code>@mcfedr</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/2266">nodejs/undici#2266</a></li> <li>expose websocket in node bundle by <a href="https://github.com/KhafraDev"><code>@KhafraDev</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/2217">nodejs/undici#2217</a></li> <li>test: fix Fetch/HTTP2 tests by <a href="https://github.com/metcoder95"><code>@metcoder95</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/2263">nodejs/undici#2263</a></li> <li>fix undici when node is built with --without-ssl by <a href="https://github.com/KhafraDev"><code>@KhafraDev</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/2272">nodejs/undici#2272</a></li> <li>fix: Fix type definition for Client Interceptors by <a href="https://github.com/ComradeCow"><code>@ComradeCow</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/2269">nodejs/undici#2269</a></li> <li>Fix http2 agent by <a href="https://github.com/mcollina"><code>@mcollina</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/2275">nodejs/undici#2275</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/ComradeCow"><code>@ComradeCow</code></a> made their first contribution in <a href="https://redirect.github.com/nodejs/undici/pull/2269">nodejs/undici#2269</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/nodejs/undici/compare/v5.24.0...v5.25.0">https://github.com/nodejs/undici/compare/v5.24.0...v5.25.0</a></p> <h2>v5.24.0</h2> <h2>Notable Changes</h2> <ul> <li>feat: Add H2 support by <a href="https://github.com/metcoder95"><code>@metcoder95</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/2061">nodejs/undici#2061</a></li> </ul> <h2>What's Changed</h2> <ul> <li>build(deps): bump step-security/harden-runner from 2.4.1 to 2.5.0 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/2203">nodejs/undici#2203</a></li> <li>better stack trace for body.json by <a href="https://github.com/KhafraDev"><code>@KhafraDev</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/2215">nodejs/undici#2215</a></li> <li>allow http & https websocket urls by <a href="https://github.com/KhafraDev"><code>@KhafraDev</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/2218">nodejs/undici#2218</a></li> <li>build(deps-dev): bump <code>@sinonjs/fake-timers</code> from 10.3.0 to 11.1.0 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/2221">nodejs/undici#2221</a></li> <li>fix: pass ProxyAgent proxy status code error by <a href="https://github.com/NBNGaming"><code>@NBNGaming</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/2162">nodejs/undici#2162</a></li> <li>fix failing test by <a href="https://github.com/KhafraDev"><code>@KhafraDev</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/2223">nodejs/undici#2223</a></li> <li>docs: update MockPool.md intercept method description by <a href="https://github.com/capaj"><code>@capaj</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/2220">nodejs/undici#2220</a></li> <li>Update wpts by <a href="https://github.com/KhafraDev"><code>@KhafraDev</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/2226">nodejs/undici#2226</a></li> <li>build(deps): bump github/codeql-action from 2.21.2 to 2.21.5 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/2240">nodejs/undici#2240</a></li> <li>build(deps): bump actions/setup-node from 3.6.0 to 3.8.1 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/2237">nodejs/undici#2237</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/nodejs/undici/commit/4013c4b8932e73728809e4106d5c9d9d40648031"><code>4013c4b</code></a> Bumped v5.25.2</li> <li><a href="https://github.com/nodejs/undici/commit/b85ac789de76d95de6db7d442b31feed46c671ca"><code>b85ac78</code></a> fix loading websockets when node is built w/ --without-ssl (<a href="https://redirect.github.com/nodejs/undici/issues/2282">#2282</a>)</li> <li><a href="https://github.com/nodejs/undici/commit/ba95ff6cf622a4ce8d6d9d42da22ebf9f15685a0"><code>ba95ff6</code></a> fix: fix request with readable mode is object (<a href="https://redirect.github.com/nodejs/undici/issues/2279">#2279</a>)</li> <li><a href="https://github.com/nodejs/undici/commit/a73260339fec7852b1c9a067b342bad0b87b20ee"><code>a732603</code></a> Add Khaf to releasers (<a href="https://redirect.github.com/nodejs/undici/issues/2276">#2276</a>)</li> <li><a href="https://github.com/nodejs/undici/commit/c86279c9bcf62fe28d124b124b91eb364d478a25"><code>c86279c</code></a> [email protected]</li> <li><a href="https://github.com/nodejs/undici/commit/e8a667452cb00bf46a3bb62ee0d5af61723fb62a"><code>e8a6674</code></a> 5.25.1</li> <li><a href="https://github.com/nodejs/undici/commit/5c2e597bd938ce99a0246f9dfbfac6d3f3a31be9"><code>5c2e597</code></a> Add publish types script (<a href="https://redirect.github.com/nodejs/undici/issues/2273">#2273</a>)</li> <li><a href="https://github.com/nodejs/undici/commit/985b3816708512bafefa1544def183cc6d1536be"><code>985b381</code></a> Bumped v5.25.0</li> <li><a href="https://github.com/nodejs/undici/commit/d1e867e1cddbfed6ee405c8d8872ed4f0c964689"><code>d1e867e</code></a> Fix http2 agent (<a href="https://redirect.github.com/nodejs/undici/issues/2275">#2275</a>)</li> <li><a href="https://github.com/nodejs/undici/commit/4d7c319d67a73f7284216ac38e81be4f94f70cde"><code>4d7c319</code></a> Fix type definition for Client Interceptors (<a href="https://redirect.github.com/nodejs/undici/issues/2269">#2269</a>)</li> <li>Additional commits viewable in <a href="https://github.com/nodejs/undici/compare/v5.23.0...v5.25.2">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] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information