Skip to content

Conversation

dependabot[bot]
Copy link

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

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

Package From To
aws-cdk-lib 2.163.1 2.204.0
esbuild 0.20.2 0.25.5
tsx 4.19.1 4.20.3
@vitejs/plugin-react 4.3.3 4.6.0
vite 5.4.10 7.0.2
@babel/runtime 7.25.9 7.27.6

Updates aws-cdk-lib from 2.163.1 to 2.204.0

Release notes

Sourced from aws-cdk-lib's releases.

v2.204.0

Features

  • apigatewayv2: add stage variables support for HTTP and WebSocket API (#34548) (965e055)
  • cloudwatch: add id and visible properties for CloudWatch Metric (#34870) (879afd6), closes #19876
  • report feature flags into Cloud Assembly (#34884) (f70e46c), closes #34798
  • region-info: add support for region eusc-de (#34860)

Bug Fixes


Alpha modules (2.204.0-alpha.0)

Features

v2.203.1

Bug Fixes


Alpha modules (2.203.1-alpha.0)

v2.203.0

⚠ BREAKING CHANGES TO EXPERIMENTAL FEATURES

  • cloudformation: Some L1 resources experienced breaking changes due to updated CloudFormation resources. Please check the notes for each specific module for more information.
  • aws-cdk-lib.aws_kendra.CfnDataSource.TemplateConfigurationProperty: template property here has changed from string to json

Features

  • rds: instance engine lifecycle support (#34719) (bab7413), closes #34492
  • report feature flag configuration into Cloud Assembly (#34798) (76af7dc)
  • backup: add support for ScheduleExpressionTimezone (#34603) (8ceea43), closes #34532
  • cloudformation: update L1 CloudFormation resource definitions (#34839) (4c75889)
  • cloudwatch: add account id field for log query and metric widgets to support cross account visibility (#34793) (ac4d09d), closes #26105
  • lambda: function log removal policy (#34723) (0388483), closes #34669
  • pipelines: cdk-assets version is configurable (#34802) (a361c9c)
  • update L1 CloudFormation resource definitions (#34792) (074cb8c)

Bug Fixes

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

Reverts

2.200.2-alpha.0 (2025-06-11)

... (truncated)

Commits
  • 8b396a3 chore: update analytics metadata blueprints
  • 965e055 feat(apigatewayv2): add stage variables support for HTTP and WebSocket API (#...
  • c3559b5 chore(region-info): eusc-de-east-1 (#34860)
  • 879afd6 feat(cloudwatch): add id and visible properties for CloudWatch Metric (#34870)
  • 8328c79 fix(ecr-assets): incorrect handling of nested excludes in .dockerignore (#34810)
  • fb4730f Merge branch 'main' into merge-back/2.203.1
  • f70e46c feat: report feature flags into Cloud Assembly (#34884)
  • 07a8698 chore: update feature flag documentation (#34838)
  • 32ee050 fix: "Invalid Assembly Manifest" when used with CLI 2.1017.0 and 2.1018.0 (#3...
  • 741b0a7 fix: "Invalid Assembly Manifest" when used with CLI 2.1017.0 and 2.1018.0 (#3...
  • Additional commits viewable in compare view

Updates esbuild from 0.20.2 to 0.25.5

Release notes

Sourced from esbuild's releases.

v0.25.5

  • Fix a regression with browser in package.json (#4187)

    The fix to #4144 in version 0.25.3 introduced a regression that caused browser overrides specified in package.json to fail to override relative path names that end in a trailing slash. That behavior change affected the [email protected] package. This regression has been fixed, and now has test coverage.

  • Add support for certain keywords as TypeScript tuple labels (#4192)

    Previously esbuild could incorrectly fail to parse certain keywords as TypeScript tuple labels that are parsed by the official TypeScript compiler if they were followed by a ? modifier. These labels included function, import, infer, new, readonly, and typeof. With this release, these keywords will now be parsed correctly. Here's an example of some affected code:

    type Foo = [
      value: any,
      readonly?: boolean, // This is now parsed correctly
    ]
  • Add CSS prefixes for the stretch sizing value (#4184)

    This release adds support for prefixing CSS declarations such as div { width: stretch }. That CSS is now transformed into this depending on what the --target= setting includes:

    div {
      width: -webkit-fill-available;
      width: -moz-available;
      width: stretch;
    }

v0.25.4

  • Add simple support for CORS to esbuild's development server (#4125)

    Starting with version 0.25.0, esbuild's development server is no longer configured to serve cross-origin requests. This was a deliberate change to prevent any website you visit from accessing your running esbuild development server. However, this change prevented (by design) certain use cases such as "debugging in production" by having your production website load code from localhost where the esbuild development server is running.

    To enable this use case, esbuild is adding a feature to allow Cross-Origin Resource Sharing (a.k.a. CORS) for simple requests. Specifically, passing your origin to the new cors option will now set the Access-Control-Allow-Origin response header when the request has a matching Origin header. Note that this currently only works for requests that don't send a preflight OPTIONS request, as esbuild's development server doesn't currently support OPTIONS requests.

    Some examples:

    • CLI:

      esbuild --servedir=. --cors-origin=https://example.com
      
    • JS:

      const ctx = await esbuild.context({})
      await ctx.serve({
        servedir: '.',
        cors: {

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

Updates tsx from 4.19.1 to 4.20.3

Release notes

Sourced from tsx's releases.

v4.20.3

4.20.3 (2025-06-13)

Bug Fixes


This release is also available on:

v4.20.2

4.20.2 (2025-06-12)

Bug Fixes


This release is also available on:

v4.20.1

4.20.1 (2025-06-11)

Bug Fixes

  • json: handle keys with special characters (9bd2546)

This release is also available on:

v4.20.0

4.20.0 (2025-06-11)

Bug Fixes

... (truncated)

Commits
  • dadcf27 fix: revert v4.20 changes
  • 2d1aaee chore: upgrade manten
  • c188268 fix: support ambiguous package (#79)
  • 602f1b1 chore: debug to accept levels (#77)
  • 5172c47 test: log node-pty failure stdout
  • 1e8f17b refactor: node-pty test code
  • 9bd2546 fix(json): handle keys with special characters
  • e97fe67 test: failed pty tests logs
  • 532c50a tests: fix Windows tests
  • ec316d3 feat: support latest Node versions
  • Additional commits viewable in compare view

Updates @vitejs/plugin-react from 4.3.3 to 4.6.0

Release notes

Sourced from @​vitejs/plugin-react's releases.

[email protected]

Add raw Rolldown support

This plugin only worked with Vite. But now it can also be used with raw Rolldown. The main purpose for using this plugin with Rolldown is to use react compiler.

[email protected]

Suggest @vitejs/plugin-react-oxc if rolldown-vite is detected #491

Emit a log which recommends @vitejs/plugin-react-oxc when rolldown-vite is detected to improve performance and use Oxc under the hood. The warning can be disabled by setting disableOxcRecommendation: false in the plugin options.

Use optimizeDeps.rollupOptions instead of optimizeDeps.esbuildOptions for rolldown-vite #489

This suppresses the warning about optimizeDeps.esbuildOptions being deprecated in rolldown-vite.

Add Vite 7-beta to peerDependencies range #497

React plugins are compatible with Vite 7, this removes the warning when testing the beta.

[email protected]

Add explicit semicolon in preambleCode #485

This fixes an edge case when using HTML minifiers that strips line breaks aggressively.

[email protected]

Add filter for rolldown-vite #470

Added filter so that it is more performant when running this plugin with rolldown-powered version of Vite.

Skip HMR for JSX files with hooks #480

This removes the HMR warning for hooks with JSX.

[email protected]

Fix type issue when using moduleResolution: "node" in tsconfig #462

[email protected]

Make compatible with rolldown-vite

This plugin is now compatible with rolldown-powered version of Vite. Note that currently the __source property value position might be incorrect. This will be fixed in the near future.

[email protected]

Add reactRefreshHost option

Add reactRefreshHost option to set a React Fast Refresh runtime URL prefix. This is useful in a module federation context to enable HMR by specifying the host application URL in the Vite config of a remote application. See full discussion here: module-federation/vite#183

export default defineConfig({
</tr></table> 

... (truncated)

Changelog

Sourced from @​vitejs/plugin-react's changelog.

4.6.0 (2025-06-23)

Add raw Rolldown support

This plugin only worked with Vite. But now it can also be used with raw Rolldown. The main purpose for using this plugin with Rolldown is to use react compiler.

4.5.2 (2025-06-10)

Suggest @vitejs/plugin-react-oxc if rolldown-vite is detected #491

Emit a log which recommends @vitejs/plugin-react-oxc when rolldown-vite is detected to improve performance and use Oxc under the hood. The warning can be disabled by setting disableOxcRecommendation: true in the plugin options.

Use optimizeDeps.rollupOptions instead of optimizeDeps.esbuildOptions for rolldown-vite #489

This suppresses the warning about optimizeDeps.esbuildOptions being deprecated in rolldown-vite.

Add Vite 7-beta to peerDependencies range #497

React plugins are compatible with Vite 7, this removes the warning when testing the beta.

4.5.1 (2025-06-03)

Add explicit semicolon in preambleCode #485

This fixes an edge case when using HTML minifiers that strips line breaks aggressively.

4.5.0 (2025-05-23)

Add filter for rolldown-vite #470

Added filter so that it is more performant when running this plugin with rolldown-powered version of Vite.

Skip HMR for JSX files with hooks #480

This removes the HMR warning for hooks with JSX.

4.4.1 (2025-04-19)

Fix type issue when using moduleResolution: "node" in tsconfig #462

4.4.0 (2025-04-15)

Make compatible with rolldown-vite

This plugin is now compatible with rolldown-powered version of Vite. Note that currently the __source property value position might be incorrect. This will be fixed in the near future.

4.4.0-beta.2 (2025-04-15)

Add reactRefreshHost option

... (truncated)

Commits

Updates vite from 5.4.10 to 7.0.2

Release notes

Sourced from vite's releases.

v7.0.2

Please refer to CHANGELOG.md for details.

v7.0.1

Please refer to CHANGELOG.md for details.

[email protected]

Please refer to CHANGELOG.md for details.

[email protected]

Please refer to CHANGELOG.md for details.

v7.0.0

Please refer to CHANGELOG.md for details.

v7.0.0-beta.2

Please refer to CHANGELOG.md for details.

v7.0.0-beta.1

Please refer to CHANGELOG.md for details.

[email protected]

Please refer to CHANGELOG.md for details.

[email protected]

Please refer to CHANGELOG.md for details.

v7.0.0-beta.0

Please refer to CHANGELOG.md for details.

[email protected]

Please refer to CHANGELOG.md for details.

[email protected]

Please refer to CHANGELOG.md for details.

[email protected]

Please refer to CHANGELOG.md for details.

v6.3.5

Please refer to CHANGELOG.md for details.

v6.3.4

Please refer to CHANGELOG.md for details.

v6.3.3

Please refer to CHANGELOG.md for details.

v6.3.2

Please refer to CHANGELOG.md for details.

... (truncated)

Changelog

Sourced from vite's changelog.

7.0.2 (2025-07-04)

Bug Fixes

7.0.1 (2025-07-03)

Bug Fixes

Miscellaneous Chores

7.0.0 (2025-06-24)

Vite 7 is out!

Today, we're excited to announce the release of the next Vite major:

⚠ BREAKING CHANGES

  • ssr: don't access Object variable in ssr transformed code (#19996)
  • remove experimental.skipSsrTransform option (#20038)
  • remove HotBroadcaster (#19988)
  • css: always use sass compiler API (#19978)
  • bump build.target and name it baseline-widely-available (#20007)
  • bump required node version to 20.19+, 22.12+ and remove cjs build (#20032)
  • css: remove sass legacy API support (#19977)
  • remove deprecated HotBroadcaster related types (#19987)
  • remove deprecated no-op type only properties (#19985)
  • remove node 18 support (#19972)
  • remove deprecated hook-level enforce/transform from transformIndexHtml hook (#19349)
  • remove deprecated splitVendorChunkPlugin (#19255)

Features

  • types: use terser types from terser package (#20274) (a5799fa)
  • apply some middlewares before configurePreviewServer hook (#20224) (b989c42)
  • apply some middlewares before configureServer hook (#20222) (f5cc4c0)
  • add base option to import.meta.glob (#20163) (253d6c6)

... (truncated)

Commits

Updates vite from 5.4.10 to 7.0.2

Release notes

Sourced from vite's releases.

v7.0.2

Please refer to CHANGELOG.md for details.

v7.0.1

Please refer to CHANGELOG.md for details.

[email protected]

Please refer to CHANGELOG.md for details.

[email protected]

Please refer to CHANGELOG.md for details.

v7.0.0

Please refer to CHANGELOG.md for details.

v7.0.0-beta.2

Please refer to CHANGELOG.md for details.

v7.0.0-beta.1

Please refer to CHANGELOG.md for details.

[email protected]

Please refer to CHANGELOG.md for details.

[email protected]

Please refer to CHANGELOG.md for details.

v7.0.0-beta.0

Please refer to CHANGELOG.md for details.

[email protected]

Please refer to CHANGELOG.md for details.

[email protected]

Please refer to CHANGELOG.md for details.

[email protected]

Please refer to CHANGELOG.md for details.

v6.3.5

Please refer to CHANGELOG.md for details.

v6.3.4

Please refer to CHANGELOG.md for details.

v6.3.3

Please refer to CHANGELOG.md for details.

v6.3.2

Please refer to CHANGELOG.md for details.

... (truncated)

Changelog

Sourced from vite's changelog.

7.0.2 (2025-07-04)

Bug Fixes

7.0.1 (2025-07-03)

Bug Fixes

Miscellaneous Chores

7.0.0 (2025-06-24)

Vite 7 is out!

Today, we're excited to announce the release of the next Vite major:

⚠ BREAKING CHANGES

  • ssr: don't access Object variable in ssr transformed code (#19996)
  • remove experimental.skipSsrTransform option (#20038)
  • remove HotBroadcaster (#19988)
  • css: always use sass compiler API (#19978)
  • bump build.target and name it baseline-widely-available (#20007)
  • bump required node version to 20.19+, 22.12+ and remove cjs build (#20032)
  • css: remove sass legacy API support (#19977)
  • remove deprecated HotBroadcaster related types (#19987)
  • remove deprecated no-op type only properties (#19985)
  • remove node 18 support (#19972)
  • remove deprecated hook-level enforce/transform from transformIndexHtml hook (#19349)
  • remove deprecated splitVendorChunkPlugin (#19255)

Features

  • types: use terser types from terser package (#20274) (a5799fa)
  • apply some middlewares before configurePreviewServer hook (#20224) (b989c42)
  • apply some middlewares before configureServer hook (#20222) (f5cc4c0)
  • add base option to import.meta.glob (#20163) (253d6c6)

... (truncated)

Commits

Updates @babel/runtime from 7.25.9 to 7.27.6

Release notes

Sourced from @​babel/runtime's releases.

v7.27.6 (2025-06-05)

🐛 Bug Fix

  • babel-helpers, babel-plugin-transform-async-generator-functions, babel-plugin-transform-regenerator, babel-preset-env, babel-runtime-corejs3
  • babel-generator, babel-parser, babel-types

Committers: 3

v7.27.5 (2025-06-03)

Thanks @​NullVoxPopuli for your first PR!

🐛 Bug Fix

💅 Polish

Committers: 4

v7.27.4 (2025-05-30)

👓 Spec Compliance

  • babel-parser, babel-plugin-proposal-explicit-resource-management

💅 Polish

  • babel-par...

    Description has been truncated

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

| Package | From | To |
| --- | --- | --- |
| [aws-cdk-lib](https://github.com/aws/aws-cdk/tree/HEAD/packages/aws-cdk-lib) | `2.163.1` | `2.204.0` |
| [esbuild](https://github.com/evanw/esbuild) | `0.20.2` | `0.25.5` |
| [tsx](https://github.com/privatenumber/tsx) | `4.19.1` | `4.20.3` |
| [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `4.3.3` | `4.6.0` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.4.10` | `7.0.2` |
| [@babel/runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-runtime) | `7.25.9` | `7.27.6` |



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

Updates `esbuild` from 0.20.2 to 0.25.5
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG-2024.md)
- [Commits](evanw/esbuild@v0.20.2...v0.25.5)

Updates `tsx` from 4.19.1 to 4.20.3
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.19.1...v4.20.3)

Updates `@vitejs/plugin-react` from 4.3.3 to 4.6.0
- [Release notes](https://github.com/vitejs/vite-plugin-react/releases)
- [Changelog](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite-plugin-react/commits/[email protected]/packages/plugin-react)

Updates `vite` from 5.4.10 to 7.0.2
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v7.0.2/packages/vite)

Updates `vite` from 5.4.10 to 7.0.2
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v7.0.2/packages/vite)

Updates `@babel/runtime` from 7.25.9 to 7.27.6
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.27.6/packages/babel-runtime)

---
updated-dependencies:
- dependency-name: aws-cdk-lib
  dependency-version: 2.204.0
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: esbuild
  dependency-version: 0.25.5
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: tsx
  dependency-version: 4.20.3
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: "@vitejs/plugin-react"
  dependency-version: 4.6.0
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: vite
  dependency-version: 7.0.2
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: vite
  dependency-version: 7.0.2
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: "@babel/runtime"
  dependency-version: 7.27.6
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jul 7, 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 javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants