Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 18, 2025

This PR contains the following updates:

Package Change Age Confidence
esbuild 0.25.10 -> 0.25.11 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

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;
      }
    }

Configuration

📅 Schedule: Branch creation - "after 4pm on friday,before 9am on monday,every weekend" in timezone Europe/Paris, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • 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 requested a review from a team as a code owner October 18, 2025 18:30
@renovate renovate bot requested review from millotp and shortcuts and removed request for a team October 18, 2025 18:30
@algolia-bot
Copy link
Collaborator

algolia-bot commented Oct 18, 2025

✔️ Code generated!

Name Link
🪓 Triggered by 4f5478d8602e6a2713caeaa85efb2d71d7c6f5e0
🍃 Generated commit 5a00f3ca5130af40e6a44332904140edb4af3930
🌲 Generated branch generated/renovate/esbuild-0.x
📊 Benchmark results

Benchmarks performed on the method using a mock server, the results might not reflect the real-world performance.

Language Req/s
go 1721
javascript 1624
php 1445
csharp 1261
python 1133
java 1006
ruby 827
swift 393
scala 23

@renovate renovate bot force-pushed the renovate/esbuild-0.x branch 7 times, most recently from 1971d53 to 7526b55 Compare October 18, 2025 20:20
@renovate renovate bot force-pushed the renovate/esbuild-0.x branch from 7526b55 to a586541 Compare October 18, 2025 20:38
@renovate renovate bot merged commit 87846e9 into chore/renovateBaseBranch Oct 18, 2025
29 checks passed
@renovate renovate bot deleted the renovate/esbuild-0.x branch October 18, 2025 20:56
algolia-bot added a commit that referenced this pull request Oct 18, 2025
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant