Skip to content

Bump the all-dependencies group with 6 updates#157

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/all-dependencies-daacb98ccb
Open

Bump the all-dependencies group with 6 updates#157
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/all-dependencies-daacb98ccb

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the all-dependencies group with 6 updates:

Package From To
oxc-parser 0.134.0 0.135.0
@types/node 25.9.2 25.9.3
prettier 3.8.3 3.8.4
esbuild 0.28.0 0.28.1
@happy-dom/global-registrator 20.10.2 20.10.3
@swc/core 1.15.40 1.15.41

Updates oxc-parser from 0.134.0 to 0.135.0

Release notes

Sourced from oxc-parser's releases.

oxc crates_v0.135.0

💥 BREAKING CHANGES

  • ee4dc73 ast: [BREAKING] Add #[non_exhaustive] to AST nodes (#23046) (overlookmotel)
  • 4c35362 ast: [BREAKING] Add AstBuilder::template_element_escape_raw and template_element_escape_raw_with_lone_surrogates methods (#23047) (overlookmotel)

🚀 Features

  • b846ab2 react_compiler: Integrate the Rust port of the React Compiler (#22942) (Boshen)
  • 5b8dd68 parser: Report TS1255 for invalid class definite assertions (#22917) (camc314)
  • 85efabf semantic: Make building the class table optional, off by default (#22862) (Boshen)

🐛 Bug Fixes

  • 556acdc codegen: Parenthesize TS-cast assignment targets (#23112) (Boshen)
  • 37169ff codegen: Don't emit space between postfix -- and > when minifying (#23036) (Boshen)
  • a4b1bf7 codegen: Drop redundant whitespace in minified TypeScript output (#23038) (Boshen)
  • cf53285 parser: Report reserved type-declaration names in the parser (#23035) (Boshen)
  • 4e44969 ast: Fix UB in escape_template_element_raw (#23052) (overlookmotel)
  • c543154 parser: Report comma operator in JSX expression in the parser (#23030) (Boshen)
  • 325c94f codegen: Tighten conditional-type and constructor-type whitespace when minifying (#23033) (Boshen)
  • 95dd3a2 parser: Report import type alias to a non-external reference in the parser (#23032) (Boshen)
  • 90180b8 codegen: Drop space after : in function return type when minifying (#23028) (Boshen)
  • 6da876e parser: Report abstract private class field in the parser (#23029) (Boshen)
  • 28467ce codegen: Don't emit space before a postfix update operand when minifying (#23027) (Boshen)
  • cb29926 codegen: Drop redundant space after export default when minifying (#23024) (Boshen)
  • 62965ae codegen: Drop redundant space after else when minifying (#23025) (Boshen)
  • 989230a parser: Report compound assignment to non-simple target in the parser (#23022) (Boshen)
  • 06f367c parser: Report super.#field private access in the parser (#23014) (Boshen)
  • 184edef codegen: Print space before const/declare enum modifier (#23013) (Boshen)
  • 4d722e0 parser: Report duplicate switch default clause in the parser (#23012) (Boshen)
  • 597ed85 codegen: Parenthesize let/async for-of head target (#23008) (Boshen)
  • 8b631bf codegen: Remove stray space before mapped type value colon (#23010) (Boshen)
  • c08407e codegen: Don't over-parenthesize in inside an arrow in a for-init (#23009) (Boshen)
  • 600cd6f codegen: Parenthesize lower-precedence TSInstantiationExpression operand (#23007) (Boshen)
  • 187e1a5 codegen: Don't leak space after comment-only JSX expression container (#23006) (Boshen)
  • 294c473 codegen: Don't over-parenthesize TSTypeAssertion operand (#23004) (Boshen)
  • 786d96f codegen: Give TSTypeAssertion unary precedence (#23002) (Boshen)
  • 1295882 parser: Report new.target and import.meta syntax errors in the parser (#23003) (Boshen)
  • d727b6b codegen: Parenthesize await expression as base of ** (#23001) (Boshen)
  • 67dfa08 codegen: Keep parentheses around new callees containing a call (#22997) (Boshen)
  • 17e7cf3 parser: Disallow unerasable as/satisfies assertions (#22986) (Boshen)
  • beb46d3 parser: Commit to module goal on decorated exports (#22941) (Boshen)
  • 49e63f7 isolated-declarations: Require annotations for satisfies initializers (#22898) (camc314)
  • 8c93601 isolated-declarations: Allow unknown enum initializer in non-const enum (#22900) (camc314)

⚡ Performance

  • 7d89909 parser: Peek instead of lookahead for yield disambiguation (#23071) (Boshen)
  • bf872f0 parser: Skip arrow lookahead for a parenthesized literal (#23070) (Boshen)

... (truncated)

Commits

Updates @types/node from 25.9.2 to 25.9.3

Commits

Updates prettier from 3.8.3 to 3.8.4

Release notes

Sourced from prettier's releases.

3.8.4

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.8.4

diff

Markdown: Fix blank lines between list items and nested sub-lists being removed in Markdown/MDX (#17746 by @​byplayer)

Prettier was removing blank lines between list items and their nested sub-lists, converting loose lists into tight lists and changing their semantic meaning.

<!-- Input -->
- a


b


c

d



<!-- Prettier 3.8.3 -->

a

b


c

d



<!-- Prettier 3.8.4 -->


a

b



c

d
Commits
  • 1c6ba55 Release 3.8.4
  • 4a673dc Fix blank lines between list items and nested sub-lists being removed in Mark...
  • 074aaed Replace main branch in changelog link with tags (#19054)
  • c22a003 Bump Prettier dependency to 3.8.3
  • 07bad1f Clean changelog_unreleased
  • See full diff in compare view

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 @happy-dom/global-registrator from 20.10.2 to 20.10.3

Release notes

Sourced from @​happy-dom/global-registrator's releases.

v20.10.3

👷‍♂️ Patch fixes

  • Fix "~=" attribute selector matching hyphenated substrings in CSS selectors - By @​mixelburg in task #2194
Commits

Updates @swc/core from 1.15.40 to 1.15.41

Changelog

Sourced from @​swc/core's changelog.

[1.15.41] - 2026-06-09

Bug Fixes

  • (bindings/node) Preserve source context for AST transforms (#11920) (b6dfa74)

  • (es/codegen) Emit export as namespace correctly (#11923) (4e1f832)

  • (es/codegen) Emit export as namespace minified correctly (#11924) (7157499)

  • (es/compat) Rewrite this in destructuring defaults (#11909) (68af779)

  • (es/decorators) Delay 2022 decorator initializers after private fields (#11847) (3f1a4f5)

  • (es/decorators) Handle import types in decorator metadata (#11916) (f411429)

  • (es/fixer) Preserve new tagged template callee parens (#11922) (242a03a)

  • (es/minifier) Handle unknown member props (#11927) (e59ba68)

  • (es/parser) Handle Flow async generic arrows (#11926) (b9b8993)

  • (es/renamer) Avoid duplicate mangled names across eval scope boundaries (#11913) (4a1af84)

  • (plugin) Avoid importing __free from env (#11908) (4584296)

  • (swc) Preserve plugin error context (#11904) (4e2e9fc)

  • (swc_common) Fix sourcemap panic for multibyte mapping positions (#11918) (40c1601)

Documentation

... (truncated)

Commits
  • 7a72340 chore: Publish 1.15.41 with swc_core v68.0.6
  • 82ae083 chore: Publish 1.15.41-nightly-20260609.1 with swc_core v68.0.6
  • b6dfa74 fix(bindings/node): Preserve source context for AST transforms (#11920)
  • See full diff in compare view

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 all-dependencies group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [oxc-parser](https://github.com/oxc-project/oxc/tree/HEAD/napi/parser) | `0.134.0` | `0.135.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.9.2` | `25.9.3` |
| [prettier](https://github.com/prettier/prettier) | `3.8.3` | `3.8.4` |
| [esbuild](https://github.com/evanw/esbuild) | `0.28.0` | `0.28.1` |
| [@happy-dom/global-registrator](https://github.com/capricorn86/happy-dom) | `20.10.2` | `20.10.3` |
| [@swc/core](https://github.com/swc-project/swc/tree/HEAD/packages/core) | `1.15.40` | `1.15.41` |


Updates `oxc-parser` from 0.134.0 to 0.135.0
- [Release notes](https://github.com/oxc-project/oxc/releases)
- [Changelog](https://github.com/oxc-project/oxc/blob/main/napi/parser/CHANGELOG.md)
- [Commits](https://github.com/oxc-project/oxc/commits/crates_v0.135.0/napi/parser)

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

Updates `prettier` from 3.8.3 to 3.8.4
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.8.3...3.8.4)

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 `@happy-dom/global-registrator` from 20.10.2 to 20.10.3
- [Release notes](https://github.com/capricorn86/happy-dom/releases)
- [Commits](capricorn86/happy-dom@v20.10.2...v20.10.3)

Updates `@swc/core` from 1.15.40 to 1.15.41
- [Release notes](https://github.com/swc-project/swc/releases)
- [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG.md)
- [Commits](https://github.com/swc-project/swc/commits/v1.15.41/packages/core)

---
updated-dependencies:
- dependency-name: oxc-parser
  dependency-version: 0.135.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@types/node"
  dependency-version: 25.9.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: prettier
  dependency-version: 3.8.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: esbuild
  dependency-version: 0.28.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@happy-dom/global-registrator"
  dependency-version: 20.10.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@swc/core"
  dependency-version: 1.15.41
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-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 13, 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