Skip to content
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency esbuild to ^0.23.0 #6316

Merged
merged 1 commit into from
Jul 2, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 2, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
esbuild ^0.22.0 -> ^0.23.0 age adoption passing confidence

Release Notes

evanw/esbuild (esbuild)

v0.23.0

Compare Source

This release deliberately contains backwards-incompatible changes. To avoid automatically picking up releases like this, you should either be pinning the exact version of esbuild in your package.json file (recommended) or be using a version range syntax that only accepts patch upgrades such as ^0.22.0 or ~0.22.0. See npm's documentation about semver for more information.

  • Revert the recent change to avoid bundling dependencies for node (#​3819)

    This release reverts the recent change in version 0.22.0 that made --packages=external the default behavior with --platform=node. The default is now back to --packages=bundle.

    I've just been made aware that Amazon doesn't pin their dependencies in their "AWS CDK" product, which means that whenever esbuild publishes a new release, many people (potentially everyone?) using their SDK around the world instantly starts using it without Amazon checking that it works first. This change in version 0.22.0 happened to break their SDK. I'm amazed that things haven't broken before this point. This revert attempts to avoid these problems for Amazon's customers. Hopefully Amazon will pin their dependencies in the future.

    In addition, this is probably a sign that esbuild is used widely enough that it now needs to switch to a more complicated release model. I may have esbuild use a beta channel model for further development.

  • Fix preserving collapsed JSX whitespace (#​3818)

    When transformed, certain whitespace inside JSX elements is ignored completely if it collapses to an empty string. However, the whitespace should only be ignored if the JSX is being transformed, not if it's being preserved. This release fixes a bug where esbuild was previously incorrectly ignoring collapsed whitespace with --jsx=preserve. Here is an example:

    // Original code
    <Foo>
      <Bar />
    </Foo>
    
    // Old output (with --jsx=preserve)
    <Foo><Bar /></Foo>;
    
    // New output (with --jsx=preserve)
    <Foo>
      <Bar />
    </Foo>;

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Jul 2, 2024
Copy link

changeset-bot bot commented Jul 2, 2024

⚠️ No Changeset found

Latest commit: 44f9fea

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

Copy link
Contributor

github-actions bot commented Jul 2, 2024

🚀 Snapshot Release (alpha)

The latest changes of this PR are available as alpha on npm (based on the declared changesets):

Package Version Info
@graphql-tools/delegate 10.0.13-alpha-20240702042457-44f9fea53af4c533a6b2989e2cdee9f045e0cfac npm ↗︎ unpkg ↗︎

Copy link
Contributor

github-actions bot commented Jul 2, 2024

✅ Benchmark Results

     ✓ no_errors
     ✓ expected_result

     checks.........................: 100.00% ✓ 340       ✗ 0  
     data_received..................: 40 MB   3.9 MB/s
     data_sent......................: 146 kB  15 kB/s
     http_req_blocked...............: avg=4.26µs   min=2.04µs   med=2.66µs  max=225.83µs p(90)=3.74µs   p(95)=4.04µs  
     http_req_connecting............: avg=923ns    min=0s       med=0s      max=157.02µs p(90)=0s       p(95)=0s      
     http_req_duration..............: avg=54.9ms   min=47.51ms  med=51.11ms max=153.23ms p(90)=61.31ms  p(95)=84.92ms 
       { expected_response:true }...: avg=54.9ms   min=47.51ms  med=51.11ms max=153.23ms p(90)=61.31ms  p(95)=84.92ms 
     http_req_failed................: 0.00%   ✓ 0         ✗ 170
     http_req_receiving.............: avg=144.99µs min=113.83µs med=132µs   max=890.2µs  p(90)=164.89µs p(95)=199.88µs
     http_req_sending...............: avg=25.32µs  min=18.88µs  med=25µs    max=73.32µs  p(90)=30.88µs  p(95)=34.72µs 
     http_req_tls_handshaking.......: avg=0s       min=0s       med=0s      max=0s       p(90)=0s       p(95)=0s      
     http_req_waiting...............: avg=54.73ms  min=47.34ms  med=50.96ms max=152.73ms p(90)=61.15ms  p(95)=84.75ms 
     http_reqs......................: 170     16.894805/s
     iteration_duration.............: avg=59.16ms  min=51.26ms  med=55.05ms max=158.72ms p(90)=67.42ms  p(95)=89.04ms 
     iterations.....................: 170     16.894805/s
     vus............................: 1       min=1       max=1
     vus_max........................: 1       min=1       max=1

Copy link
Contributor

github-actions bot commented Jul 2, 2024

💻 Website Preview

The latest changes are available as preview in: https://6b75f10d.graphql-tools.pages.dev

@renovate renovate bot merged commit 0b2bab6 into master Jul 2, 2024
30 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch July 2, 2024 06:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants