Skip to content

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Oct 10, 2025

This PR contains the following updates:

Package Change Age Confidence
aws-cdk (source) 2.1029.2 -> 2.1030.0 age confidence
esbuild 0.25.10 -> 0.25.11 age confidence
semantic-release 24.2.8 -> 24.2.9 age confidence
ts-jest (source) 29.4.3 -> 29.4.5 age confidence
typescript (source) 5.9.2 -> 5.9.3 age confidence

Release Notes

aws/aws-cdk-cli (aws-cdk)

v2.1030.0

Compare Source

2.1030.0 (2025-10-09)

Features
  • cli: allow users to enable all feature flags that do not impact their application (#​798) (05954dd)
  • cli: auto-detect language for single-language custom templates (#​819) (e46adaf)
Bug Fixes
  • cli: metadata path in generated templates is invalid for migrate command (#​909) (d530564), closes #​902

v2.1029.4

Compare Source

2.1029.4 (2025-10-01)

v2.1029.3

Compare Source

2.1029.3 (2025-09-24)

evanw/esbuild (esbuild)

v0.25.11

Compare Source

  • Add support for with { type: 'bytes' } imports (#​4292)

    The import bytes proposal has reached stage 2.7 in the TC39 process, which means that although it isn't quite recommended for implementation, it's generally approved and ready for validation. Furthermore it has already been implemented by Deno and Webpack. So with this release, esbuild will also add support for this. It behaves exactly the same as esbuild's existing binary loader. Here's an example:

    import data from './image.png' with { type: 'bytes' }
    const view = new DataView(data.buffer, 0, 24)
    const width = view.getInt32(16)
    const height = view.getInt32(20)
    console.log('size:', width + '\xD7' + height)
  • Lower CSS media query range syntax (#​3748, #​4293)

    With this release, esbuild will now transform CSS media query range syntax into equivalent syntax using min-/max- prefixes for older browsers. For example, the following CSS:

    @&#8203;media (640px <= width <= 960px) {
      main {
        display: flex;
      }
    }

    will be transformed like this with a target such as --target=chrome100 (or more specifically with --supported:media-range=false if desired):

    @&#8203;media (min-width: 640px) and (max-width: 960px) {
      main {
        display: flex;
      }
    }
semantic-release/semantic-release (semantic-release)

v24.2.9

Compare Source

Bug Fixes
kulshekhar/ts-jest (ts-jest)

v29.4.5

Compare Source

Bug Fixes
  • allow filtering modern module warning message with diagnostic code (c290d4d), , closes #​5013

v29.4.4

Compare Source

Bug Fixes
microsoft/TypeScript (typescript)

v5.9.3

Compare Source


Configuration

📅 Schedule: Branch creation - Only on Sunday and Saturday ( * * * * 0,6 ) in timezone Europe/London, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/dev-minor-patch branch 2 times, most recently from 9d6d86e to c61c16f Compare October 15, 2025 08:10
@renovate renovate bot force-pushed the renovate/dev-minor-patch branch from c61c16f to 83d1956 Compare October 18, 2025 12:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants