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 all non-major dependencies #5422

Merged
merged 1 commit into from
Jul 13, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 13, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
esbuild 0.18.11 -> 0.18.12 age adoption passing confidence
puppeteer (source) 20.8.1 -> 20.8.2 age adoption passing confidence

Release Notes

evanw/esbuild (esbuild)

v0.18.12

Compare Source

  • Fix a panic with const enum inside parentheses (#​3205)

    This release fixes an edge case where esbuild could potentially panic if a TypeScript const enum statement was used inside of a parenthesized expression and was followed by certain other scope-related statements. Here's a minimal example that triggers this edge case:

    (() => {
      const enum E { a };
      () => E.a
    })
  • Allow a newline in the middle of TypeScript export type statement (#​3225)

    Previously esbuild incorrectly rejected the following valid TypeScript code:

    export type
    { T };
    
    export type
    * as foo from 'bar';

    Code that uses a newline after export type is now allowed starting with this release.

  • Fix cross-module inlining of string enums (#​3210)

    A refactoring typo in version 0.18.9 accidentally introduced a regression with cross-module inlining of string enums when combined with computed property accesses. This regression has been fixed.

  • Rewrite .js to .ts inside packages with exports (#​3201)

    Packages with the exports field are supposed to disable node's path resolution behavior that allows you to import a file with a different extension than the one in the source code (for example, importing foo/bar to get foo/bar.js). And TypeScript has behavior where you can import a non-existent .js file and you will get the .ts file instead. Previously the presence of the exports field caused esbuild to disable all extension manipulation stuff which included both node's implicit file extension searching and TypeScript's file extension swapping. However, TypeScript appears to always apply file extension swapping even in this case. So with this release, esbuild will now rewrite .js to .ts even inside packages with exports.

  • Fix a redirect edge case in esbuild's development server (#​3208)

    The development server canonicalizes directory URLs by adding a trailing slash. For example, visiting /about redirects to /about/ if /about/index.html would be served. However, if the requested path begins with two slashes, then the redirect incorrectly turned into a protocol-relative URL. For example, visiting //about redirected to //about/ which the browser turns into http://about/. This release fixes the bug by canonicalizing the URL path when doing this redirect.

puppeteer/puppeteer (puppeteer)

v20.8.2: puppeteer: v20.8.2

Compare Source

Dependencies
  • The following workspace dependencies were updated

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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • 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 13, 2023
@changeset-bot
Copy link

changeset-bot bot commented Jul 13, 2023

⚠️ No Changeset found

Latest commit: 307c456

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

@github-actions
Copy link
Contributor

github-actions bot commented Jul 13, 2023

✅ Benchmark Results

     ✓ no_errors
     ✓ expected_result

     checks.........................: 100.00% ✓ 234       ✗ 0  
     data_received..................: 27 MB   2.7 MB/s
     data_sent......................: 100 kB  10 kB/s
     http_req_blocked...............: avg=4.92µs   min=2.6µs   med=3.2µs   max=184.1µs  p(90)=3.9µs    p(95)=4.21µs  
     http_req_connecting............: avg=1.09µs   min=0s      med=0s      max=128µs    p(90)=0s       p(95)=0s      
     http_req_duration..............: avg=80.29ms  min=66.29ms med=76.08ms max=205.91ms p(90)=89.16ms  p(95)=119.93ms
       { expected_response:true }...: avg=80.29ms  min=66.29ms med=76.08ms max=205.91ms p(90)=89.16ms  p(95)=119.93ms
     http_req_failed................: 0.00%   ✓ 0         ✗ 117
     http_req_receiving.............: avg=167.09µs min=118.6µs med=141.3µs max=319.2µs  p(90)=248.38µs p(95)=262.45µs
     http_req_sending...............: avg=150.84µs min=17.1µs  med=24.2µs  max=3.97ms   p(90)=40.78µs  p(95)=810.37µs
     http_req_tls_handshaking.......: avg=0s       min=0s      med=0s      max=0s       p(90)=0s       p(95)=0s      
     http_req_waiting...............: avg=79.97ms  min=66.14ms med=75.89ms max=205.55ms p(90)=88.87ms  p(95)=119.7ms 
     http_reqs......................: 117     11.653284/s
     iteration_duration.............: avg=85.78ms  min=71.25ms med=81.13ms max=210.79ms p(90)=97.91ms  p(95)=126.73ms
     iterations.....................: 117     11.653284/s
     vus............................: 1       min=1       max=1
     vus_max........................: 1       min=1       max=1

@github-actions
Copy link
Contributor

github-actions bot commented Jul 13, 2023

💻 Website Preview

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

@renovate renovate bot changed the title chore(deps): update dependency esbuild to v0.18.12 chore(deps): update all non-major dependencies Jul 13, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f16efd6 to 307c456 Compare July 13, 2023 07:29
@ardatan ardatan merged commit ba0b260 into master Jul 13, 2023
31 checks passed
@ardatan ardatan deleted the renovate/all-minor-patch branch July 13, 2023 10:29
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.

1 participant