Skip to content

chore(deps): update dependency esbuild to v0.25.11 - autoclosed#28

Closed
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/esbuild-0.x-lockfile
Closed

chore(deps): update dependency esbuild to v0.25.11 - autoclosed#28
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/esbuild-0.x-lockfile

Conversation

@renovate

@renovate renovate Bot commented Oct 20, 2025

Copy link
Copy Markdown
Contributor

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 10am on monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, 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 20, 2025 13:10
@changeset-bot

changeset-bot Bot commented Oct 20, 2025

Copy link
Copy Markdown

⚠️ No Changeset found

Latest commit: 7500dc6

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@renovate
renovate Bot force-pushed the renovate/esbuild-0.x-lockfile branch from b785753 to 7500dc6 Compare October 21, 2025 14:21
@renovate renovate Bot changed the title chore(deps): update dependency esbuild to v0.25.11 chore(deps): update dependency esbuild to v0.25.11 - autoclosed Nov 19, 2025
@renovate renovate Bot closed this Nov 19, 2025
@renovate
renovate Bot deleted the renovate/esbuild-0.x-lockfile branch November 19, 2025 23:47
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.

0 participants