Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 12, 2025

Bumps the npm_and_yarn group with 4 updates in the / directory: esbuild, undici, @discordjs/rest and discord.js.

Updates esbuild from 0.24.0 to 0.25.0

Release notes

Sourced from esbuild's releases.

v0.25.0

This release deliberately contains backwards-incompatible changes. To avoid automatically picking up releases like this, you should either be pinning the exact version of esbuild in your package.json file (recommended) or be using a version range syntax that only accepts patch upgrades such as ^0.24.0 or ~0.24.0. See npm's documentation about semver for more information.

  • Restrict access to esbuild's development server (GHSA-67mh-4wv8-2f99)

    This change addresses esbuild's first security vulnerability report. Previously esbuild set the Access-Control-Allow-Origin header to * to allow esbuild's development server to be flexible in how it's used for development. However, this allows the websites you visit to make HTTP requests to esbuild's local development server, which gives read-only access to your source code if the website were to fetch your source code's specific URL. You can read more information in the report.

    Starting with this release, CORS will now be disabled, and requests will now be denied if the host does not match the one provided to --serve=. The default host is 0.0.0.0, which refers to all of the IP addresses that represent the local machine (e.g. both 127.0.0.1 and 192.168.0.1). If you want to customize anything about esbuild's development server, you can put a proxy in front of esbuild and modify the incoming and/or outgoing requests.

    In addition, the serve() API call has been changed to return an array of hosts instead of a single host string. This makes it possible to determine all of the hosts that esbuild's development server will accept.

    Thanks to @​sapphi-red for reporting this issue.

  • Delete output files when a build fails in watch mode (#3643)

    It has been requested for esbuild to delete files when a build fails in watch mode. Previously esbuild left the old files in place, which could cause people to not immediately realize that the most recent build failed. With this release, esbuild will now delete all output files if a rebuild fails. Fixing the build error and triggering another rebuild will restore all output files again.

  • Fix correctness issues with the CSS nesting transform (#3620, #3877, #3933, #3997, #4005, #4037, #4038)

    This release fixes the following problems:

    • Naive expansion of CSS nesting can result in an exponential blow-up of generated CSS if each nesting level has multiple selectors. Previously esbuild sometimes collapsed individual nesting levels using :is() to limit expansion. However, this collapsing wasn't correct in some cases, so it has been removed to fix correctness issues.

      /* Original code */
      .parent {
        > .a,
        > .b1 > .b2 {
          color: red;
        }
      }
      /* Old output (with --supported:nesting=false) */
      .parent > :is(.a, .b1 > .b2) {
      color: red;
      }
      /* New output (with --supported:nesting=false) */
      .parent > .a,
      .parent > .b1 > .b2 {
      color: red;
      }

      Thanks to @​tim-we for working on a fix.

    • The & CSS nesting selector can be repeated multiple times to increase CSS specificity. Previously esbuild ignored this possibility and incorrectly considered && to have the same specificity as &. With this release, this should now work correctly:

      /* Original code (color should be red) */

... (truncated)

Changelog

Sourced from esbuild's changelog.

Changelog: 2024

This changelog documents all esbuild versions published in the year 2024 (versions 0.19.12 through 0.24.2).

0.24.2

  • Fix regression with --define and import.meta (#4010, #4012, #4013)

    The previous change in version 0.24.1 to use a more expression-like parser for define values to allow quoted property names introduced a regression that removed the ability to use --define:import.meta=.... Even though import is normally a keyword that can't be used as an identifier, ES modules special-case the import.meta expression to behave like an identifier anyway. This change fixes the regression.

    This fix was contributed by @​sapphi-red.

0.24.1

  • Allow es2024 as a target in tsconfig.json (#4004)

    TypeScript recently added es2024 as a compilation target, so esbuild now supports this in the target field of tsconfig.json files, such as in the following configuration file:

    {
      "compilerOptions": {
        "target": "ES2024"
      }
    }

    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 the documentation.

    This fix was contributed by @​billyjanitsch.

  • Allow automatic semicolon insertion after get/set

    This change fixes a grammar bug in the parser that incorrectly treated the following code as a syntax error:

    class Foo {
      get
      *x() {}
      set
      *y() {}
    }

    The above code will be considered valid starting with this release. This change to esbuild follows a similar change to TypeScript which will allow this syntax starting with TypeScript 5.7.

  • Allow quoted property names in --define and --pure (#4008)

    The define and pure 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 --define and --pure consistent with --global-name, which already supported quoted property names. For example, the following is now possible:

... (truncated)

Commits
  • e9174d6 publish 0.25.0 to npm
  • c27dbeb fix hosts in plugin-tests.js
  • 6794f60 fix hosts in node-unref-tests.js
  • de85afd Merge commit from fork
  • da1de1b fix #4065: bitwise operators can return bigints
  • f4e9d19 switch case liveness: default is always last
  • 7aa47c3 fix #4028: minify live/dead switch cases better
  • 22ecd30 minify: more constant folding for strict equality
  • 4cdf03c fix #4053: reordering of .tsx in node_modules
  • dc71977 fix #3692: 0 now picks a random ephemeral port
  • Additional commits viewable in compare view

Updates undici from 6.19.8 to 6.21.1

Release notes

Sourced from undici's releases.

v6.21.1

⚠️ Security Release ⚠️

Fixes CVE CVE-2025-22150 GHSA-c76h-2ccp-4975 (embargoed until 22-01-2025).

What's Changed

Full Changelog: nodejs/undici@v6.21.0...v6.21.1

v6.21.0

What's Changed

Full Changelog: nodejs/undici@v6.20.1...v6.21.0

v6.20.1

What's Changed

Full Changelog: nodejs/undici@v6.20.0...v6.20.1

v6.20.0

What's Changed

... (truncated)

Commits

Updates @discordjs/rest from 2.4.0 to 2.4.3

Release notes

Sourced from @​discordjs/rest's releases.

@​discordjs/rest@​2.4.3

No release notes provided.

@​discordjs/rest@​2.4.2

Bug Fixes

  • Correct guild member banner URL (8d69b24)

@​discordjs/rest@​2.4.1

No release notes provided.

Changelog

Sourced from @​discordjs/rest's changelog.

Changelog

All notable changes to this project will be documented in this file.

Commits
  • 8702978 chore(rest): release @​discordjs/rest@​2.4.3
  • c2b18d6 build: bump undici to 6.21.1
  • 519aa3a build: bump discord-api-types to 0.37.119
  • 73c6bc2 chore: Add contributors and last commit badges (#10428)
  • bbde371 build: bump discord-api-types to 0.37.118
  • 05c63cd chore(rest): release @​discordjs/rest@​2.4.2
  • 8d69b24 fix: correct guild member banner URL
  • 5f8915f chore(rest): release @​discordjs/rest@​2.4.1
  • 0fdbabe build: bump discord-api-types to 0.37.114
  • e9944b3 build: bump discord-api-types to 0.37.113
  • Additional commits viewable in compare view

Updates discord.js from 14.16.3 to 14.18.0

Release notes

Sourced from discord.js's releases.

14.18.0

Bug Fixes

  • Guild: Type error with permissionOverwrites (#10527) (8e1e1be)
  • Incorrect relative path (#10734) (b7f1ebc)
  • PresenceUpdate: Correctly add user regardless of their properties (#10672) (7c1b73c)
  • InteractionResponses: Mark replied true for followUps (#10688) (32dff01)

Documentation

  • Use link tags to render links on the documentation (#10731) (66b9718)
  • Message: Improve message snapshots description (#10709) (31df3d2)

Features

Refactor

Styling

Typings

14.17.3

Bug Fixes

  • Message: Ensure channel is defined for clean content (#10681) (46bf8f0)
  • Use resolve() for PermissionOverwrites (#10686) (7280d4e)

14.17.2

Bug Fixes

  • InteractionResponses: Check correct property for deprecation (77804cf)

... (truncated)

Changelog

Sourced from discord.js's changelog.

14.18.0 - (2025-02-10)

Bug Fixes

  • Guild: Type error with permissionOverwrites (#10527) (8e1e1be)
  • Incorrect relative path (#10734) (b7f1ebc)
  • PresenceUpdate: Correctly add user regardless of their properties (#10672) (7c1b73c)
  • InteractionResponses: Mark replied true for followUps (#10688) (32dff01)

Documentation

  • Use link tags to render links on the documentation (#10731) (66b9718)
  • Message: Improve message snapshots description (#10709) (31df3d2)

Features

Refactor

Styling

Typings

14.17.3 - (2025-01-08)

Bug Fixes

  • Message: Ensure channel is defined for clean content (#10681) (46bf8f0)
  • Use resolve() for PermissionOverwrites (#10686) (7280d4e)

14.17.2 - (2025-01-02)

... (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 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
    You can disable automated security fix PRs for this repo from the Security Alerts page.

…dates

Bumps the npm_and_yarn group with 4 updates in the / directory: [esbuild](https://github.com/evanw/esbuild), [undici](https://github.com/nodejs/undici), [@discordjs/rest](https://github.com/discordjs/discord.js/tree/HEAD/packages/rest) and [discord.js](https://github.com/discordjs/discord.js/tree/HEAD/packages/discord.js).


Updates `esbuild` from 0.24.0 to 0.25.0
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG-2024.md)
- [Commits](evanw/esbuild@v0.24.0...v0.25.0)

Updates `undici` from 6.19.8 to 6.21.1
- [Release notes](https://github.com/nodejs/undici/releases)
- [Commits](nodejs/undici@v6.19.8...v6.21.1)

Updates `@discordjs/rest` from 2.4.0 to 2.4.3
- [Release notes](https://github.com/discordjs/discord.js/releases)
- [Changelog](https://github.com/discordjs/discord.js/blob/main/packages/rest/CHANGELOG.md)
- [Commits](https://github.com/discordjs/discord.js/commits/@discordjs/rest@2.4.3/packages/rest)

Updates `discord.js` from 14.16.3 to 14.18.0
- [Release notes](https://github.com/discordjs/discord.js/releases)
- [Changelog](https://github.com/discordjs/discord.js/blob/14.18.0/packages/discord.js/CHANGELOG.md)
- [Commits](https://github.com/discordjs/discord.js/commits/14.18.0/packages/discord.js)

---
updated-dependencies:
- dependency-name: esbuild
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: undici
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: "@discordjs/rest"
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: discord.js
  dependency-type: direct:production
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from kdev as a code owner February 12, 2025 10:46
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Feb 12, 2025
@socket-security
Copy link

@kdev kdev merged commit 6af9e98 into main Mar 10, 2025
8 checks passed
@kdev kdev deleted the dependabot/npm_and_yarn/npm_and_yarn-a064eee883 branch March 10, 2025 18:12
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.

1 participant