Skip to content

chore: bump the production-dependencies group with 3 updates#8829

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/production-dependencies-b0af10f4a1
Open

chore: bump the production-dependencies group with 3 updates#8829
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/production-dependencies-b0af10f4a1

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 7, 2026

Bumps the production-dependencies group with 3 updates: react, jest-diff and react-dom.

Updates react from 19.2.5 to 19.2.6

Release notes

Sourced from react's releases.

19.2.6 (May 6th, 2026)

React Server Components

Commits

Updates jest-diff from 30.3.0 to 30.4.0

Release notes

Sourced from jest-diff's releases.

v30.4.0

Big release! 😀

Main feature is a rewrite of our custom runtime in preparation for stabilisation of native support of ESM. As part of that work require(esm) module is now supported on Node 24.9+ (still requires --experimental-vm-modules like before).

In addition we now support fake timers for the recently released Temporal API in Node v26.

React 19 is also supported properly in pretty-format, meaning snapshots of React components now work like they should.

Due to all the changes, there might be regressions that snuck in. Please report them!

Full list of changes below

Features

  • [babel-jest] Support collecting coverage from .mts, .cts (and other) files (#15994)
  • [jest-circus, jest-cli, jest-config, jest-core, jest-jasmine2, jest-types] Add --collect-tests flag to discover and list tests without executing them (#16006)
  • [jest-config, jest-runner, jest-worker] Add workerGracefulExitTimeout config option to control how long workers are given to exit before being force-killed (#15984)
  • [jest-config] Add support for jest.config.mts as a valid configuration file (#16005)
  • [jest-config, jest-core, jest-reporters, jest-runner] verbose and silent can now be set per-project; the project-level value overrides the global value for that project's tests (#16133)
  • [@jest/fake-timers] Accept Temporal.Duration in jest.advanceTimersByTime() and jest.advanceTimersByTimeAsync() (#16128)
  • [@jest/fake-timers] Accept Temporal.Instant and Temporal.ZonedDateTime in jest.setSystemTime() and useFakeTimers({now}) (#16128)
  • [@jest/fake-timers] Support faking Temporal.Now.* (#16131)
  • [jest-mock] Add clearMocksOnScope(scope) on ModuleMocker for clearing every mock function exposed on a scope object (#16088)
  • [jest-resolve] Add canResolveSync() on Resolver so callers can detect when a user-configured resolver only exports an async hook (#16064)
  • [jest-runtime] Use synchronous evaluate() for ES modules without top-level await on Node versions that support it (v24.9+), and prefer the synchronous transform path when a sync transformer is configured (#16062)
  • [jest-runtime] Support require() of ES modules on Node v24.9+ (#16074)
  • [jest-runtime] Validate TC39 import attributes (with { type: 'json' }) on ESM imports (#16127)
  • [@jest/transform] Add canTransformSync(filename) on ScriptTransformer so callers can pick the sync vs async transform path (#16062)
  • [jest-util] Add isError helper (#16076)
  • [pretty-format] Support React 19 (#16123)

Fixes

  • [expect-utils] Fix toStrictEqual failing on structuredClone results due to cross-realm constructor mismatch (#15959)
  • [@jest/expect-utils] Prevent toMatchObject/subset matching from throwing when encountering exotic iterables (#15952)
  • [fake-timers] Convert Date to milliseconds before passing to @sinonjs/fake-timers (#16029)
  • [jest] Export GlobalConfig and ProjectConfig TypeScript types (#16132)
  • [jest-circus] Prevent crash when asyncError is undefined for non-Error throws (#16003)
  • [jest-circus, jest-jasmine2] Include Error.cause in JSON failureMessages output (#15967)
  • [jest-config] Fix preset path resolution on Windows when the preset uses subpath exports (#15961)
  • [jest-config] Allow collectCoverage and coverageProvider in project config without a validation warning (#16132)
  • [jest-config] Project config validator now emits "is not supported in an individual project configuration" instead of "probably a typing mistake" for known global-only options (#16132)
  • [jest-environment-node] Fix --localstorage-file warning on Node 25+ (#16086)
  • [jest-reporters] Apply global coverage threshold to unmatched pattern files in addition to glob/path thresholds (#16137)
  • [jest-reporters, jest-runner, jest-runtime, jest-transform] Fix coverage report not showing correct code coverage when using projects config option (#16140)
  • [jest-runtime] Resolve expect and @jest/expect from the internal module registry so test-file imports share the same JestAssertionError as the global expect (#16130)
  • [jest-runtime] Improve CJS-from-ESM interop: __esModule/Babel default unwrap, broader named-export coverage, and shared CJS singleton across importers (#16050)
  • [jest-runtime] Load .js files with ESM syntax but no "type":"module" marker as native ESM (#16050)
  • [jest-runtime] Extend the .js-with-ESM-syntax fallback to require() on Node v24.9+ - falls back to require(esm) when the CJS parser rejects ESM syntax (#16078)

... (truncated)

Changelog

Sourced from jest-diff's changelog.

30.4.0

Features

  • [babel-jest] Support collecting coverage from .mts, .cts (and other) files (#15994)
  • [jest-circus, jest-cli, jest-config, jest-core, jest-jasmine2, jest-types] Add --collect-tests flag to discover and list tests without executing them (#16006)
  • [jest-config, jest-runner, jest-worker] Add workerGracefulExitTimeout config option to control how long workers are given to exit before being force-killed (#15984)
  • [jest-config] Add support for jest.config.mts as a valid configuration file (#16005)
  • [jest-config, jest-core, jest-reporters, jest-runner] verbose and silent can now be set per-project; the project-level value overrides the global value for that project's tests (#16133)
  • [@jest/fake-timers] Accept Temporal.Duration in jest.advanceTimersByTime() and jest.advanceTimersByTimeAsync() (#16128)
  • [@jest/fake-timers] Accept Temporal.Instant and Temporal.ZonedDateTime in jest.setSystemTime() and useFakeTimers({now}) (#16128)
  • [@jest/fake-timers] Support faking Temporal.Now.* (#16131)
  • [jest-mock] Add clearMocksOnScope(scope) on ModuleMocker for clearing every mock function exposed on a scope object (#16088)
  • [jest-resolve] Add canResolveSync() on Resolver so callers can detect when a user-configured resolver only exports an async hook (#16064)
  • [jest-runtime] Use synchronous evaluate() for ES modules without top-level await on Node versions that support it (v24.9+), and prefer the synchronous transform path when a sync transformer is configured (#16062)
  • [jest-runtime] Support require() of ES modules on Node v24.9+ (#16074)
  • [jest-runtime] Validate TC39 import attributes (with { type: 'json' }) on ESM imports (#16127)
  • [@jest/transform] Add canTransformSync(filename) on ScriptTransformer so callers can pick the sync vs async transform path (#16062)
  • [jest-util] Add isError helper (#16076)
  • [pretty-format] Support React 19 (#16123)

Fixes

  • [expect-utils] Fix toStrictEqual failing on structuredClone results due to cross-realm constructor mismatch (#15959)
  • [@jest/expect-utils] Prevent toMatchObject/subset matching from throwing when encountering exotic iterables (#15952)
  • [fake-timers] Convert Date to milliseconds before passing to @sinonjs/fake-timers (#16029)
  • [jest] Export GlobalConfig and ProjectConfig TypeScript types (#16132)
  • [jest-circus] Prevent crash when asyncError is undefined for non-Error throws (#16003)
  • [jest-circus, jest-jasmine2] Include Error.cause in JSON failureMessages output (#15967)
  • [jest-config] Fix preset path resolution on Windows when the preset uses subpath exports (#15961)
  • [jest-config] Allow collectCoverage and coverageProvider in project config without a validation warning (#16132)
  • [jest-config] Project config validator now emits "is not supported in an individual project configuration" instead of "probably a typing mistake" for known global-only options (#16132)
  • [jest-environment-node] Fix --localstorage-file warning on Node 25+ (#16086)
  • [jest-reporters] Apply global coverage threshold to unmatched pattern files in addition to glob/path thresholds (#16137)
  • [jest-reporters, jest-runner, jest-runtime, jest-transform] Fix coverage report not showing correct code coverage when using projects config option (#16140)
  • [jest-runtime] Resolve expect and @jest/expect from the internal module registry so test-file imports share the same JestAssertionError as the global expect (#16130)
  • [jest-runtime] Improve CJS-from-ESM interop: __esModule/Babel default unwrap, broader named-export coverage, and shared CJS singleton across importers (#16050)
  • [jest-runtime] Load .js files with ESM syntax but no "type":"module" marker as native ESM (#16050)
  • [jest-runtime] Extend the .js-with-ESM-syntax fallback to require() on Node v24.9+ - falls back to require(esm) when the CJS parser rejects ESM syntax (#16078)
  • [jest-runtime] Fix deadlocks and double-evaluation in concurrent ESM and wasm imports (#16050)
  • [jest-runtime] Fix error when require() is called after the Jest environment has been torn down (#15951)
  • [jest-runtime] Fix missing error when import() is called after the Jest environment has been torn down (#16080)
  • [jest-runtime] Fix virtual unstable_mockModule registrations not respected in ESM (#16081)
  • [jest-runtime] Apply moduleNameMapper when resolving modules with require.resolve() and the paths option (#16135)

Chore & Maintenance

  • [@jest/fake-timers] Upgrade @sinonjs/fake-timers (#16139)
  • [jest-runtime] Use synchronous linkRequests / instantiate for ESM linking on Node v24.9+ (#16063)
Commits

Updates react-dom from 19.2.5 to 19.2.6

Release notes

Sourced from react-dom's releases.

19.2.6 (May 6th, 2026)

React Server Components

Commits

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
react-dom [>= 18.2.a, < 18.3]

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the production-dependencies group with 3 updates: [react](https://github.com/facebook/react/tree/HEAD/packages/react), [jest-diff](https://github.com/jestjs/jest/tree/HEAD/packages/jest-diff) and [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom).


Updates `react` from 19.2.5 to 19.2.6
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.6/packages/react)

Updates `jest-diff` from 30.3.0 to 30.4.0
- [Release notes](https://github.com/jestjs/jest/releases)
- [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md)
- [Commits](https://github.com/jestjs/jest/commits/v30.4.0/packages/jest-diff)

Updates `react-dom` from 19.2.5 to 19.2.6
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.6/packages/react-dom)

---
updated-dependencies:
- dependency-name: react
  dependency-version: 19.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: jest-diff
  dependency-version: 30.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: react-dom
  dependency-version: 19.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
...

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 May 7, 2026
@github-actions github-actions Bot added the chore label May 7, 2026
@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented May 7, 2026

Performance Report

Daily Performance
xychart-beta
    title Files Per Second by Day
    y-axis Files per Second
    x-axis Date [Apr-7, Apr-8, May-4, May-7]
    bar [188.59, 189.84, 186.25, 192.45]
    line [47.88, 44.28, 46.04, 46.14]
    line [20.18, 18.41, 17.95, 19.68]
    line [15.50, 15.41, 13.72, 14.60]
    line [136.62, 133.64, 166.55, 131.17]
    line [138.14, 127.32, 140.01, 142.40]
    line [220.27, 210.30, 215.39, 193.89]
    line [80.16, 77.02, 100.08, 73.70]
    line [223.28, 229.16, 213.15, 221.20]
    line [103.59, 103.12, 97.37, 106.07]
    line [203.68, 224.92, 222.86, 208.83]
    line [99.21, 100.52, 102.79, 97.54]
    line [6.73, 7.00, 6.46, 6.52]
    line [249.89, 261.98, 263.28, 342.64]
    line [157.18, 176.94, 191.37, 194.63]
    line [26.37, 26.75, 24.56, 26.23]
    line [55.94, 57.36, 53.38, 70.00]
    line [88.62, 91.77, 91.75, 116.47]
    line [122.83, 125.98, 127.00, 127.85]
    line [343.02, 332.37, 321.24, 321.28]
    line [209.11, 216.00, 213.17, 210.25]
    line [77.93, 83.70, 81.26, 85.70]
    line [169.14, 165.39, 160.29, 167.08]
    line [36.10, 36.17, 35.07, 35.69]
    line [240.02, 266.31, 263.11, 255.58]
    line [145.47, 146.56, 138.03, 150.21]
    line [244.17, 242.46, 240.52, 246.96]
    line [36.18, 37.44, 37.38, 36.81]
    line [213.92, 211.68, 218.55, 214.75]
    line [178.10, 179.62, 172.93, 179.63]
    line [83.54, 84.32, 84.38, 85.40]
    line [392.72, 397.99, 403.25, 507.55]
    line [95.65, 98.60, 94.12, 95.44]
    line [366.55, 370.00, 382.99, 381.11]
    line [305.83, 243.57, 226.51, 240.71]
    line [21.40, 24.14, 24.93, 23.32]
    line [130.72, 130.46, 129.13, 130.68]
    line [69.26, 70.15, 71.11, 67.51]
    line [126.46, 123.33, 119.17, 125.19]
    line [148.71, 162.06, 158.32, 159.27]
    line [35.23, 41.88, 38.18, 39.63]
    line [185.15, 191.53, 189.78, 246.82]
    line [120.16, 125.96, 126.81, 115.90]
    line [206.43, 212.35, 209.84, 212.68]
    line [219.86, 232.88, 229.32, 234.40]
    line [341.55, 355.72, 353.58, 353.58]
    line [50.93, 44.38, 41.81, 47.31]
    line [177.30, 178.37, 144.52, 145.50]
    line [240.71, 240.89, 258.73, 290.98]
    line [197.17, 200.02, 193.68, 198.02]
    line [174.25, 173.31, 170.59, 172.73]
Loading
Time to Process Files
Repository Elapsed Min/Avg/Max SD SD Graph
AdaDoom3/AdaDoom3 2.80 2.8 / 2.8 / 2.8 0.04 ┣━━┻━━╋●━┻━━┫
alexiosc/megistos 6.83 6.9 / 6.9 / 7.0 0.03 ● ┣━━┻━━╋━━┻━━┫
apollographql/apollo-server 2.61 2.5 / 2.5 / 2.6 0.03 ┣━━┻━━╋━━┻━━┫ ●
aspnetboilerplate/aspnetboilerplate 6.67 8.7 / 8.9 / 9.1 0.21 ● ┣┻╋┻┫
aws-amplify/docs 12.29 9.6 / 11.6 / 13.1 1.46 ┣━━┻━━━╋━●━┻━━┫
Azure/azure-rest-api-specs 8.57 9.6 / 10.1 / 10.3 0.33 ● ┣━━┻━╋━┻━━┫
bitjson/typescript-starter 1.02 1.0 / 1.1 / 1.1 0.05 ┣━┻●━╋━━┻━┫
caddyserver/caddy 2.67 3.3 / 3.4 / 3.4 0.05 ● ┣┻╋┻┫
canada-ca/open-source-logiciel-libre 1.07 1.0 / 1.0 / 1.1 0.03 ┣━┻━━╋━━●━┫
chef/chef 4.66 4.8 / 5.2 / 5.4 0.23 ●┣━━┻━━╋━━┻━━┫
dart-lang/sdk 57.40 55.9 / 57.1 / 58.7 1.19 ┣━━━┻━━━╋●━━┻━━━┫
django/django 13.66 13.6 / 13.8 / 14.0 0.16 ┣━━●┻━━╋━━┻━━━┫
eslint/eslint 9.84 9.5 / 9.7 / 9.8 0.13 ┣━━┻━━╋━━┻●━┫
exonum/exonum 3.36 3.3 / 3.4 / 3.5 0.08 ┣━━┻●━╋━━┻━━┫
flutter/samples 11.65 11.7 / 13.3 / 14.1 1.08 ┣━●┻━━━╋━━━┻━━┫
gitbucket/gitbucket 3.16 2.5 / 2.9 / 3.1 0.27 ┣━━┻━━╋━━●━━┫
googleapis/google-cloud-cpp 121.15 119.4 / 120.7 / 122.7 1.43 ┣━━━┻━━━╋●━━┻━━━┫
graphql/express-graphql 1.12 1.0 / 1.1 / 1.2 0.07 ┣━━┻━━●━━┻━━┫
graphql/graphql-js 2.61 2.6 / 2.7 / 2.9 0.12 ┣━●┻━━╋━━┻━━┫
graphql/graphql-relay-js 1.07 1.0 / 1.1 / 1.1 0.04 ┣━┻━●╋━━┻━┫
graphql/graphql-spec 1.30 1.2 / 1.3 / 1.4 0.07 ┣━━┻━━╋●━┻━━┫
iluwatar/java-design-patterns 11.47 11.5 / 11.7 / 11.9 0.19 ┣━━━●━━╋━━┻━━━┫
ktaranov/sqlserver-kit 5.72 5.9 / 6.1 / 6.3 0.18 ●━━┻━━╋━━┻━━┫
liriliri/licia 3.77 3.8 / 3.9 / 3.9 0.07 ┣━━●━━╋━━┻━━┫
MartinThoma/LaTeX-examples 6.01 6.1 / 6.2 / 6.4 0.15 ┣━●┻━━╋━━┻━━┫
mdx-js/mdx 1.90 1.4 / 1.7 / 1.8 0.18 ┣━━┻━━╋━━┻●━┫
microsoft/TypeScript-Website 5.09 5.2 / 5.3 / 5.5 0.17 ┣━●┻━━╋━━┻━━┫
MicrosoftDocs/PowerShell-Docs 23.91 20.3 / 21.6 / 24.2 1.84 ┣━━━┻━━━╋━━━┻●━━┫
neovim/nvim-lspconfig 5.11 5.0 / 5.1 / 5.3 0.15 ┣━━┻━━●━━┻━━┫
pagekit/pagekit 3.82 3.4 / 3.4 / 3.5 0.07 ┣━┻━╋━┻━┫ ●
php/php-src 23.99 23.1 / 23.7 / 24.3 0.52 ┣━━┻━━━╋━●━┻━━┫
plasticrake/tplink-smarthome-api 1.31 1.2 / 1.4 / 1.5 0.11 ┣━━┻━●╋━━┻━━┫
prettier/prettier 7.56 7.5 / 7.6 / 7.8 0.13 ┣━━┻━●╋━━┻━━┫
pycontribs/jira 1.14 1.4 / 1.4 / 1.5 0.05 ● ┣━┻━╋━┻━┫
RustPython/RustPython 6.80 6.1 / 6.2 / 6.4 0.12 ┣━┻━╋━┻━┫ ●
shoelace-style/shoelace 2.76 2.7 / 2.8 / 3.0 0.10 ┣━━┻●━╋━━┻━━┫
slint-ui/slint 13.77 13.4 / 13.5 / 13.6 0.06 ┣━━┻━╋━┻━━┫ ●
SoftwareBrothers/admin-bro 2.27 2.3 / 2.5 / 2.8 0.21 ┣━●┻━━╋━━┻━━┫
sveltejs/svelte 17.22 21.7 / 21.9 / 22.1 0.17 ● ┣┻┫
TheAlgorithms/Python 5.51 5.3 / 5.5 / 5.9 0.26 ┣━━┻━━●━━┻━━┫
twbs/bootstrap 1.75 1.7 / 1.7 / 1.7 0.02 ┣━┻━━╋━━┻━┫ ●
typescript-cheatsheets/react 1.34 1.3 / 1.4 / 1.5 0.10 ┣━━┻━●╋━━┻━━┫
typescript-eslint/typescript-eslint 4.12 3.9 / 4.0 / 4.1 0.11 ┣━━┻━━╋━━┻●━┫
vitest-dev/vitest 10.78 10.6 / 10.8 / 11.1 0.19 ┣━━┻━━●━━┻━━┫
w3c/aria-practices 3.24 3.3 / 3.3 / 3.4 0.05 ┣━●┻━━╋━━┻━━┫
w3c/specberus 1.86 1.9 / 1.9 / 2.0 0.06 ┣━●┻━━╋━━┻━━┫
webdeveric/webpack-assets-manifest 1.19 1.1 / 1.2 / 1.2 0.04 ┣━┻━━●━━┻━┫
webpack/webpack 5.55 5.1 / 5.3 / 5.6 0.23 ┣━━┻━━╋━━●━━┫
wireapp/wire-desktop 1.26 1.2 / 1.3 / 1.3 0.02 ┣━┻━━●━━┻━┫
wireapp/wire-webapp 9.02 11.5 / 11.7 / 11.9 0.16 ● ┣╋┫

Note:

  • Elapsed time is in seconds.
Files per Second over Time
Repository Files Sec Fps Rel Trend Fps N
AdaDoom3/AdaDoom3 103 2.80 36.81 -0.53% ▆██▇ 3
alexiosc/megistos 583 6.83 85.40 1.57% ▇▇▇█ 3
apollographql/apollo-server 255 2.61 97.54 -3.28% ▆▇█▅ 3
aspnetboilerplate/aspnetboilerplate 2286 6.67 342.64 32.61% ▂▃▃█ 3
aws-amplify/docs 2959 12.29 240.71 -6.93% █▃▂▃ 3
Azure/azure-rest-api-specs 2493 8.57 290.98 17.91% ▃▃▅█ 3
bitjson/typescript-starter 20 1.02 19.68 4.44% █▅▄▇ 3
caddyserver/caddy 311 2.67 116.47 28.40% ▂▃▃█ 3
canada-ca/open-source-logiciel-libre 7 1.07 6.52 -3.10% ▆█▅▅ 3
chef/chef 1030 4.66 221.20 -0.30% ▇█▅▆ 3
dart-lang/sdk 11367 57.40 198.02 0.54% ▇█▆█ 3
django/django 2906 13.66 212.68 1.50% ▆█▇█ 3
eslint/eslint 2068 9.84 210.25 -1.18% ▆█▇▇ 3
exonum/exonum 421 3.36 125.19 1.79% █▇▅█ 3
flutter/samples 1695 11.65 145.50 -12.74% ██▃▃ 3
gitbucket/gitbucket 415 3.16 131.17 -9.91% ▃▃█▂ 3
googleapis/google-cloud-cpp 20926 121.15 172.73 0.01% ██▇█ 3
graphql/express-graphql 26 1.12 23.32 -0.74% ▃▇█▆ 3
graphql/graphql-js 371 2.61 142.40 5.36% ▇▄▇█ 3
graphql/graphql-relay-js 28 1.07 26.23 1.30% ▇█▅▇ 3
graphql/graphql-spec 19 1.30 14.60 -1.86% ██▄▆ 3
iluwatar/java-design-patterns 2061 11.47 179.63 1.55% ██▆█ 3
ktaranov/sqlserver-kit 490 5.72 85.70 5.85% ▄▇▆█ 3
liriliri/licia 1437 3.77 381.11 2.13% ▆▆██ 3
MartinThoma/LaTeX-examples 1409 6.01 234.40 3.10% ▅█▇█ 3
mdx-js/mdx 140 1.90 73.70 -14.06% ▃▂█▂ 3
microsoft/TypeScript-Website 765 5.09 150.21 4.78% ▇▇▅█ 3
MicrosoftDocs/PowerShell-Docs 3125 23.91 130.68 0.44% ██▇█ 3
neovim/nvim-lspconfig 853 5.11 167.08 1.30% █▇▅▇ 3
pagekit/pagekit 741 3.82 193.89 -9.96% █▆▇▂ 3
php/php-src 2290 23.99 95.44 -0.71% ▆█▆▆ 3
plasticrake/tplink-smarthome-api 62 1.31 47.31 3.51% █▄▃▆ 3
prettier/prettier 2674 7.56 353.58 0.94% ▆███ 3
pycontribs/jira 80 1.14 70.00 26.00% ▃▄▂█ 3
RustPython/RustPython 788 6.80 115.90 -6.77% ▅██▄ 3
shoelace-style/shoelace 440 2.76 159.27 1.86% ▅█▇▇ 3
slint-ui/slint 2957 13.77 214.75 0.01% ▇▆█▇ 3
SoftwareBrothers/admin-bro 441 2.27 194.63 11.12% ▃▆██ 3
sveltejs/svelte 8742 17.22 507.55 27.53% ▂▃▃█ 3
TheAlgorithms/Python 1407 5.51 255.58 -0.35% ▄██▆ 3
twbs/bootstrap 118 1.75 67.51 -3.79% ▇▇█▅ 3
typescript-cheatsheets/react 53 1.34 39.63 3.11% ▃█▅▆ 3
typescript-eslint/typescript-eslint 1323 4.12 321.28 -3.29% █▇▅▅ 3
vitest-dev/vitest 2661 10.78 246.96 1.89% ▇▇▇█ 3
w3c/aria-practices 414 3.24 127.85 2.06% ▆▇██ 3
w3c/specberus 197 1.86 106.07 4.65% ▇▇▅█ 3
webdeveric/webpack-assets-manifest 55 1.19 46.14 0.16% █▅▆▆ 3
webpack/webpack 1158 5.55 208.83 -3.83% ▄██▅ 3
wireapp/wire-desktop 45 1.26 35.69 -0.24% ██▆▇ 3
wireapp/wire-webapp 2226 9.02 246.82 30.71% ▂▃▃█ 3
Data Throughput
Repository Files Sec Kps Rel Trend Kps N
AdaDoom3/AdaDoom3 103 2.80 782.20 -0.53% ▆██▇ 3
alexiosc/megistos 583 6.83 671.06 1.57% ▇▇▇█ 3
apollographql/apollo-server 255 2.61 805.53 -3.22% ▆▇█▅ 3
aspnetboilerplate/aspnetboilerplate 2286 6.67 833.68 32.61% ▂▃▃█ 3
aws-amplify/docs 2959 12.29 869.28 -5.18% █▃▂▃ 3
Azure/azure-rest-api-specs 2493 8.57 868.98 18.88% ▃▃▅█ 3
bitjson/typescript-starter 20 1.02 78.72 4.44% █▅▄▇ 3
caddyserver/caddy 311 2.67 1042.64 28.51% ▂▃▃█ 3
canada-ca/open-source-logiciel-libre 7 1.07 54.03 -3.10% ▆█▅▅ 3
chef/chef 1030 4.66 1080.22 2.38% ▆█▆█ 3
dart-lang/sdk 11367 57.40 1352.41 1.22% ▇█▇█ 3
django/django 2906 13.66 1354.38 1.81% ▆█▇█ 3
eslint/eslint 2068 9.84 1462.31 -1.09% ▆█▇▇ 3
exonum/exonum 421 3.36 1197.47 1.79% █▇▅█ 3
flutter/samples 1695 11.65 870.83 -33.55% ██▁▁ 3
gitbucket/gitbucket 415 3.16 608.44 -9.85% ▃▃█▂ 3
googleapis/google-cloud-cpp 20926 121.15 1474.13 0.57% ██▇█ 3
graphql/express-graphql 26 1.12 106.71 -0.74% ▃▇█▆ 3
graphql/graphql-js 371 2.61 843.66 6.12% ▇▄▇█ 3
graphql/graphql-relay-js 28 1.07 103.04 1.30% ▇█▅▇ 3
graphql/graphql-spec 19 1.30 487.12 -1.86% ██▄▆ 3
iluwatar/java-design-patterns 2061 11.47 553.70 1.56% ██▆█ 3
ktaranov/sqlserver-kit 490 5.72 1298.30 5.85% ▄▇▆█ 3
liriliri/licia 1437 3.77 454.05 2.13% ▆▆██ 3
MartinThoma/LaTeX-examples 1409 6.01 484.11 3.10% ▅█▇█ 3
mdx-js/mdx 140 1.90 345.32 -13.98% ▃▂█▂ 3
microsoft/TypeScript-Website 765 5.09 1034.57 4.17% ▇▇▅█ 3
MicrosoftDocs/PowerShell-Docs 3125 23.91 1394.11 1.60% ▇▇▇█ 3
neovim/nvim-lspconfig 853 5.11 487.54 6.80% ▅▄▆█ 3
pagekit/pagekit 741 3.82 404.25 -9.96% █▆▇▂ 3
php/php-src 2290 23.99 1677.55 -0.26% ▆█▆▇ 3
plasticrake/tplink-smarthome-api 62 1.31 255.64 3.51% █▄▃▆ 3
prettier/prettier 2674 7.56 485.55 0.87% ▆███ 3
pycontribs/jira 80 1.14 494.40 25.68% ▃▄▂█ 3
RustPython/RustPython 788 6.80 1849.48 -5.91% ▅▇█▄ 3
shoelace-style/shoelace 440 2.76 768.83 1.86% ▅█▇▇ 3
slint-ui/slint 2957 13.77 1339.62 -0.19% ▇▆█▇ 3
SoftwareBrothers/admin-bro 441 2.27 428.99 11.12% ▃▆██ 3
sveltejs/svelte 8742 17.22 344.41 27.47% ▂▃▃█ 3
TheAlgorithms/Python 1407 5.51 652.67 -0.35% ▄██▆ 3
twbs/bootstrap 118 1.75 554.42 -3.79% ▇▇█▅ 3
typescript-cheatsheets/react 53 1.34 293.84 3.11% ▃█▅▆ 3
typescript-eslint/typescript-eslint 1323 4.12 1737.52 -1.47% █▆▆▆ 3
vitest-dev/vitest 2661 10.78 779.95 3.92% ▆▆▇█ 3
w3c/aria-practices 414 3.24 1194.53 2.08% ▆▇██ 3
w3c/specberus 197 1.86 347.30 4.21% ▇▇▅█ 3
webdeveric/webpack-assets-manifest 55 1.19 105.70 0.16% █▅▆▆ 3
webpack/webpack 1158 5.55 1017.45 -1.56% ▄▇█▆ 3
wireapp/wire-desktop 45 1.26 157.05 -0.24% ██▆▇ 3
wireapp/wire-webapp 2226 9.02 1016.53 31.53% ▂▃▃█ 3

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.

0 participants