WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 30, 2025

Bumps the npm_and_yarn group with 4 updates in the / directory: esbuild, aws-cdk-lib, next and brace-expansion.
Bumps the npm_and_yarn group with 1 update in the /packages/cdk directory: aws-cdk-lib.
Bumps the npm_and_yarn group with 1 update in the /packages/client directory: next.

Updates esbuild from 0.19.12 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 aws-cdk-lib from 2.200.1 to 2.208.0

Release notes

Sourced from aws-cdk-lib's releases.

v2.208.0

Features

  • update L1 CloudFormation resource definitions (#35054) (a2b3e78)
  • region-info: add support for region ap-southeast-6 (#35036)

Bug Fixes

  • core: Tag must have a value error is impossible to attribute to a specific tag (#35091) (6c4181b)
  • custom-resources: use loggingFormat instead of deprecated logFormat (#35015) (81fe660), closes #35002
  • logs: query strings can have multiple stats commands (#34590) (57ae6f9), closes #34578 #34578
  • logs: revert "exposed metric from the metric filter will now include the dimension map (#34648)" (#35102) (24bbced), closes #35097

Alpha modules (2.208.0-alpha.0)

Features

  • glue: throw ValidationError instead of untyped errors (#35084) (1e20df6)

v2.207.0

Features

Bug Fixes


Alpha modules (2.207.0-alpha.0)

v2.206.0

Features

  • custom-resource: Added async custom resource provider framework logging off by default (1302e3d)
  • ecs: add L1 native blue/green deployment support for ECS services (3ef87e4)

Alpha modules (2.206.0-alpha.0)

v2.205.0

... (truncated)

Changelog

Sourced from aws-cdk-lib's changelog.

Changelog

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

2.208.0-alpha.0 (2025-07-29)

Features

  • glue: throw ValidationError instead of untyped errors (#35084) (1e20df6)

2.207.0-alpha.0 (2025-07-24)

2.206.0-alpha.0 (2025-07-16)

2.205.0-alpha.0 (2025-07-15)

2.204.0-alpha.0 (2025-07-04)

Features

2.203.1-alpha.0 (2025-07-02)

2.203.0-alpha.0 (2025-07-01)

Features

  • ec2: support for client route enforcement for client VPN endpoint (#34405) (063f4e7)

Bug Fixes

2.202.0-alpha.0 (2025-06-20)

Features

  • amplify: add compute role support for Amplify branches (#34708) (817a21a)
  • amplify-alpha: support custom response headers in monorepo structures (#31771) (aea1372), closes #31758

2.201.0-alpha.0 (2025-06-12)

Features

... (truncated)

Commits
  • 5b272a9 chore: update analytics metadata blueprints
  • 24bbced fix(logs): revert "exposed metric from the metric filter will now include the...
  • 6c4181b fix(core): Tag must have a value error is impossible to attribute to a spec...
  • 1da883e chore(dependencies): build with upgraded dependencies fails (#34957)
  • a2b3e78 feat: update L1 CloudFormation resource definitions (#35054)
  • 81fe660 fix(custom-resources): use loggingFormat instead of deprecated logFormat (#35...
  • 1061988 chore(rds): deprecate PostgreSQL versions 13.17, 13.19, 14.14, 14.16, 15.9, 1...
  • 1d35961 chore(region-info): ap-southeast-6 (#35036)
  • 569f0c3 chore(bedrock): add TwelveLabs Marengo 2.7 and Pegasus 1.2 (#35011)
  • 57ae6f9 fix(logs): query strings can have multiple stats commands (#34590)
  • Additional commits viewable in compare view

Updates next from 14.2.25 to 14.2.30

Release notes

Sourced from next's releases.

v14.2.30

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

Credits

Huge thanks to @​ijjk and @​ztanner for helping!

Commits

Updates brace-expansion from 1.1.11 to 1.1.12

Release notes

Sourced from brace-expansion's releases.

v1.1.12

  • pkg: publish on tag 1.x c460dbd
  • fmt ccb8ac6
  • Fix potential ReDoS Vulnerability or Inefficient Regular Expression (#65) c3c73c8

juliangruber/brace-expansion@v1.1.11...v1.1.12

Commits

Updates aws-cdk-lib from 2.200.1 to 2.208.0

Release notes

Sourced from aws-cdk-lib's releases.

v2.208.0

Features

  • update L1 CloudFormation resource definitions (#35054) (a2b3e78)
  • region-info: add support for region ap-southeast-6 (#35036)

Bug Fixes

  • core: Tag must have a value error is impossible to attribute to a specific tag (#35091) (6c4181b)
  • custom-resources: use loggingFormat instead of deprecated logFormat (#35015) (81fe660), closes #35002
  • logs: query strings can have multiple stats commands (#34590) (57ae6f9), closes #34578 #34578
  • logs: revert "exposed metric from the metric filter will now include the dimension map (#34648)" (#35102) (24bbced), closes #35097

Alpha modules (2.208.0-alpha.0)

Features

  • glue: throw ValidationError instead of untyped errors (#35084) (1e20df6)

v2.207.0

Features

Bug Fixes


Alpha modules (2.207.0-alpha.0)

v2.206.0

Features

  • custom-resource: Added async custom resource provider framework logging off by default (1302e3d)
  • ecs: add L1 native blue/green deployment support for ECS services (3ef87e4)

Alpha modules (2.206.0-alpha.0)

v2.205.0

... (truncated)

Changelog

Sourced from aws-cdk-lib's changelog.

Changelog

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

2.208.0-alpha.0 (2025-07-29)

Features

  • glue: throw ValidationError instead of untyped errors (#35084) (1e20df6)

2.207.0-alpha.0 (2025-07-24)

2.206.0-alpha.0 (2025-07-16)

2.205.0-alpha.0 (2025-07-15)

2.204.0-alpha.0 (2025-07-04)

Features

2.203.1-alpha.0 (2025-07-02)

2.203.0-alpha.0 (2025-07-01)

Features

  • ec2: support for client route enforcement for client VPN endpoint (#34405) (063f4e7)

Bug Fixes

2.202.0-alpha.0 (2025-06-20)

Features

  • amplify: add compute role support for Amplify branches (#34708) (817a21a)
  • amplify-alpha: support custom response headers in monorepo structures (#31771) (aea1372), closes #31758

2.201.0-alpha.0 (2025-06-12)

Features

... (truncated)

Commits
  • 5b272a9 chore: update analytics metadata blueprints
  • 24bbced fix(logs): revert "exposed metric from the metric filter will now include the...
  • 6c4181b fix(core): Tag must have a value error is impossible to attribute to a spec...
  • 1da883e chore(dependencies): build with upgraded dependencies fails (#34957)
  • a2b3e78 feat: update L1 CloudFormation resource definitions (#35054)
  • 81fe660 fix(custom-resources): use loggingFormat instead of deprecated logFormat (#35...
  • 1061988 chore(rds): deprecate PostgreSQL versions 13.17, 13.19, 14.14, 14.16, 15.9, 1...
  • 1d35961 chore(region-info): ap-southeast-6 (#35036)
  • 569f0c3 chore(bedrock): add TwelveLabs Marengo 2.7 and Pegasus 1.2 (#35011)
  • 57ae6f9 fix(logs): query strings can have multiple stats commands (#34590)
  • Additional commits viewable in compare view

Updates next from 14.2.25 to 14.2.30

Release notes

Sourced from next's releases.

v14.2.30

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

Credits

Huge thanks to @​ijjk and @​ztanner for helping!

Commits

Updates aws-cdk-lib from 2.200.1 to 2.208.0

Release notes

Sourced from aws-cdk-lib's releases.

v2.208.0

Features

  • update L1 CloudFormation resource definitions (#35054) (a2b3e78)
  • region-info: add support for region ap-southeast-6 (#35036)

Bug Fixes

  • core: Tag must have a value error is impossible to attribute to a specific tag (#35091) (6c4181b)
  • custom-resources: use loggingFormat instead of deprecated logFormat (#35015) (81fe660), closes #35002
  • logs: query strings can have multiple stats commands (#34590) (57ae6f9), closes #34578 #34578
  • logs: revert "exposed metric from the metric filter will now include the dimension map (#34648)" (#35102) (24bbced), closes #35097

Alpha modules (2.208.0-alpha.0)

Features

  • glue: throw ValidationError instead of untyped errors (#35084) (1e20df6)

v2.207.0

Features

Bug Fixes


Alpha modules (2.207.0-alpha.0)

v2.206.0

Features

  • custom-resource: Added async custom resource provider framework logging off by default (1302e3d)
  • ecs: add L1 native blue/green deployment support for ECS services (3ef87e4)

Alpha modules (2.206.0-alpha.0)

v2.205.0

... (truncated)

Changelog

Sourced from aws-cdk-lib's changelog.

Changelog

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

2.208.0-alpha.0 (2025-07-29)

Features

  • glue: throw ValidationError instead of untyped errors (#35084) (1e20df6)

2.207.0-alpha.0 (2025-07-24)

2.206.0-alpha.0 (2025-07-16)

2.205.0-alpha.0 (2025-07-15)

2.204.0-alpha.0 (2025-07-04)

Features

2.203.1-alpha.0 (2025-07-02)

2.203.0-alpha.0 (2025-07-01)

Features

  • ec2: support for client route enforcement for client VPN endpoint (#34405) (063f4e7)

Bug Fixes

2.202.0-alpha.0 (2025-06-20)

Features

  • amplify: add compute role support for Amplify branches (#34708) (817a21a)
  • amplify-alpha: support custom response headers in monorepo structures (#31771) (aea1372), closes #31758

2.201.0-alpha.0 (2025-06-12)

Features

... (truncated)

Commits
  • 5b272a9 chore: update analytics metadata blueprints
  • 24bbced fix(logs): revert "exposed metric from the metric filter will now include the...
  • 6c4181b fix(core): Tag must have a value error is impossible to attribute to a spec...
  • 1da883e chore(dependencies): build with upgraded dependencies fails (#34957)
  • a2b3e78 feat: update L1 CloudFormation resource definitions (#35054)
  • 81fe660 fix(custom-resources): use loggingFormat instead of deprecated logFormat (#35...
  • 1061988 chore(rds): deprecate PostgreSQL versions 13.17, 13.19, 14.14, 14.16, 15.9, 1...
  • 1d35961 chore(region-info): ap-southeast-6 (#35036)
  • 569f0c3 chore(bedrock): add TwelveLabs Marengo 2.7 and Pegasus 1.2 (#35011)
  • 57ae6f9 fix(logs): query strings can have multiple stats commands (#34590)
  • Additional commits viewable in compare view

Updates aws-cdk-lib from 2.200.1 to 2.208.0

Release notes

Sourced from aws-cdk-lib's releases.

v2.208.0

Features

  • update L1 CloudFormation resource definitions (#35054) (a2b3e78)
  • region-info: add support for region ap-southeast-6 (#35036)

Bug Fixes

  • core: Tag must have a value error is impossible to attribute to a specific tag (#35091) (6c4181b)
  • custom-resources: use loggingFormat instead of deprecated logFormat (#35015) (81fe660), closes #35002
  • logs: query strings can have multiple stats commands (#34590) (57ae6f9), closes #34578 #34578
  • logs: revert "exposed metric from the metric filter will now include the dimension map (#34648)" (#35102) (24bbced), closes #35097

Alpha modules (2.208.0-alpha.0)

Features

  • glue: throw ValidationError instead of untyped errors (#35084) (1e20df6)

v2.207.0

Features

Bug Fixes

  • autoscaling: add an option to run validation when migrating to launch template (#34832) (c8d62f3), closes #34283
  • <...

    Description has been truncated

    Note
    Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps the npm_and_yarn group with 4 updates in the / directory: [esbuild](https://github.com/evanw/esbuild), [aws-cdk-lib](https://github.com/aws/aws-cdk/tree/HEAD/packages/aws-cdk-lib), [next](https://github.com/vercel/next.js) and [brace-expansion](https://github.com/juliangruber/brace-expansion).
Bumps the npm_and_yarn group with 1 update in the /packages/cdk directory: [aws-cdk-lib](https://github.com/aws/aws-cdk/tree/HEAD/packages/aws-cdk-lib).
Bumps the npm_and_yarn group with 1 update in the /packages/client directory: [next](https://github.com/vercel/next.js).


Updates `esbuild` from 0.19.12 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.19.12...v0.25.0)

Updates `aws-cdk-lib` from 2.200.1 to 2.208.0
- [Release notes](https://github.com/aws/aws-cdk/releases)
- [Changelog](https://github.com/aws/aws-cdk/blob/v2.208.0/CHANGELOG.v2.alpha.md)
- [Commits](https://github.com/aws/aws-cdk/commits/v2.208.0/packages/aws-cdk-lib)

Updates `next` from 14.2.25 to 14.2.30
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](vercel/next.js@v14.2.25...v14.2.30)

Updates `brace-expansion` from 1.1.11 to 1.1.12
- [Release notes](https://github.com/juliangruber/brace-expansion/releases)
- [Commits](juliangruber/brace-expansion@1.1.11...v1.1.12)

Updates `aws-cdk-lib` from 2.200.1 to 2.208.0
- [Release notes](https://github.com/aws/aws-cdk/releases)
- [Changelog](https://github.com/aws/aws-cdk/blob/v2.208.0/CHANGELOG.v2.alpha.md)
- [Commits](https://github.com/aws/aws-cdk/commits/v2.208.0/packages/aws-cdk-lib)

Updates `next` from 14.2.25 to 14.2.30
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](vercel/next.js@v14.2.25...v14.2.30)

Updates `aws-cdk-lib` from 2.200.1 to 2.208.0
- [Release notes](https://github.com/aws/aws-cdk/releases)
- [Changelog](https://github.com/aws/aws-cdk/blob/v2.208.0/CHANGELOG.v2.alpha.md)
- [Commits](https://github.com/aws/aws-cdk/commits/v2.208.0/packages/aws-cdk-lib)

Updates `aws-cdk-lib` from 2.200.1 to 2.208.0
- [Release notes](https://github.com/aws/aws-cdk/releases)
- [Changelog](https://github.com/aws/aws-cdk/blob/v2.208.0/CHANGELOG.v2.alpha.md)
- [Commits](https://github.com/aws/aws-cdk/commits/v2.208.0/packages/aws-cdk-lib)

Updates `next` from 14.2.25 to 14.2.30
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](vercel/next.js@v14.2.25...v14.2.30)

Updates `next` from 14.2.25 to 14.2.30
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](vercel/next.js@v14.2.25...v14.2.30)

---
updated-dependencies:
- dependency-name: esbuild
  dependency-version: 0.25.0
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: aws-cdk-lib
  dependency-version: 2.208.0
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: next
  dependency-version: 14.2.30
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: brace-expansion
  dependency-version: 1.1.12
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: aws-cdk-lib
  dependency-version: 2.208.0
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: next
  dependency-version: 14.2.30
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: aws-cdk-lib
  dependency-version: 2.208.0
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: aws-cdk-lib
  dependency-version: 2.208.0
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: next
  dependency-version: 14.2.30
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: next
  dependency-version: 14.2.30
  dependency-type: direct:production
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner July 30, 2025 11:30
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jul 30, 2025
@hoyla hoyla added the health label Sep 29, 2025
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 health javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants