Skip to content

chore(deps): bump the npm-dependencies group with 5 updates#151

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-dependencies-897e4005b2
Open

chore(deps): bump the npm-dependencies group with 5 updates#151
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-dependencies-897e4005b2

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 12, 2026

Copy link
Copy Markdown
Contributor

Bumps the npm-dependencies group with 5 updates:

Package From To
@types/node 25.9.1 25.9.3
esbuild 0.28.0 0.28.1
typescript-eslint 8.60.1 8.61.0
happy-dom 20.10.1 20.10.2
@awesome.me/webawesome 3.7.0 3.8.0

Updates @types/node from 25.9.1 to 25.9.3

Commits

Updates esbuild from 0.28.0 to 0.28.1

Release notes

Sourced from esbuild's releases.

v0.28.1

  • Disallow \ in local development server HTTP requests (GHSA-g7r4-m6w7-qqqr)

    This release fixes a security issue where HTTP requests to esbuild's local development server could traverse outside of the serve directory on Windows using a \ backslash character. It happened due to the use of Go's path.Clean() function, which only handles Unix-style / characters. HTTP requests with paths containing \ are no longer allowed.

    Thanks to @​dellalibera for reporting this issue.

  • Add integrity checks to the Deno API (GHSA-gv7w-rqvm-qjhr)

    The previous release of esbuild added integrity checks to esbuild's npm install script. This release also adds integrity checks to esbuild's Deno install script. Now esbuild's Deno API will also fail with an error if the downloaded esbuild binary contains something other than the expected content.

    Note that esbuild's Deno API installs from registry.npmjs.org by default, but allows the NPM_CONFIG_REGISTRY environment variable to override this with a custom package registry. This change means that the esbuild executable served by NPM_CONFIG_REGISTRY must now match the expected content.

    Thanks to @​sondt99 for reporting this issue.

  • Avoid inlining using and await using declarations (#4482)

    Previously esbuild's minifier sometimes incorrectly inlined using and await using declarations into subsequent uses of that declaration, which then fails to dispose of the resource correctly. This bug happened because inlining was done for let and const declarations by avoiding doing it for var declarations, which no longer worked when more declaration types were added. Here's an example:

    // Original code
    {
      using x = new Resource()
      x.activate()
    }
    // Old output (with --minify)
    new Resource().activate();
    // New output (with --minify)
    {using e=new Resource;e.activate()}

  • Fix module evaluation when an error is thrown (#4461, #4467)

    If an error is thrown during module evaluation, esbuild previously didn't preserve the state of the module for subsequent module references. This was observable if import() or require() is used to import a module multiple times. The thrown error is supposed to be thrown by every call to import() or require(), not just the first. With this release, esbuild will now throw the same error every time you call import() or require() on a module that throws during its evaluation.

  • Fix some edge cases around the new operator (#4477)

    Previously esbuild incorrectly printed certain edge cases involving complex expressions inside the target of a new expression (specifically an optional chain and/or a tagged template literal). The generated code for the new target was not correctly wrapped with parentheses, and either contained a syntax error or had different semantics. These edge cases have been fixed so that they now correctly wrap the new target in parentheses. Here is an example of some affected code:

    // Original code
    new (foo()`bar`)()
    new (foo()?.bar)()
    // Old output
    new foo()bar();
    new (foo())?.bar();

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.28.1

  • Disallow \ in local development server HTTP requests (GHSA-g7r4-m6w7-qqqr)

    This release fixes a security issue where HTTP requests to esbuild's local development server could traverse outside of the serve directory on Windows using a \ backslash character. It happened due to the use of Go's path.Clean() function, which only handles Unix-style / characters. HTTP requests with paths containing \ are no longer allowed.

    Thanks to @​dellalibera for reporting this issue.

  • Add integrity checks to the Deno API (GHSA-gv7w-rqvm-qjhr)

    The previous release of esbuild added integrity checks to esbuild's npm install script. This release also adds integrity checks to esbuild's Deno install script. Now esbuild's Deno API will also fail with an error if the downloaded esbuild binary contains something other than the expected content.

    Note that esbuild's Deno API installs from registry.npmjs.org by default, but allows the NPM_CONFIG_REGISTRY environment variable to override this with a custom package registry. This change means that the esbuild executable served by NPM_CONFIG_REGISTRY must now match the expected content.

    Thanks to @​sondt99 for reporting this issue.

  • Avoid inlining using and await using declarations (#4482)

    Previously esbuild's minifier sometimes incorrectly inlined using and await using declarations into subsequent uses of that declaration, which then fails to dispose of the resource correctly. This bug happened because inlining was done for let and const declarations by avoiding doing it for var declarations, which no longer worked when more declaration types were added. Here's an example:

    // Original code
    {
      using x = new Resource()
      x.activate()
    }
    // Old output (with --minify)
    new Resource().activate();
    // New output (with --minify)
    {using e=new Resource;e.activate()}

  • Fix module evaluation when an error is thrown (#4461, #4467)

    If an error is thrown during module evaluation, esbuild previously didn't preserve the state of the module for subsequent module references. This was observable if import() or require() is used to import a module multiple times. The thrown error is supposed to be thrown by every call to import() or require(), not just the first. With this release, esbuild will now throw the same error every time you call import() or require() on a module that throws during its evaluation.

  • Fix some edge cases around the new operator (#4477)

    Previously esbuild incorrectly printed certain edge cases involving complex expressions inside the target of a new expression (specifically an optional chain and/or a tagged template literal). The generated code for the new target was not correctly wrapped with parentheses, and either contained a syntax error or had different semantics. These edge cases have been fixed so that they now correctly wrap the new target in parentheses. Here is an example of some affected code:

    // Original code
    new (foo()`bar`)()
    new (foo()?.bar)()
    // Old output
    new foo()bar();
    new (foo())?.bar();

... (truncated)

Commits

Updates typescript-eslint from 8.60.1 to 8.61.0

Release notes

Sourced from typescript-eslint's releases.

v8.61.0

8.61.0 (2026-06-08)

🚀 Features

  • ast-spec: change type of UnaryExpression.prefix to always true (#12372)
  • ast-spec: tighten types of ArrowFunction, YieldExpression, TSTypePredicate (#12373)

🩹 Fixes

  • rule-schema-to-typescript-types: respect ECMAScript line terminators (#12374)

❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from typescript-eslint's changelog.

8.61.0 (2026-06-08)

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

Commits

Updates happy-dom from 20.10.1 to 20.10.2

Release notes

Sourced from happy-dom's releases.

v20.10.2

👷‍♂️ Patch fixes

Commits

Updates @awesome.me/webawesome from 3.7.0 to 3.8.0

Release notes

Sourced from @​awesome.me/webawesome's releases.

v3.8.0

Bug Fixes

Commits

  • 0704951: fix copy button test (konnorrogers)
  • 8312c32: fix copy button test (konnorrogers)
  • 340c281: syncing component badges across views via shared macro (#2391) (Brian Talbot) #2391
  • Standardizing Hover Utilities for Card Links (#2390) #2390 (Brian Talbot)
  • Polish Changelog View (#2395) #2395 (Brian Talbot)
  • 9888c98: Make linkify-components Transformer Site-Wide (#2397) (Brian Talbot) #2397
  • Set wa-breadcrumb-item Render href="" as a Link (#2398) #2398 (Brian Talbot)
  • 3fd7088: fixing wa-breadcrumb-item regression rendering as link when href is absent (#2400) (Brian Talbot) #2400
  • 057ef4d: using new size-based values (#2399) (Brian Talbot) #2399
  • f39a4de: udpated changelog (#2406) (Kelsey Jackson) #2406
  • c699518: Fixed link to themes in Angular documentation (#2408) (Anna Johansson) #2408
  • 86adc26: update changelog (#2410) (Cory LaViska) #2410
  • d2c9062: ignore assets directories (#2417) (Konnor Rogers) #2417
  • 2c91bb2: styling wa-textarea disabled state to match wa-input (#2419) (Brian Talbot) #2419
  • 2194fc5: fix padding bug (#2411) (Cory LaViska) #2411
  • Code Example Polish (#2414) #2414 (Brian Talbot)
  • 50ad382: Syncing Component Durations + WA Transition Tokens (#2423) (Brian Talbot) #2423
  • Improve Lighthouse Score (#2420) #2420 (Brian Talbot)
  • 0c785a0: extending transition token sync to wa-combobox and wa-toast-item (#2427) (Brian Talbot) #2427
  • e75719f: unifying component category labels across the docs (#2431) (Brian Talbot) #2431
  • d5aab1c: fixing build awesome nav link by sourcing from site.json (#2432) (Brian Talbot) #2432
  • 7dac904: don't clip outlines everywhere (#2440) (Cory LaViska) #2440
  • 829abbd: Make drawer lightDismiss default false (#2437) (DanielKanyo) #2437
  • ed1aaf7: add tests + changelog; #2437 (#2446) (Cory LaViska) #2446
  • 0c052ab: Add scroll into view handleDocumentKeyDown (#2430) (Wendelin) #2430
  • 57537db: Wendevlin fix dropdown scroll (#2447) (Cory LaViska) #2447
  • f4e485d: add changelog (#2448) (Cory LaViska) #2448
  • 630fc68: fix link; closes #2445 (#2449) (Cory LaViska) #2449
  • 7e0f421: Reset menu styles in Native Styles (#2450) (Lindsay M) #2450
  • Link to a Component's Category (#2443) #2443 (Brian Talbot)
  • 4fb78fc: Improve placement of content in textarea when exceeding rows (#2424) (trent) #2424
  • c3999db: Add text-transform-Based Text Utilities (#2404) (Brian Talbot) #2404
  • 4012339: Add text-align-Based Text Utilities + Adopt Flat wa-text- Naming (#2403) (Brian Talbot) #2403
  • fff9166: Revise Native Styles (#2459) (Brian Talbot) #2459
  • 117d515: Add Prose Text Utility (#2370) (Brian Talbot) #2370
  • d43e26c: Rewrite theming documentation (#2249) (Lindsay M) #2249
  • 4d00ea0: Add and components (#2434) (Kelsey Jackson) #2434
  • 2fe74a1: submit empty strings for null form values (#2463) (Konnor Rogers) #2463
  • 63e6f13: update zoomable frame to import wa-icon (#2466) (Konnor Rogers) #2466
  • 50bdfbc: Add <wa-time-picker>, <wa-known-date>, and supporting translations, events, etc. for <wa-date-picker> and <wa-calendar> (#2407) (Cory LaViska) #2407
  • eafe6e2: Add forked qr-library with support for images (#2139) (Konnor Rogers) #2139
  • 72c389b: Date picker again (#2468) (Cory LaViska) #2468
  • beacbd1: prettier (Cory LaViska)
  • 49ef47c: fix selector column (#2469) (Cory LaViska) #2469

... (truncated)

Commits

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 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

Bumps the npm-dependencies group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.9.1` | `25.9.3` |
| [esbuild](https://github.com/evanw/esbuild) | `0.28.0` | `0.28.1` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.60.1` | `8.61.0` |
| [happy-dom](https://github.com/capricorn86/happy-dom) | `20.10.1` | `20.10.2` |
| [@awesome.me/webawesome](https://github.com/shoelace-style/webawesome) | `3.7.0` | `3.8.0` |


Updates `@types/node` from 25.9.1 to 25.9.3
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `esbuild` from 0.28.0 to 0.28.1
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.28.0...v0.28.1)

Updates `typescript-eslint` from 8.60.1 to 8.61.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.61.0/packages/typescript-eslint)

Updates `happy-dom` from 20.10.1 to 20.10.2
- [Release notes](https://github.com/capricorn86/happy-dom/releases)
- [Commits](capricorn86/happy-dom@v20.10.1...v20.10.2)

Updates `@awesome.me/webawesome` from 3.7.0 to 3.8.0
- [Release notes](https://github.com/shoelace-style/webawesome/releases)
- [Commits](shoelace-style/webawesome@v3.7.0...v3.8.0)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-version: 25.9.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: esbuild
  dependency-version: 0.28.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: typescript-eslint
  dependency-version: 8.61.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: happy-dom
  dependency-version: 20.10.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@awesome.me/webawesome"
  dependency-version: 3.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added Dependencies Pull requests that update a dependency file Javascript Pull requests that update javascript code labels Jun 12, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Dependencies Pull requests that update a dependency file Javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants