Skip to content

Commit

Permalink
deps: bump the dependency-updates group across 1 directory with 2 upd…
Browse files Browse the repository at this point in the history
…ates (#917)

Bumps the dependency-updates group with 2 updates in the / directory:
[@npmcli/template-oss](https://github.com/npm/template-oss) and
[esbuild](https://github.com/evanw/esbuild).

Updates `@npmcli/template-oss` from 4.23.5 to 4.23.6
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/npm/template-oss/releases"><code>@​npmcli/template-oss</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v4.23.6</h2>
<h2><a
href="https://github.com/npm/template-oss/compare/v4.23.5...v4.23.6">4.23.6</a>
(2024-12-11)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><a
href="https://github.com/npm/template-oss/commit/252092a4e06fcfd1e64efdaa5c392b3cccada13a"><code>252092a</code></a>
<a href="https://redirect.github.com/npm/template-oss/pull/495">#495</a>
correct versions with prereleases (<a
href="https://redirect.github.com/npm/template-oss/issues/495">#495</a>)
(<a href="https://github.com/reggi"><code>@​reggi</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/npm/template-oss/blob/main/CHANGELOG.md"><code>@​npmcli/template-oss</code>'s
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/npm/template-oss/compare/v4.23.5...v4.23.6">4.23.6</a>
(2024-12-11)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><a
href="https://github.com/npm/template-oss/commit/252092a4e06fcfd1e64efdaa5c392b3cccada13a"><code>252092a</code></a>
<a href="https://redirect.github.com/npm/template-oss/pull/495">#495</a>
correct versions with prereleases (<a
href="https://redirect.github.com/npm/template-oss/issues/495">#495</a>)
(<a href="https://github.com/reggi"><code>@​reggi</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/npm/template-oss/commit/c1727547846c1e557d86d4e84ed5cf0addf17ad4"><code>c172754</code></a>
chore: release 4.23.6 (<a
href="https://redirect.github.com/npm/template-oss/issues/496">#496</a>)</li>
<li><a
href="https://github.com/npm/template-oss/commit/252092a4e06fcfd1e64efdaa5c392b3cccada13a"><code>252092a</code></a>
fix: correct versions with prereleases (<a
href="https://redirect.github.com/npm/template-oss/issues/495">#495</a>)</li>
<li>See full diff in <a
href="https://github.com/npm/template-oss/compare/v4.23.5...v4.23.6">compare
view</a></li>
</ul>
</details>
<br />

Updates `esbuild` from 0.24.0 to 0.24.1
<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.24.1</h2>
<ul>
<li>
<p>Allow <code>es2024</code> as a target in <code>tsconfig.json</code>
(<a
href="https://redirect.github.com/evanw/esbuild/issues/4004">#4004</a>)</p>
<p>TypeScript recently <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-7/#support-for---target-es2024-and---lib-es2024">added
<code>es2024</code></a> as a compilation target, so esbuild now supports
this in the <code>target</code> field of <code>tsconfig.json</code>
files, such as in the following configuration file:</p>
<pre lang="json"><code>{
  &quot;compilerOptions&quot;: {
    &quot;target&quot;: &quot;ES2024&quot;
  }
}
</code></pre>
<p>As a reminder, the only thing that esbuild uses this field for is
determining whether or not to use legacy TypeScript behavior for class
fields. You can read more in <a
href="https://esbuild.github.io/content-types/#tsconfig-json">the
documentation</a>.</p>
<p>This fix was contributed by <a
href="https://github.com/billyjanitsch"><code>@​billyjanitsch</code></a>.</p>
</li>
<li>
<p>Allow automatic semicolon insertion after
<code>get</code>/<code>set</code></p>
<p>This change fixes a grammar bug in the parser that incorrectly
treated the following code as a syntax error:</p>
<pre lang="ts"><code>class Foo {
  get
  *x() {}
  set
  *y() {}
}
</code></pre>
<p>The above code will be considered valid starting with this release.
This change to esbuild follows a <a
href="https://redirect.github.com/microsoft/TypeScript/pull/60225">similar
change to TypeScript</a> which will allow this syntax starting with
TypeScript 5.7.</p>
</li>
<li>
<p>Allow quoted property names in <code>--define</code> and
<code>--pure</code> (<a
href="https://redirect.github.com/evanw/esbuild/issues/4008">#4008</a>)</p>
<p>The <code>define</code> and <code>pure</code> API options now accept
identifier expressions containing quoted property names. Previously all
identifiers in the identifier expression had to be bare identifiers.
This change now makes <code>--define</code> and <code>--pure</code>
consistent with <code>--global-name</code>, which already supported
quoted property names. For example, the following is now possible:</p>
<pre lang="js"><code>// The following code now transforms to
&quot;return true;\n&quot;
console.log(esbuild.transformSync(
  `return process.env['SOME-TEST-VAR']`,
  { define: { 'process.env[&quot;SOME-TEST-VAR&quot;]': 'true' } },
))
</code></pre>
<p>Note that if you're passing values like this on the command line
using esbuild's <code>--define</code> flag, then you'll need to know how
to escape quote characters for your shell. You may find esbuild's
JavaScript API more ergonomic and portable than writing shell code.</p>
</li>
<li>
<p>Minify empty <code>try</code>/<code>catch</code>/<code>finally</code>
blocks (<a
href="https://redirect.github.com/evanw/esbuild/issues/4003">#4003</a>)</p>
<p>With this release, esbuild will now attempt to minify empty
<code>try</code> blocks:</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.24.1</h2>
<ul>
<li>
<p>Allow <code>es2024</code> as a target in <code>tsconfig.json</code>
(<a
href="https://redirect.github.com/evanw/esbuild/issues/4004">#4004</a>)</p>
<p>TypeScript recently <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-7/#support-for---target-es2024-and---lib-es2024">added
<code>es2024</code></a> as a compilation target, so esbuild now supports
this in the <code>target</code> field of <code>tsconfig.json</code>
files, such as in the following configuration file:</p>
<pre lang="json"><code>{
  &quot;compilerOptions&quot;: {
    &quot;target&quot;: &quot;ES2024&quot;
  }
}
</code></pre>
<p>As a reminder, the only thing that esbuild uses this field for is
determining whether or not to use legacy TypeScript behavior for class
fields. You can read more in <a
href="https://esbuild.github.io/content-types/#tsconfig-json">the
documentation</a>.</p>
<p>This fix was contributed by <a
href="https://github.com/billyjanitsch"><code>@​billyjanitsch</code></a>.</p>
</li>
<li>
<p>Allow automatic semicolon insertion after
<code>get</code>/<code>set</code></p>
<p>This change fixes a grammar bug in the parser that incorrectly
treated the following code as a syntax error:</p>
<pre lang="ts"><code>class Foo {
  get
  *x() {}
  set
  *y() {}
}
</code></pre>
<p>The above code will be considered valid starting with this release.
This change to esbuild follows a <a
href="https://redirect.github.com/microsoft/TypeScript/pull/60225">similar
change to TypeScript</a> which will allow this syntax starting with
TypeScript 5.7.</p>
</li>
<li>
<p>Allow quoted property names in <code>--define</code> and
<code>--pure</code> (<a
href="https://redirect.github.com/evanw/esbuild/issues/4008">#4008</a>)</p>
<p>The <code>define</code> and <code>pure</code> API options now accept
identifier expressions containing quoted property names. Previously all
identifiers in the identifier expression had to be bare identifiers.
This change now makes <code>--define</code> and <code>--pure</code>
consistent with <code>--global-name</code>, which already supported
quoted property names. For example, the following is now possible:</p>
<pre lang="js"><code>// The following code now transforms to
&quot;return true;\n&quot;
console.log(esbuild.transformSync(
  `return process.env['SOME-TEST-VAR']`,
  { define: { 'process.env[&quot;SOME-TEST-VAR&quot;]': 'true' } },
))
</code></pre>
<p>Note that if you're passing values like this on the command line
using esbuild's <code>--define</code> flag, then you'll need to know how
to escape quote characters for your shell. You may find esbuild's
JavaScript API more ergonomic and portable than writing shell code.</p>
</li>
<li>
<p>Minify empty <code>try</code>/<code>catch</code>/<code>finally</code>
blocks (<a
href="https://redirect.github.com/evanw/esbuild/issues/4003">#4003</a>)</p>
<p>With this release, esbuild will now attempt to minify empty
<code>try</code> blocks:</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/de9598f42dc3ffc395e3fd3672a4804f6b4e5c09"><code>de9598f</code></a>
publish 0.24.1 to npm</li>
<li><a
href="https://github.com/evanw/esbuild/commit/15d56ca7d2196839c1d13a15fc214d6e81169e30"><code>15d56ca</code></a>
emit null source mappings for empty chunk content</li>
<li><a
href="https://github.com/evanw/esbuild/commit/8d98f6f6e663f7ecc9f0496edbd8bb8314b0333a"><code>8d98f6f</code></a>
fix <a
href="https://redirect.github.com/evanw/esbuild/issues/3985">#3985</a>:
<code>entryPoint</code> metadata for <code>copy</code> loader</li>
<li><a
href="https://github.com/evanw/esbuild/commit/0db1b828bf69fa353f17e65837f2114d94b9e2c3"><code>0db1b82</code></a>
fix <a
href="https://redirect.github.com/evanw/esbuild/issues/3998">#3998</a>:
avoid <code>outbase</code> in identifier names</li>
<li><a
href="https://github.com/evanw/esbuild/commit/723647263fcd0e4095e25a569e1d0a38f382768a"><code>7236472</code></a>
close <a
href="https://redirect.github.com/evanw/esbuild/issues/3974">#3974</a>:
add support for netbsd on arm64</li>
<li><a
href="https://github.com/evanw/esbuild/commit/3ae3525a3c4aa1408cf94f5f473a1d5481c176cf"><code>3ae3525</code></a>
fix <a
href="https://redirect.github.com/evanw/esbuild/issues/3990">#3990</a>:
add credit for the <code>es2024</code> change</li>
<li><a
href="https://github.com/evanw/esbuild/commit/88977ccfd8b29b8fc2bb5a41af7efcf2d475ff2b"><code>88977cc</code></a>
run <code>make update-compat-table</code> and fix breakages</li>
<li><a
href="https://github.com/evanw/esbuild/commit/fd4cea71d2ec450d7032cefd4f052f183636ad04"><code>fd4cea7</code></a>
fix <a
href="https://redirect.github.com/evanw/esbuild/issues/4008">#4008</a>:
allow quoted <code>define</code> and <code>pure</code> names</li>
<li><a
href="https://github.com/evanw/esbuild/commit/68573abff50db8a0c3be0c1f6ec5209dab5663f9"><code>68573ab</code></a>
internal: factor out key format for define map</li>
<li><a
href="https://github.com/evanw/esbuild/commit/364e5b960d0d8042c8600e22b58447349629c36d"><code>364e5b9</code></a>
internal: remove the separate <code>DotDefine</code> struct</li>
<li>Additional commits viewable in <a
href="https://github.com/evanw/esbuild/compare/v0.24.0...v0.24.1">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>
Co-authored-by: npm CLI robot <[email protected]>
  • Loading branch information
dependabot[bot] and npm-cli-bot authored Dec 20, 2024
1 parent 80c8ece commit d99263a
Show file tree
Hide file tree
Showing 4 changed files with 127 additions and 111 deletions.
Loading

0 comments on commit d99263a

Please sign in to comment.