Skip to content

Bump the npm group across 1 directory with 8 updates#1214

Merged
github-actions[bot] merged 1 commit intomainfrom
dependabot/npm_and_yarn/npm-bfb8285b02
Apr 2, 2026
Merged

Bump the npm group across 1 directory with 8 updates#1214
github-actions[bot] merged 1 commit intomainfrom
dependabot/npm_and_yarn/npm-bfb8285b02

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 2, 2026

Bumps the npm group with 6 updates in the / directory:

Package From To
aws-cdk 2.1115.1 2.1116.0
@aws-cdk/cloud-assembly-schema 53.11.0 53.12.0
@emnapi/core 1.9.1 1.9.2
@emnapi/runtime 1.9.1 1.9.2
esbuild 0.27.4 0.27.5
eslint-import-resolver-node 0.3.9 0.3.10

Updates aws-cdk from 2.1115.1 to 2.1116.0

Release notes

Sourced from aws-cdk's releases.

aws-cdk@v2.1116.0

2.1116.0 (2026-04-01)

Features

  • cli: add publish-assets command for asset publishing without deployment (#1020) (7c079da)
  • deps: upgrade aws-cdk-lib (#1297) (4da5e25)
  • display CloudFormation Guard Hook failures (#1198) (ae062a9)

Bug Fixes

  • security changes in nested stacks are not shown for cdk diff --security-only (#1295) (8f7e1aa)
Commits
  • ae062a9 feat: display CloudFormation Guard Hook failures (#1198)
  • 7c079da feat(cli): add publish-assets command for asset publishing without deployment...
  • 26ab95a chore: replace unnecessary dev deps with native alternatives (#1299)
  • 4da5e25 feat(deps): upgrade aws-cdk-lib (#1297)
  • 8f7e1aa fix: security changes in nested stacks are not shown for `cdk diff --security...
  • See full diff in compare view

Updates @aws-cdk/cloud-assembly-schema from 53.11.0 to 53.12.0

Release notes

Sourced from @​aws-cdk/cloud-assembly-schema's releases.

@​aws-cdk/cloud-assembly-schema@​v53.12.0

53.12.0 (2026-04-01)

Commits

Updates @emnapi/core from 1.9.1 to 1.9.2

Release notes

Sourced from @​emnapi/core's releases.

v1.9.2

What's Changed

Full Changelog: toyobayashi/emnapi@v1.9.1...v1.9.2

Commits

Updates @emnapi/runtime from 1.9.1 to 1.9.2

Release notes

Sourced from @​emnapi/runtime's releases.

v1.9.2

What's Changed

Full Changelog: toyobayashi/emnapi@v1.9.1...v1.9.2

Commits

Updates @emnapi/wasi-threads from 1.2.0 to 1.2.1

Commits

Updates esbuild from 0.27.4 to 0.27.5

Release notes

Sourced from esbuild's releases.

v0.27.5

  • Fix for an async generator edge case (#4401, #4417)

    Support for transforming async generators into the equivalent state machine was added in version 0.19.0. However, the generated state machine didn't work correctly when polling async generators concurrently, such as in the following code:

    async function* inner() { yield 1; yield 2 }
    async function* outer() { yield* inner() }
    let gen = outer()
    for await (let x of [gen.next(), gen.next()]) console.log(x)

    Previously esbuild's output of the above code behaved incorrectly when async generators were transformed (such as with --supported:async-generator=false). The transformation should be fixed starting with this release.

    This fix was contributed by @​2767mr.

  • Fix a regression when metafile is enabled (#4420, #4418)

    This release fixes a regression introduced by the previous release. When metafile: true was enabled in esbuild's JavaScript API, builds with build errors were incorrectly throwing an error about an empty JSON string instead of an object containing the build errors.

  • Use define semantics for TypeScript parameter properties (#4421)

    Parameter properties are a TypeScript-specific code generation feature that converts constructor parameters into class fields when they are prefixed by certain keywords. When "useDefineForClassFields": true is present in tsconfig.json, the TypeScript compiler automatically generates class field declarations for parameter properties. Previously esbuild didn't do this, but esbuild will now do this starting with this release:

    // Original code
    class Foo {
      constructor(public x: number) {}
    }
    // Old output (with --loader=ts)
    class Foo {
    constructor(x) {
    this.x = x;
    }
    }
    // New output (with --loader=ts)
    class Foo {
    constructor(x) {
    this.x = x;
    }
    x;
    }

  • Allow es2025 as a target in tsconfig.json (#4432)

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

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.27.5

  • Fix for an async generator edge case (#4401, #4417)

    Support for transforming async generators into the equivalent state machine was added in version 0.19.0. However, the generated state machine didn't work correctly when polling async generators concurrently, such as in the following code:

    async function* inner() { yield 1; yield 2 }
    async function* outer() { yield* inner() }
    let gen = outer()
    for await (let x of [gen.next(), gen.next()]) console.log(x)

    Previously esbuild's output of the above code behaved incorrectly when async generators were transformed (such as with --supported:async-generator=false). The transformation should be fixed starting with this release.

    This fix was contributed by @​2767mr.

  • Fix a regression when metafile is enabled (#4420, #4418)

    This release fixes a regression introduced by the previous release. When metafile: true was enabled in esbuild's JavaScript API, builds with build errors were incorrectly throwing an error about an empty JSON string instead of an object containing the build errors.

  • Use define semantics for TypeScript parameter properties (#4421)

    Parameter properties are a TypeScript-specific code generation feature that converts constructor parameters into class fields when they are prefixed by certain keywords. When "useDefineForClassFields": true is present in tsconfig.json, the TypeScript compiler automatically generates class field declarations for parameter properties. Previously esbuild didn't do this, but esbuild will now do this starting with this release:

    // Original code
    class Foo {
      constructor(public x: number) {}
    }
    // Old output (with --loader=ts)
    class Foo {
    constructor(x) {
    this.x = x;
    }
    }
    // New output (with --loader=ts)
    class Foo {
    constructor(x) {
    this.x = x;
    }
    x;
    }

  • Allow es2025 as a target in tsconfig.json (#4432)

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

... (truncated)

Commits

Updates eslint-import-resolver-node from 0.3.9 to 0.3.10

Release notes

Sourced from eslint-import-resolver-node's releases.

no-reassign

Added rule no-reassign, made some mistakes publishing to npm. 😳

Changelog

Sourced from eslint-import-resolver-node's changelog.

v0.3.10 - 2026-04-01

  • [deps] update is-core-module, resolve
  • [meta] add repository.directory field
  • [refactor] avoid hoisting
Commits

Updates resolve from 1.22.11 to 2.0.0-next.6

Commits
  • f637b5c v2.0.0-next.6
  • ab587d7 [New] add exports support via engines and exportsCategory options
  • 1894ba4 [Refactor] use non-hoisted declarations instead of expressions
  • e606385 [Robustness] use es-errors
  • 13df854 [Dev Deps] update @ljharb/eslint-config, npmignore
  • d086095 [readme] replace runkit CI badge with shields.io check-runs badge
  • 121c276 [Performance] avoid an unnecessary slice
  • 0a42ec2 [meta] add DCO
  • 0cfd54e [readme] add CII Best Practices badge
  • 79f0d81 [eslint] add eslint optional peer dep
  • Additional commits viewable 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 npm group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [aws-cdk](https://github.com/aws/aws-cdk-cli/tree/HEAD/packages/aws-cdk) | `2.1115.1` | `2.1116.0` |
| [@aws-cdk/cloud-assembly-schema](https://github.com/aws/aws-cdk-cli/tree/HEAD/packages/@aws-cdk/cloud-assembly-schema) | `53.11.0` | `53.12.0` |
| [@emnapi/core](https://github.com/toyobayashi/emnapi) | `1.9.1` | `1.9.2` |
| [@emnapi/runtime](https://github.com/toyobayashi/emnapi) | `1.9.1` | `1.9.2` |
| [esbuild](https://github.com/evanw/esbuild) | `0.27.4` | `0.27.5` |
| [eslint-import-resolver-node](https://github.com/import-js/eslint-plugin-import/tree/HEAD/resolvers/node) | `0.3.9` | `0.3.10` |



Updates `aws-cdk` from 2.1115.1 to 2.1116.0
- [Release notes](https://github.com/aws/aws-cdk-cli/releases)
- [Commits](https://github.com/aws/aws-cdk-cli/commits/aws-cdk@v2.1116.0/packages/aws-cdk)

Updates `@aws-cdk/cloud-assembly-schema` from 53.11.0 to 53.12.0
- [Release notes](https://github.com/aws/aws-cdk-cli/releases)
- [Commits](https://github.com/aws/aws-cdk-cli/commits/@aws-cdk/cloud-assembly-schema@v53.12.0/packages/@aws-cdk/cloud-assembly-schema)

Updates `@emnapi/core` from 1.9.1 to 1.9.2
- [Release notes](https://github.com/toyobayashi/emnapi/releases)
- [Commits](toyobayashi/emnapi@v1.9.1...v1.9.2)

Updates `@emnapi/runtime` from 1.9.1 to 1.9.2
- [Release notes](https://github.com/toyobayashi/emnapi/releases)
- [Commits](toyobayashi/emnapi@v1.9.1...v1.9.2)

Updates `@emnapi/wasi-threads` from 1.2.0 to 1.2.1
- [Release notes](https://github.com/toyobayashi/emnapi/releases)
- [Commits](toyobayashi/emnapi@v1.2.0...wasi-threads-v1.2.1)

Updates `esbuild` from 0.27.4 to 0.27.5
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.27.4...v0.27.5)

Updates `eslint-import-resolver-node` from 0.3.9 to 0.3.10
- [Release notes](https://github.com/import-js/eslint-plugin-import/releases)
- [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/resolvers/node/CHANGELOG.md)
- [Commits](https://github.com/import-js/eslint-plugin-import/commits/v0.3.10/resolvers/node)

Updates `resolve` from 1.22.11 to 2.0.0-next.6
- [Commits](browserify/resolve@v1.22.11...v2.0.0-next.6)

---
updated-dependencies:
- dependency-name: aws-cdk
  dependency-version: 2.1116.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@aws-cdk/cloud-assembly-schema"
  dependency-version: 53.12.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@emnapi/core"
  dependency-version: 1.9.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@emnapi/runtime"
  dependency-version: 1.9.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@emnapi/wasi-threads"
  dependency-version: 1.2.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: esbuild
  dependency-version: 0.27.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: eslint-import-resolver-node
  dependency-version: 0.3.10
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: resolve
  dependency-version: 2.0.0-next.6
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: npm
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot assigned poad Apr 2, 2026
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Apr 2, 2026
@github-actions github-actions bot enabled auto-merge (squash) April 2, 2026 11:12
@github-actions github-actions bot merged commit 8cf1700 into main Apr 2, 2026
2 checks passed
@github-actions github-actions bot deleted the dependabot/npm_and_yarn/npm-bfb8285b02 branch April 2, 2026 11: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