Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 1, 2025

This PR contains the following updates:

Package Change Age Confidence
esbuild 0.25.10 -> 0.25.11 age confidence

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 - Only on Sunday and Saturday ( * * * * 0,6 ) (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 November 1, 2025 04:05
@renovate renovate bot requested review from MH4GF, NoritakaIkeda, junkisai and sasamuku and removed request for a team November 1, 2025 04:05
@vercel
Copy link

vercel bot commented Nov 1, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Comments Updated (UTC)
liam-app Ready Ready Preview Comment Nov 4, 2025 2:17am
liam-assets Ready Ready Preview Comment Nov 4, 2025 2:17am
liam-erd-sample Ready Ready Preview Comment Nov 4, 2025 2:17am
liam-storybook Ready Ready Preview Comment Nov 4, 2025 2:17am
1 Skipped Deployment
Project Deployment Preview Comments Updated (UTC)
liam-docs Ignored Ignored Preview Nov 4, 2025 2:17am

@giselles-ai
Copy link

giselles-ai bot commented Nov 1, 2025

Finished running flow.

Step 1
🟢
On Pull Request OpenedStatus: Success Updated: Nov 1, 2025 4:05am
Step 2
🟢
gpt-5Status: Success Updated: Nov 1, 2025 4:06am
Step 3
🟢
Create Pull Request CommentStatus: Success Updated: Nov 1, 2025 4:06am

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Nov 1, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Comment @coderabbitai help to get the list of available commands and usage tips.

@giselles-ai
Copy link

giselles-ai bot commented Nov 1, 2025

Check changeset necessity

Status:

  • NOT REQUIRED

Reason:

  • This PR only bumps a build/development dependency (esbuild 0.25.10 → 0.25.11) via root-level overrides and lockfile; no source code or package manifests for publishable packages are changed.
  • No user-facing behavior or API changes in target packages (@liam-hq/cli, @liam-hq/erd-core, @liam-hq/schema, @liam-hq/ui); outputs and runtime APIs remain the same.
  • Per guide, “Development tooling changes” and lockfile updates are non-user-facing and do not require a changeset.
  • The update does not trigger any version bump for publishable packages; it affects local build tooling only.

Changeset (copy & paste):

N/A – no changeset required for dev tooling-only dependency update (esbuild).

- Include esbuild in the automerge configuration for development tools
- This allows esbuild patch updates to be automatically merged when CI passes
- esbuild is a critical build tool that benefits from automated updates
@renovate
Copy link
Contributor Author

renovate bot commented Nov 4, 2025

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

Copy link
Member

@junkisai junkisai left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

✅ Reviewed and approved

Summary:

  • esbuild patch update: 0.25.10 → 0.25.11
  • Added esbuild to automerge dev-tools group in renovate.json5
  • All CI checks passed successfully

Release notes highlights:

  • Added support for with { type: 'bytes' } imports (stage 2.7 proposal)
  • Added CSS media query range syntax lowering for older browsers

This is a low-risk patch update with useful new features and no breaking changes.

@junkisai junkisai added this pull request to the merge queue Nov 4, 2025
Merged via the queue into main with commit 87e8a18 Nov 4, 2025
32 of 33 checks passed
@junkisai junkisai deleted the renovate/esbuild-0.x branch November 4, 2025 02:39
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.

2 participants