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: bump esbuild from 0.23.1 to 0.24.0 #6279

Merged
merged 1 commit into from
Sep 29, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 23, 2024

Bumps esbuild from 0.23.1 to 0.24.0.

Release notes

Sourced from esbuild's releases.

v0.24.0

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.23.0 or ~0.23.0. See npm's documentation about semver for more information.

  • Drop support for older platforms (#3902)

    This release drops support for the following operating system:

    • macOS 10.15 Catalina

    This is because the Go programming language dropped support for this operating system version in Go 1.23, and this release updates esbuild from Go 1.22 to Go 1.23. Go 1.23 now requires macOS 11 Big Sur or later.

    Note that this only affects the binary esbuild executables that are published to the esbuild npm package. It's still possible to compile esbuild's source code for these older operating systems. If you need to, you can compile esbuild for yourself using an older version of the Go compiler (before Go version 1.23). That might look something like this:

    git clone https://github.com/evanw/esbuild.git
    cd esbuild
    go build ./cmd/esbuild
    ./esbuild --version
    
  • Fix class field decorators in TypeScript if useDefineForClassFields is false (#3913)

    Setting the useDefineForClassFields flag to false in tsconfig.json means class fields use the legacy TypeScript behavior instead of the standard JavaScript behavior. Specifically they use assign semantics instead of define semantics (e.g. setters are triggered) and fields without an initializer are not initialized at all. However, when this legacy behavior is combined with standard JavaScript decorators, TypeScript switches to always initializing all fields, even those without initializers. Previously esbuild incorrectly continued to omit field initializers for this edge case. These field initializers in this case should now be emitted starting with this release.

  • Avoid incorrect cycle warning with tsconfig.json multiple inheritance (#3898)

    TypeScript 5.0 introduced multiple inheritance for tsconfig.json files where extends can be an array of file paths. Previously esbuild would incorrectly treat files encountered more than once when processing separate subtrees of the multiple inheritance hierarchy as an inheritance cycle. With this release, tsconfig.json files containing this edge case should work correctly without generating a warning.

  • Handle Yarn Plug'n'Play stack overflow with tsconfig.json (#3915)

    Previously a tsconfig.json file that extends another file in a package with an exports map could cause a stack overflow when Yarn's Plug'n'Play resolution was active. This edge case should work now starting with this release.

  • Work around more issues with Deno 1.31+ (#3917)

    This version of Deno broke the stdin and stdout properties on command objects for inherited streams, which matters when you run esbuild's Deno module as the entry point (i.e. when import.meta.main is true). Previously esbuild would crash in Deno 1.31+ if you ran esbuild like that. This should be fixed starting with this release.

    This fix was contributed by @​Joshix-1.

Changelog

Sourced from esbuild's changelog.

0.24.0

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.23.0 or ~0.23.0. See npm's documentation about semver for more information.

  • Drop support for older platforms (#3902)

    This release drops support for the following operating system:

    • macOS 10.15 Catalina

    This is because the Go programming language dropped support for this operating system version in Go 1.23, and this release updates esbuild from Go 1.22 to Go 1.23. Go 1.23 now requires macOS 11 Big Sur or later.

    Note that this only affects the binary esbuild executables that are published to the esbuild npm package. It's still possible to compile esbuild's source code for these older operating systems. If you need to, you can compile esbuild for yourself using an older version of the Go compiler (before Go version 1.23). That might look something like this:

    git clone https://github.com/evanw/esbuild.git
    cd esbuild
    go build ./cmd/esbuild
    ./esbuild --version
    
  • Fix class field decorators in TypeScript if useDefineForClassFields is false (#3913)

    Setting the useDefineForClassFields flag to false in tsconfig.json means class fields use the legacy TypeScript behavior instead of the standard JavaScript behavior. Specifically they use assign semantics instead of define semantics (e.g. setters are triggered) and fields without an initializer are not initialized at all. However, when this legacy behavior is combined with standard JavaScript decorators, TypeScript switches to always initializing all fields, even those without initializers. Previously esbuild incorrectly continued to omit field initializers for this edge case. These field initializers in this case should now be emitted starting with this release.

  • Avoid incorrect cycle warning with tsconfig.json multiple inheritance (#3898)

    TypeScript 5.0 introduced multiple inheritance for tsconfig.json files where extends can be an array of file paths. Previously esbuild would incorrectly treat files encountered more than once when processing separate subtrees of the multiple inheritance hierarchy as an inheritance cycle. With this release, tsconfig.json files containing this edge case should work correctly without generating a warning.

  • Handle Yarn Plug'n'Play stack overflow with tsconfig.json (#3915)

    Previously a tsconfig.json file that extends another file in a package with an exports map could cause a stack overflow when Yarn's Plug'n'Play resolution was active. This edge case should work now starting with this release.

  • Work around more issues with Deno 1.31+ (#3917)

    This version of Deno broke the stdin and stdout properties on command objects for inherited streams, which matters when you run esbuild's Deno module as the entry point (i.e. when import.meta.main is true). Previously esbuild would crash in Deno 1.31+ if you ran esbuild like that. This should be fixed starting with this release.

    This fix was contributed by @​Joshix-1.

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.23.1 to 0.24.0.
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.23.1...v0.24.0)

---
updated-dependencies:
- dependency-name: esbuild
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Sep 23, 2024
@github-actions github-actions bot added the chore label Sep 23, 2024
Copy link
Contributor

github-actions bot commented Sep 24, 2024

Performance Report

Daily Performance

xychart-beta
    title Files Per Second by Day
    y-axis Files per Second
    x-axis Date [Aug-31, Sep-2, Sep-6, Sep-9, Sep-10, Sep-13, Sep-16, Sep-17, Sep-18, Sep-22, Sep-23, Sep-29]
    bar [179.62, 175.68, 178.38, 175.73, 175.70, 175.56, 170.99, 174.42, 176.15, 171.49, 170.60, 170.51]
    line [9.81, 8.92, 9.30, 0.00, 9.85, 9.67, 9.68, 9.92, 9.37, 9.23, 9.26, 9.25]
    line [92.49, 93.42, 92.85, 96.99, 93.46, 97.52, 91.70, 93.14, 88.50, 84.12, 92.41, 91.81]
    line [19.78, 17.23, 19.98, 0.00, 20.38, 20.10, 19.75, 19.58, 19.44, 18.99, 18.71, 18.62]
    line [237.57, 232.38, 230.54, 0.00, 229.61, 230.62, 234.72, 234.92, 228.04, 217.32, 205.66, 215.13]
    line [246.15, 249.29, 224.39, 0.00, 241.04, 239.64, 234.60, 238.64, 244.36, 234.31, 230.98, 232.19]
    line [120.42, 122.42, 114.54, 119.33, 121.78, 117.69, 120.09, 120.05, 120.31, 117.43, 109.01, 114.23]
    line [31.46, 31.96, 32.39, 0.00, 33.27, 33.48, 33.18, 30.65, 34.02, 29.87, 31.63, 32.02]
    line [74.15, 76.26, 75.33, 0.00, 76.18, 75.30, 72.34, 73.59, 69.54, 71.59, 70.97, 71.88]
    line [433.22, 451.36, 445.82, 0.00, 442.79, 448.98, 444.77, 437.29, 443.15, 426.39, 420.42, 427.98]
    line [140.70, 140.40, 143.33, 143.38, 143.55, 140.59, 138.57, 140.62, 141.72, 135.93, 132.42, 135.65]
    line [195.27, 198.37, 193.18, 205.21, 202.42, 187.59, 200.94, 202.64, 174.86, 188.42, 184.98, 183.22]
    line [86.32, 87.46, 87.14, 81.35, 83.34, 83.78, 82.79, 83.96, 85.57, 82.01, 81.81, 81.95]
    line [143.16, 143.31, 137.86, 0.00, 143.10, 144.41, 139.70, 143.74, 112.39, 139.33, 141.10, 143.50]
    line [223.20, 230.93, 227.50, 233.38, 223.69, 216.25, 228.77, 208.66, 221.89, 226.09, 216.90, 227.33]
    line [135.44, 134.10, 133.16, 133.12, 133.37, 136.08, 131.30, 132.64, 136.81, 125.88, 123.97, 122.95]
    line [40.88, 40.72, 39.85, 0.00, 39.94, 41.26, 40.08, 36.34, 39.18, 37.74, 37.18, 37.00]
    line [274.59, 278.30, 269.85, 262.88, 274.40, 281.31, 272.54, 275.91, 275.97, 256.03, 258.54, 245.38]
    line [71.44, 71.07, 70.80, 70.10, 70.83, 70.27, 68.51, 69.01, 65.91, 63.15, 63.41, 66.63]
    line [98.42, 98.44, 103.61, 0.00, 95.82, 91.96, 97.25, 88.47, 97.89, 91.06, 89.08, 87.92]
    line [168.59, 168.11, 162.00, 0.00, 166.81, 166.56, 165.69, 164.68, 158.25, 149.51, 158.09, 156.72]
    line [109.73, 98.03, 113.59, 117.23, 110.00, 114.04, 109.51, 113.51, 116.46, 104.81, 102.79, 105.47]
    line [225.22, 232.84, 224.81, 0.00, 227.34, 228.09, 230.87, 227.16, 231.88, 223.22, 214.31, 213.41]
    line [179.72, 174.42, 171.06, 0.00, 173.10, 169.76, 175.73, 176.36, 175.75, 159.14, 168.41, 167.68]
    line [378.12, 369.19, 372.46, 362.58, 366.57, 385.92, 371.23, 373.66, 361.57, 355.78, 361.81, 352.89]
    line [254.64, 251.96, 258.89, 257.30, 255.86, 259.52, 256.30, 250.62, 253.31, 250.10, 236.21, 241.09]
    line [152.77, 128.16, 146.70, 0.00, 151.25, 142.95, 141.14, 143.95, 140.92, 145.29, 140.59, 145.32]
    line [41.01, 43.29, 42.33, 0.00, 41.15, 42.24, 41.01, 42.53, 38.05, 39.43, 38.14, 39.95]
    line [205.56, 221.13, 223.08, 217.30, 217.60, 210.80, 216.66, 208.33, 215.69, 211.15, 207.60, 213.25]
    line [82.69, 82.19, 79.19, 0.00, 81.30, 83.34, 82.19, 82.78, 80.29, 80.65, 77.47, 79.56]
    line [371.32, 379.20, 373.63, 372.65, 376.36, 368.52, 365.71, 377.56, 376.77, 361.09, 354.59, 365.94]
    line [189.02, 182.17, 179.93, 181.55, 184.12, 189.95, 185.74, 153.97, 189.99, 184.11, 172.95, 181.49]
    line [156.20, 128.81, 149.88, 0.00, 151.49, 151.06, 156.36, 155.63, 151.63, 151.94, 152.50, 157.27]
    line [37.79, 36.83, 35.85, 0.00, 37.06, 36.42, 35.98, 35.70, 34.54, 34.55, 33.11, 35.01]
    line [406.57, 392.41, 395.48, 385.49, 402.68, 388.38, 390.24, 382.26, 399.81, 383.04, 391.20, 386.90]
    line [212.85, 203.78, 213.00, 214.26, 206.28, 205.22, 203.09, 207.23, 202.88, 201.82, 207.79, 200.89]
    line [130.04, 119.32, 127.89, 123.29, 124.49, 129.64, 121.66, 124.08, 126.72, 119.08, 118.45, 115.22]
    line [257.53, 250.46, 249.77, 240.66, 262.89, 257.78, 257.49, 249.43, 247.25, 248.88, 251.75, 249.24]
    line [52.00, 53.54, 52.52, 0.00, 52.32, 54.12, 51.77, 53.09, 51.40, 50.85, 49.44, 50.41]
    line [164.92, 155.92, 153.19, 0.00, 155.03, 154.46, 150.27, 151.44, 153.53, 138.23, 146.78, 150.58]
    line [91.57, 89.68, 92.88, 88.59, 86.05, 89.85, 89.86, 94.27, 91.54, 90.45, 90.71, 89.75]
    line [31.04, 30.96, 30.04, 0.00, 31.22, 29.93, 31.17, 32.23, 31.60, 29.23, 29.18, 28.94]
    line [55.19, 56.79, 55.22, 55.40, 55.63, 54.54, 52.86, 55.21, 52.35, 50.94, 48.45, 51.94]
    line [178.67, 173.82, 183.91, 169.15, 181.18, 183.51, 175.60, 176.44, 174.39, 169.65, 170.91, 177.86]
    line [170.61, 161.33, 168.54, 172.61, 166.17, 170.88, 163.08, 171.82, 163.97, 154.58, 167.67, 166.03]
    line [128.57, 133.06, 133.03, 112.77, 129.44, 131.63, 130.97, 130.22, 113.06, 109.25, 122.56, 124.24]
    line [258.50, 262.12, 249.11, 258.37, 255.88, 255.75, 261.30, 254.48, 241.79, 249.14, 250.28, 249.10]
    line [263.63, 263.57, 250.38, 244.75, 250.69, 253.77, 247.48, 255.65, 251.83, 237.98, 246.89, 235.29]
    line [172.99, 170.71, 168.98, 170.63, 166.15, 168.68, 161.23, 172.09, 168.48, 164.20, 163.31, 163.18]
    line [150.29, 143.06, 151.08, 140.90, 145.94, 143.19, 137.67, 143.95, 148.30, 144.49, 142.14, 140.90]
Loading

Time to Process Files

Repository Elapsed Min/Avg/Max SD SD Graph
AdaDoom3/AdaDoom3 2.94 2.7 / 2.9 / 3.1 0.11 ┣━━┻━━╋━●┻━━┫
alexiosc/megistos 7.33 6.6 / 7.2 / 7.5 0.24 ┣━━┻━━╋━●┻━━┫
apollographql/apollo-server 2.19 2.0 / 2.1 / 2.3 0.06 ┣━┻━━╋━━┻●┫
aspnetboilerplate/aspnetboilerplate 11.36 10.5 / 10.8 / 11.6 0.27 ┣━━┻━━╋━━┻━━┫●
aws-amplify/docs 11.36 10.7 / 11.2 / 11.8 0.33 ┣━━┻━━╋━●┻━━┫
Azure/azure-rest-api-specs 13.64 12.9 / 13.7 / 14.8 0.51 ┣━━━┻━●╋━━┻━━━┫
bitjson/typescript-starter 0.62 0.6 / 0.6 / 0.7 0.03 ┣━━┻━●━┻━━┫
caddyserver/caddy 3.01 2.8 / 3.0 / 3.5 0.17 ┣━━┻━━●━━┻━━┫
canada-ca/open-source-logiciel-libre 0.76 0.7 / 0.7 / 0.8 0.02 ┣━━┻━╋━┻●━┫
chef/chef 5.28 5.1 / 5.3 / 6.0 0.22 ┣━━┻━●╋━━┻━━┫
dart-lang/sdk 59.52 55.3 / 58.0 / 70.4 3.18 ┣━━━┻━━━╋━●━┻━━━┫
django/django 13.90 13.0 / 13.5 / 14.3 0.35 ┣━━┻━━╋━━●━━┫
eslint/eslint 9.38 8.9 / 9.3 / 10.2 0.32 ┣━━┻━━●━━┻━━┫
exonum/exonum 2.93 2.9 / 3.0 / 3.7 0.20 ┣━━┻━●╋━━┻━━┫
flutter/samples 14.31 13.7 / 14.4 / 18.4 1.06 ┣━━━┻━━●━━┻━━━┫
gitbucket/gitbucket 3.03 2.8 / 2.9 / 3.1 0.08 ┣━━┻━━╋━━●━━┫
googleapis/google-cloud-cpp 139.71 129.2 / 136.4 / 145.8 4.11 ┣━━━┻━━━╋━━●┻━━━┫
graphql/express-graphql 0.70 0.6 / 0.7 / 0.8 0.04 ┣━┻━━╋━━●━┫
graphql/graphql-js 2.12 1.9 / 2.0 / 2.2 0.09 ┣━┻━━╋━━●━┫
graphql/graphql-relay-js 0.70 0.6 / 0.7 / 0.7 0.03 ┣━┻━━╋●━┻━┫
graphql/graphql-spec 0.81 0.7 / 0.8 / 0.9 0.03 ┣━┻━━╋━━●━┫
iluwatar/java-design-patterns 10.96 10.1 / 10.7 / 12.5 0.52 ┣━━┻━━╋━●┻━━┫
ktaranov/sqlserver-kit 5.97 5.6 / 5.8 / 6.1 0.15 ┣━━┻━━╋━━●━━┫
liriliri/licia 3.32 3.1 / 3.2 / 3.4 0.07 ┣━━┻━━╋━━┻●━┫
MartinThoma/LaTeX-examples 6.59 5.9 / 6.2 / 6.6 0.21 ┣━━┻━━╋━━┻━●┫
mdx-js/mdx 1.64 1.4 / 1.5 / 1.8 0.08 ┣━┻━━╋━━┻●┫
microsoft/TypeScript-Website 4.82 4.7 / 5.0 / 5.9 0.24 ┣━━┻●━╋━━┻━━┫
MicrosoftDocs/PowerShell-Docs 23.35 20.6 / 21.7 / 23.9 0.85 ┣━━━┻━━╋━━┻━━━●
neovim/nvim-lspconfig 2.90 2.6 / 2.7 / 2.9 0.10 ┣━━┻━━╋━━┻━━●
pagekit/pagekit 3.19 2.9 / 3.1 / 3.3 0.10 ┣━━┻━━╋━●┻━━┫
php/php-src 24.64 23.3 / 24.5 / 26.1 0.71 ┣━━━┻━━╋●━┻━━━┫
plasticrake/tplink-smarthome-api 0.86 0.8 / 0.8 / 0.9 0.03 ┣━┻━━╋━●┻━┫
prettier/prettier 5.98 5.7 / 5.9 / 6.2 0.14 ┣━━┻━━╋━●┻━━┫
pycontribs/jira 1.20 1.1 / 1.2 / 1.3 0.06 ┣━┻━━╋━●┻━┫
RustPython/RustPython 4.27 4.0 / 4.4 / 6.1 0.44 ┣━━┻━●╋━━┻━━┫
shoelace-style/shoelace 2.39 2.1 / 2.2 / 2.5 0.12 ┣━━┻━━╋━━●━━┫
SoftwareBrothers/admin-bro 2.05 1.8 / 1.9 / 2.1 0.08 ┣━┻━━╋━━┻━●
sveltejs/svelte 19.21 17.4 / 18.8 / 20.3 0.57 ┣━━━┻━━╋━━●━━━┫
TheAlgorithms/Python 5.48 4.7 / 4.9 / 5.3 0.16 ┣━━┻━━╋━━┻━━┫ ●
twbs/bootstrap 1.14 1.0 / 1.1 / 1.4 0.08 ┣━┻━━╋●━┻━┫
typescript-cheatsheets/react 1.05 1.0 / 1.0 / 1.1 0.03 ┣━┻━━╋━━●━┫
typescript-eslint/typescript-eslint 3.53 3.2 / 3.4 / 3.7 0.12 ┣━━┻━━╋━━┻●━┫
vitest-dev/vitest 7.15 6.6 / 6.9 / 7.4 0.22 ┣━━┻━━╋━━●━━┫
w3c/aria-practices 2.68 2.4 / 2.6 / 3.0 0.14 ┣━━┻━━╋●━┻━━┫
w3c/specberus 1.61 1.5 / 1.6 / 2.1 0.15 ┣━━┻━━●━━┻━━┫
webdeveric/webpack-assets-manifest 0.66 0.6 / 0.6 / 0.7 0.03 ┣━━┻━╋━┻●━┫
webpack/webpack 4.62 4.1 / 4.3 / 4.7 0.16 ┣━━┻━━╋━━┻━●┫
wireapp/wire-desktop 0.83 0.7 / 0.8 / 0.9 0.04 ┣━┻━━╋━●┻━┫
wireapp/wire-webapp 7.40 7.0 / 7.4 / 8.0 0.31 ┣━━┻━━●━━┻━━┫

Note:

  • Elapsed time is in seconds.

Files per Second over Time

Repository Files Sec Fps Rel Trend Fps N
AdaDoom3/AdaDoom3 103 2.94 35.01 -2.64% ▆█▆▆▆▇▆▆▅▆▅▆▄▅▄▃▅ 16
alexiosc/megistos 583 7.33 79.56 -2.46% ▅▇▆▄▆▅▆▆▇▅▄█▅▅▅▄▅ 16
apollographql/apollo-server 250 2.19 114.23 -3.95% ▇▇█▆▇█▇▇▆█▇▇▇▇▇▆▇▄▅ 18
aspnetboilerplate/aspnetboilerplate 2739 11.36 241.09 -4.97% ▇▇▆▇██▇████▇█▆█▇▆▇▄▅ 19
aws-amplify/docs 2831 11.36 249.24 -1.67% ▆█▄█▆▄██▇▇▆▇█▅▇▆▅▆▆▆ 19
Azure/azure-rest-api-specs 2426 13.64 177.86 0.82% ▅█▇▅█▅█▆▇█▇▅▆▆▆▆▆▄▅▆ 19
bitjson/typescript-starter 20 0.62 32.02 -0.29% ▃█▆▇▇████▇▅▅█▃▅▆▆ 16
caddyserver/caddy 276 3.01 91.81 -0.55% ▇▆█▆▇█▆███▇▇▄▇▆▅▃▆▆▆ 19
canada-ca/open-source-logiciel-libre 7 0.76 9.25 -3.40% ▇▇▄▅█▇▇▆▇▆█▇▆▆▄▅▅ 16
chef/chef 1201 5.28 227.33 1.78% ▅█▇█▇█▆▇▅▅▆▇█▃▅▆▇▇▆▇ 19
dart-lang/sdk 9713 59.52 163.18 -2.64% ███▇▇█▇▇▇▇██▃▇█▇▆▇▆▆ 19
django/django 2792 13.90 200.89 -2.67% █▇▇▅██▇▆▇▆▆▇▄▇▆▆▆▅▇▅ 19
eslint/eslint 2000 9.38 213.25 -0.27% ▄▇█▇█▇▇█▅▇▇▇█▆▅▇▆▇▆▇ 19
exonum/exonum 421 2.93 143.50 2.43% ▇█▇▇▇▇█▇█▆█▇▂▇▇▇▇ 16
flutter/samples 2598 14.31 181.49 -0.00% ███▇▇▇█▇███▇█▅▂█▇█▆▇ 19
gitbucket/gitbucket 411 3.03 135.65 -3.11% █▆▇▇████▇▇▇▄▇▇▇▇▅▇▅▅ 19
googleapis/google-cloud-cpp 19685 139.71 140.90 -2.20% ▇█▆▆█▅▆▇▆▆▅▄▄▆▇▇▇▆▆▅ 19
graphql/express-graphql 26 0.70 37.00 -5.95% ███▇▆███▇█▇▃▇▆▅▅▅ 16
graphql/graphql-js 333 2.12 156.72 -4.02% ▇▇▇▆▇▇▅█▇▇▆▇▆▅▃▃▅▅ 17
graphql/graphql-relay-js 28 0.70 39.95 -2.65% ▄▇█▇█▄▆█▇▅█▆▄▅▅▄▅ 16
graphql/graphql-spec 15 0.81 18.62 -4.67% ▆█▃▇██▇█▇▇█▆▆▆▆▅▅ 16
iluwatar/java-design-patterns 1838 10.96 167.68 -2.70% ██▇▇▇▇▇▆█▇█▇▇▇▃▆▆ 16
ktaranov/sqlserver-kit 489 5.97 81.95 -2.42% ▇███▅▆▆▆▇▆▆▅▇▇▅▆▅▅ 17
liriliri/licia 1421 3.32 427.98 -2.56% ▆▆█▇▇▇█▇▇▇▇▆▇▅▆▅▆ 16
MartinThoma/LaTeX-examples 1407 6.59 213.41 -5.87% █▄▇▆▆▇▆▇▇▇█▄▇▆▅▄▄ 16
mdx-js/mdx 144 1.64 87.92 -7.49% ▆▇▇▇█▆▆▄▆▆▇▆▆▃▇▅▅▄▄ 18
microsoft/TypeScript-Website 758 4.82 157.27 3.44% ▇█▃▆▇▆▆▇▇██▇█▇▇▆▇█ 17
MicrosoftDocs/PowerShell-Docs 2690 23.35 115.22 -7.03% ██▇▃▇▆▇▆██▆▆▆▆▇▇▆▅▅▄ 19
neovim/nvim-lspconfig 356 2.90 122.95 -7.15% ▇█▇▇▇▇▇▇██▇█▄▇▆█▆▄▄▄ 19
pagekit/pagekit 741 3.19 232.19 -2.69% █▅▇▄▇▅▇▅▄▆▅▆▇▅▅▅▅ 16
php/php-src 2211 24.64 89.75 -0.69% ▆█▅▇▇▆▄▅▅▇▇▆▆██▇▆▇▇▆ 19
plasticrake/tplink-smarthome-api 62 0.86 71.88 -2.41% ▅▇▇▇▇██▆▇▄▅▇▄▅▅▅▅ 16
prettier/prettier 2190 5.98 365.94 -1.35% ▆███▇▇▇▇▇▆▅▇█▇▇▆▅▅▆ 18
pycontribs/jira 80 1.20 66.63 -3.19% █████▇█▇█▇█▆▆█▆▆▃▅▆ 18
RustPython/RustPython 621 4.27 145.32 1.37% ███▂▇█▇█▆▆▇▆▇▇▆▇▇▆▇ 18
shoelace-style/shoelace 437 2.39 183.22 -6.10% ▅█▇▆█▇█▇▃█▇▇▇█▃▆▅▅▄ 18
SoftwareBrothers/admin-bro 441 2.05 215.13 -6.19% ██▇▇▇▇▇█▆▇███▇▅▅▃▅ 17
sveltejs/svelte 7431 19.21 386.90 -1.37% ▆█▆▆▆▅▇▇▆▅▆▆▅▇▄▇▅▆▆▅ 19
TheAlgorithms/Python 1345 5.48 245.38 -9.75% █▆█▆▆▅▆▇▇█▆▇▆▇▇▇▄▄▄▃ 19
twbs/bootstrap 120 1.14 105.47 -3.60% ▆▇▂▆▇█▇▆▇█▇▇▅█▇█▆▅▅▆ 19
typescript-cheatsheets/react 53 1.05 50.41 -3.44% ▇▅▇▆▇▅▇█▅▇▆▇▆▅▅▄▅ 16
typescript-eslint/typescript-eslint 1245 3.53 352.89 -4.63% ▆█▆▆▆▅▅▇▇███▃▆▇▅▅▅▅▅ 19
vitest-dev/vitest 1780 7.15 249.10 -2.52% ▅█▇█▅▇█▄▇▅▇▆█▆▆▄▅▅▅▅ 19
w3c/aria-practices 403 2.68 150.58 -1.24% █▇▆▇▆▆▆▆▆▆▄▆▆▅▆▃▄▅▅ 18
w3c/specberus 200 1.61 124.24 -1.59% ▆██▇█▅▇▇▇█▇█▇█▆▅▂▆▆▆ 19
webdeveric/webpack-assets-manifest 19 0.66 28.94 -5.79% ▇▆▇▆▇▇▃█▇▆██▇▅▅▅▅ 16
webpack/webpack 1086 4.62 235.29 -6.61% ████▆▅▆▆▇▆▇▆▄▇▇▆▃▆▆▄ 19
wireapp/wire-desktop 43 0.83 51.94 -3.88% ▇▆█▇▇▇▇▇▆▇▃▇▆▇▇▅▅▄▃▅ 19
wireapp/wire-webapp 1228 7.40 166.03 0.06% █▇▇▄▇█▅▇█▇▅▆▆█▇▆▄▄▇▆ 19

Data Throughput

Repository Files Sec Kps Rel Trend Kps N
AdaDoom3/AdaDoom3 103 2.94 744.00 -2.64% ▆█▆▆▆▇▆▆▅▆▅▆▄▅▄▃▅ 16
alexiosc/megistos 583 7.33 625.13 -2.46% ▅▇▆▄▆▅▆▆▇▅▄█▅▅▅▄▅ 16
apollographql/apollo-server 250 2.19 905.16 -3.95% ▇▇█▆▇█▇▇▆█▇▇▇▇▇▆▇▄▅ 18
aspnetboilerplate/aspnetboilerplate 2739 11.36 560.52 -6.84% █▇▆▇██▇████▇█▆█▇▆▇▄▅ 19
aws-amplify/docs 2831 11.36 831.63 -1.19% ▆█▄█▆▄██▇▇▆▇█▅▇▆▅▆▆▆ 19
Azure/azure-rest-api-specs 2426 13.64 506.52 0.84% ▅█▇▅█▅█▆▇█▇▅▆▇▆▆▆▄▅▆ 19
bitjson/typescript-starter 20 0.62 128.07 -0.29% ▃█▆▇▇████▇▅▅█▃▅▆▆ 16
caddyserver/caddy 276 3.01 747.80 -0.16% ▆▆█▅▇█▆███▇▇▄▇▆▆▃▆▇▆ 19
canada-ca/open-source-logiciel-libre 7 0.76 76.62 -3.40% ▇▇▄▅█▇▇▆▇▆█▇▆▆▄▅▅ 16
chef/chef 1201 5.28 1043.15 1.35% ▅█▇█▇█▆▇▆▆▆▇█▃▅▆▇▇▆▇ 19
dart-lang/sdk 9713 59.52 1182.50 -2.74% ███▇▇▇▇▇▇▇██▃▇█▇▆▇▆▆ 19
django/django 2792 13.90 1229.16 -2.50% █▇▇▅██▇▆▇▆▆▇▄▇▆▆▆▅▇▅ 19
eslint/eslint 2000 9.38 1745.35 -0.08% ▄▇█▇█▇▇█▆▇▇▇█▇▅▇▆▇▆▇ 19
exonum/exonum 421 2.93 1372.59 2.43% ▇█▇▇▇▇█▇█▆█▇▂▇▇▇▇ 16
flutter/samples 2598 14.31 1361.86 0.01% ███▇▇▇█▇███▇█▅▂█▇█▆▇ 19
gitbucket/gitbucket 411 3.03 612.89 -3.11% █▆▇▇████▇▇▇▄▇▇▇▇▅▇▅▅ 19
googleapis/google-cloud-cpp 19685 139.71 1005.28 -2.24% ▇█▆▆█▅▆▇▆▆▅▄▄▆▇▇▇▆▆▅ 19
graphql/express-graphql 26 0.70 169.33 -5.95% ███▇▆███▇█▇▃▇▆▅▅▅ 16
graphql/graphql-js 333 2.12 892.32 -3.97% ▇▇▇▆▇▇▅█▇▇▆▇▆▅▃▃▅▅ 17
graphql/graphql-relay-js 28 0.70 156.93 -2.65% ▄▇█▇█▄▆█▇▅█▆▄▅▅▄▅ 16
graphql/graphql-spec 15 0.81 684.06 -4.67% ▆█▃▇██▇█▇▇█▆▆▆▆▅▅ 16
iluwatar/java-design-patterns 1838 10.96 516.00 -2.70% ██▇▇▇▇▇▆█▇█▇▇▇▃▆▆ 16
ktaranov/sqlserver-kit 489 5.97 1239.60 -2.42% ▇███▅▆▆▆▇▆▆▅▇▇▅▆▅▅ 17
liriliri/licia 1421 3.32 504.49 -2.45% ▆▆█▇▇▇█▇▇▇▇▆▇▅▆▅▆ 16
MartinThoma/LaTeX-examples 1407 6.59 441.08 -5.87% █▄▇▆▆▇▆▇▇▇█▄▇▆▅▄▄ 16
mdx-js/mdx 144 1.64 402.95 -7.22% ▆▇▇▇█▆▆▄▆▆▇▆▆▃▇▅▅▄▄ 18
microsoft/TypeScript-Website 758 4.82 1076.19 3.32% ▇█▃▆▇▆▆▇▇██▇█▇▇▆▇█ 17
MicrosoftDocs/PowerShell-Docs 2690 23.35 1177.24 -7.07% ██▇▃▇▆▇▆██▆▆▆▆▇▇▆▅▅▄ 19
neovim/nvim-lspconfig 356 2.90 322.93 -7.32% ███▇▇▇█▇██▇█▄▇▆█▆▄▄▄ 19
pagekit/pagekit 741 3.19 484.13 -2.69% █▅▇▄▇▅▇▅▄▆▅▆▇▅▅▅▅ 16
php/php-src 2211 24.64 1309.73 -0.65% ▆█▅▇█▆▄▅▅▇▇▆▆██▇▆▇▇▆ 19
plasticrake/tplink-smarthome-api 62 0.86 388.36 -2.41% ▅▇▇▇▇██▆▇▄▅▇▄▅▅▅▅ 16
prettier/prettier 2190 5.98 509.98 -1.35% ▆███▇▇▇▇▇▆▅▇█▇▇▆▅▅▆ 18
pycontribs/jira 80 1.20 458.90 -3.25% ████▇▇█▇█▇█▆▆█▅▆▃▄▆ 18
RustPython/RustPython 621 4.27 1069.16 1.64% ███▂▇█▇█▆▆▇▆▇▇▆▇▇▆▇ 18
shoelace-style/shoelace 437 2.39 869.55 -5.51% ▅█▇▆█▇▇▇▃█▇▇▇█▃▆▅▅▅ 18
SoftwareBrothers/admin-bro 441 2.05 474.17 -6.30% ██▇▇▇▇▇█▆▇███▇▅▅▃▅ 17
sveltejs/svelte 7431 19.21 279.07 -1.64% ▆█▆▆▆▅▇▇▆▅▆▆▅▆▃▆▅▅▆▅ 19
TheAlgorithms/Python 1345 5.48 621.74 -9.85% █▆█▇▆▅▆▇▇█▆▇▆▇▇▇▄▄▄▃ 19
twbs/bootstrap 120 1.14 844.66 -3.60% ▆▇▂▆▇█▇▆▇█▇▇▅█▇█▆▅▅▆ 19
typescript-cheatsheets/react 53 1.05 368.06 -3.44% ▇▅▇▆▇▅▇█▅▇▆▇▆▅▅▄▅ 16
typescript-eslint/typescript-eslint 1245 3.53 1632.37 -4.49% ▆▇▆▆▆▅▅▇▇███▃▆▇▅▅▅▅▅ 19
vitest-dev/vitest 1780 7.15 511.36 -2.64% ▅█▇█▅▇█▄▇▅▇▆█▆▆▄▅▅▅▅ 19
w3c/aria-practices 403 2.68 1403.77 -0.98% █▇▆▇▆▆▆▆▆▆▄▆▆▅▆▃▄▅▅ 18
w3c/specberus 200 1.61 396.32 -1.59% ▆██▇█▅▇▇▇█▇█▇█▆▅▂▆▆▆ 19
webdeveric/webpack-assets-manifest 19 0.66 155.34 -5.79% ▇▆▇▆▇▇▃█▇▆██▇▅▅▅▅ 16
webpack/webpack 1086 4.62 1021.96 -6.60% ████▆▅▆▆▇▆▇▆▄▇▇▆▃▆▆▄ 19
wireapp/wire-desktop 43 0.83 228.28 -3.79% ▇▆█▇▇▇▇█▆▇▃▇▆▇▇▅▅▄▃▅ 19
wireapp/wire-webapp 1228 7.40 701.17 -0.27% █▇▇▄▇█▅▇█▇▅▆▆█▇▆▄▄▇▆ 19

@Jason3S Jason3S merged commit e51799c into main Sep 29, 2024
88 checks passed
@Jason3S Jason3S deleted the dependabot/npm_and_yarn/esbuild-0.24.0 branch September 29, 2024 07:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
chore dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant