[PR #101] [CLOSED] Bump esbuild from 0.17.17 to 0.17.18 #438

Closed
opened 2026-03-15 14:19:05 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/axllent/mailpit/pull/101
Author: @dependabot[bot]
Created: 5/1/2023
Status: Closed

Base: developHead: dependabot/npm_and_yarn/esbuild-0.17.18


📝 Commits (1)

  • 970c6a8 Bump esbuild from 0.17.17 to 0.17.18

📊 Changes

2 files changed (+93 additions, -93 deletions)

View changed files

📝 package-lock.json (+92 -92)
📝 package.json (+1 -1)

📄 Description

Bumps esbuild from 0.17.17 to 0.17.18.

Release notes

Sourced from esbuild's releases.

v0.17.18

  • Fix non-default JSON import error with export {} from (#3070)

    This release fixes a bug where esbuild incorrectly identified statements of the form export { default as x } from "y" assert { type: "json" } as a non-default import. The bug did not affect code of the form import { default as x } from ... (only code that used the export keyword).

  • Fix a crash with an invalid subpath import (#3067)

    Previously esbuild could crash when attempting to generate a friendly error message for an invalid subpath import (i.e. an import starting with #). This happened because esbuild originally only supported the exports field and the code for that error message was not updated when esbuild later added support for the imports field. This crash has been fixed.

Changelog

Sourced from esbuild's changelog.

0.17.18

  • Fix non-default JSON import error with export {} from (#3070)

    This release fixes a bug where esbuild incorrectly identified statements of the form export { default as x } from "y" assert { type: "json" } as a non-default import. The bug did not affect code of the form import { default as x } from ... (only code that used the export keyword).

  • Fix a crash with an invalid subpath import (#3067)

    Previously esbuild could crash when attempting to generate a friendly error message for an invalid subpath import (i.e. an import starting with #). This happened because esbuild originally only supported the exports field and the code for that error message was not updated when esbuild later added support for the imports field. This crash has been fixed.

Commits

Dependabot compatibility score

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 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 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)
  • @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)
  • @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)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/axllent/mailpit/pull/101 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 5/1/2023 **Status:** ❌ Closed **Base:** `develop` ← **Head:** `dependabot/npm_and_yarn/esbuild-0.17.18` --- ### 📝 Commits (1) - [`970c6a8`](https://github.com/axllent/mailpit/commit/970c6a8e616c550ae9e2b9a8dad986e24d8d8e1c) Bump esbuild from 0.17.17 to 0.17.18 ### 📊 Changes **2 files changed** (+93 additions, -93 deletions) <details> <summary>View changed files</summary> 📝 `package-lock.json` (+92 -92) 📝 `package.json` (+1 -1) </details> ### 📄 Description Bumps [esbuild](https://github.com/evanw/esbuild) from 0.17.17 to 0.17.18. <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.17.18</h2> <ul> <li> <p>Fix non-default JSON import error with <code>export {} from</code> (<a href="https://redirect.github.com/evanw/esbuild/issues/3070">#3070</a>)</p> <p>This release fixes a bug where esbuild incorrectly identified statements of the form <code>export { default as x } from &quot;y&quot; assert { type: &quot;json&quot; }</code> as a non-default import. The bug did not affect code of the form <code>import { default as x } from ...</code> (only code that used the <code>export</code> keyword).</p> </li> <li> <p>Fix a crash with an invalid subpath import (<a href="https://redirect.github.com/evanw/esbuild/issues/3067">#3067</a>)</p> <p>Previously esbuild could crash when attempting to generate a friendly error message for an invalid <a href="https://nodejs.org/api/packages.html#subpath-imports">subpath import</a> (i.e. an import starting with <code>#</code>). This happened because esbuild originally only supported the <code>exports</code> field and the code for that error message was not updated when esbuild later added support for the <code>imports</code> field. This crash has been fixed.</p> </li> </ul> </blockquote> </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.17.18</h2> <ul> <li> <p>Fix non-default JSON import error with <code>export {} from</code> (<a href="https://redirect.github.com/evanw/esbuild/issues/3070">#3070</a>)</p> <p>This release fixes a bug where esbuild incorrectly identified statements of the form <code>export { default as x } from &quot;y&quot; assert { type: &quot;json&quot; }</code> as a non-default import. The bug did not affect code of the form <code>import { default as x } from ...</code> (only code that used the <code>export</code> keyword).</p> </li> <li> <p>Fix a crash with an invalid subpath import (<a href="https://redirect.github.com/evanw/esbuild/issues/3067">#3067</a>)</p> <p>Previously esbuild could crash when attempting to generate a friendly error message for an invalid <a href="https://nodejs.org/api/packages.html#subpath-imports">subpath import</a> (i.e. an import starting with <code>#</code>). This happened because esbuild originally only supported the <code>exports</code> field and the code for that error message was not updated when esbuild later added support for the <code>imports</code> field. This crash has been fixed.</p> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/evanw/esbuild/commit/ee646b4ed8d3b9567e1a0ce2e478241b68a2a2e4"><code>ee646b4</code></a> publish 0.17.18 to npm</li> <li><a href="https://github.com/evanw/esbuild/commit/ecea1f4b9f812930a2dc104212e7f30eba679415"><code>ecea1f4</code></a> put back comment that was removed</li> <li><a href="https://github.com/evanw/esbuild/commit/9092a1ba1e7ccc92d0dfbb83eab3450cec279397"><code>9092a1b</code></a> perf(linker): Fixes brute force chunk cycle detection (<a href="https://redirect.github.com/evanw/esbuild/issues/3069">#3069</a>)</li> <li><a href="https://github.com/evanw/esbuild/commit/dbefad525a85d33be6093c370939df05401e57e8"><code>dbefad5</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/3067">#3067</a>: crash due to bad subpath import error</li> <li><a href="https://github.com/evanw/esbuild/commit/1365a07a2088b703241f34342b2d3892fd769d78"><code>1365a07</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/3070">#3070</a>: fix detection of non-default re-exports</li> <li><a href="https://github.com/evanw/esbuild/commit/81cb21c05e547525127215786d5eb45505ec6842"><code>81cb21c</code></a> add back warning for <a href="https://redirect.github.com/evanw/esbuild/issues/466">#466</a></li> <li>See full diff in <a href="https://github.com/evanw/esbuild/compare/v0.17.17...v0.17.18">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=esbuild&package-manager=npm_and_yarn&previous-version=0.17.17&new-version=0.17.18)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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 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) - `@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) - `@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) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-15 14:19:05 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/mailpit#438
No description provided.