Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

build(deps-dev): bump esbuild from 0.25.9 to 0.25.11#178

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Open
dependabot wants to merge1 commit intomaster
base:master
Choose a base branch
Loading
fromdependabot/npm_and_yarn/esbuild-0.25.11

Conversation

@dependabot
Copy link
Contributor

@dependabotdependabotbot commented on behalf ofgithubNov 1, 2025

Bumpsesbuild from 0.25.9 to 0.25.11.

Release notes

Sourced fromesbuild's releases.

v0.25.11

  • Add support forwith { type: 'bytes' } imports (#4292)

    Theimport 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 byDeno andWebpack. So with this release, esbuild will also add support for this. It behaves exactly the same as esbuild's existingbinary loader. Here's an example:

    importdatafrom'./image.png'with{type:'bytes'}constview=newDataView(data.buffer,0,24)constwidth=view.getInt32(16)constheight=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 usingmin-/max- prefixes for older browsers. For example, the following CSS:

    @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):

    @media (min-width:640px)and (max-width:960px) {main {display: flex;  }}

v0.25.10

  • Fix a panic in a minification edge case (#4287)

    This release fixes a panic due to a null pointer that could happen when esbuild inlines a doubly-nested identity function and the final result is empty. It was fixed by emitting the valueundefined in this case, which avoids the panic. This case must be rare since it hasn't come up until now. Here is an example of code that previously triggered the panic (which only happened when minifying):

    functionidentity(x){returnx}identity({y:identity(123)})
  • Fix@supports nested inside pseudo-element (#4265)

    When transforming nested CSS to non-nested CSS, esbuild is supposed to filter out pseudo-elements such as::placeholder for correctness. TheCSS nesting specification says the following:

    The nesting selector cannot represent pseudo-elements (identical to the behavior of the ':is()' pseudo-class). We’d like to relax this restriction, but need to do so simultaneously for both ':is()' and '&', since they’re intentionally built on the same underlying mechanisms.

... (truncated)

Changelog

Sourced fromesbuild's changelog.

0.25.11

  • Add support forwith { type: 'bytes' } imports (#4292)

    Theimport 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 byDeno andWebpack. So with this release, esbuild will also add support for this. It behaves exactly the same as esbuild's existingbinary loader. Here's an example:

    importdatafrom'./image.png'with{type:'bytes'}constview=newDataView(data.buffer,0,24)constwidth=view.getInt32(16)constheight=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 usingmin-/max- prefixes for older browsers. For example, the following CSS:

    @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):

    @media (min-width:640px)and (max-width:960px) {main {display: flex;  }}

0.25.10

  • Fix a panic in a minification edge case (#4287)

    This release fixes a panic due to a null pointer that could happen when esbuild inlines a doubly-nested identity function and the final result is empty. It was fixed by emitting the valueundefined in this case, which avoids the panic. This case must be rare since it hasn't come up until now. Here is an example of code that previously triggered the panic (which only happened when minifying):

    functionidentity(x){returnx}identity({y:identity(123)})
  • Fix@supports nested inside pseudo-element (#4265)

    When transforming nested CSS to non-nested CSS, esbuild is supposed to filter out pseudo-elements such as::placeholder for correctness. TheCSS nesting specification says the following:

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting@dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [esbuild](https://github.com/evanw/esbuild) from 0.25.9 to 0.25.11.- [Release notes](https://github.com/evanw/esbuild/releases)- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)- [Commits](evanw/esbuild@v0.25.9...v0.25.11)---updated-dependencies:- dependency-name: esbuild  dependency-version: 0.25.11  dependency-type: direct:development  update-type: version-update:semver-patch...Signed-off-by: dependabot[bot] <support@github.com>
@dependabotdependabotbot added dependenciesPull requests that update a dependency file javascriptPull requests that update javascript code labelsNov 1, 2025
@sonarqubecloud
Copy link

Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment

Reviewers

No reviews

Assignees

No one assigned

Labels

dependenciesPull requests that update a dependency filejavascriptPull requests that update javascript code

Projects

None yet

Milestone

No milestone

Development

Successfully merging this pull request may close these issues.

1 participant


[8]ページ先頭

©2009-2025 Movatter.jp