Skip to content

chore: bump the production-dependencies group across 1 directory with 4 updates#8836

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/production-dependencies-18290cac26
Closed

chore: bump the production-dependencies group across 1 directory with 4 updates#8836
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/production-dependencies-18290cac26

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

Bumps the production-dependencies group with 4 updates in the / directory: semver, react, jest-diff and react-dom.

Updates semver from 7.7.4 to 7.8.1

Release notes

Sourced from semver's releases.

v7.8.1

7.8.1 (2026-05-21)

Bug Fixes

v7.8.0

7.8.0 (2026-05-08)

Features

Bug Fixes

Documentation

Chores

Changelog

Sourced from semver's changelog.

7.8.1 (2026-05-21)

Bug Fixes

7.8.0 (2026-05-08)

Features

Bug Fixes

Documentation

Chores

Commits

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.1

Release notes

Sourced from jest-diff's releases.

v30.4.1

Features

  • [jest-config, jest-core, jest-runner, jest-schemas, jest-types] Allow custom runner configuration options via tuple format ['runner-path', {options}] (#16141)

Fixes

  • [jest-runtime] Align CJS-from-ESM default export with Node: module.exports is always the ESM default, __esModule unwrapping is no longer applied (#16143)

Full Changelog: jestjs/jest@v30.4.0...v30.4.1

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)

... (truncated)

Changelog

Sourced from jest-diff's changelog.

30.4.1

Features

  • [jest-config, jest-core, jest-runner, jest-schemas, jest-types] Allow custom runner configuration options via tuple format ['runner-path', {options}] (#16141)

Fixes

  • [jest-runtime] Align CJS-from-ESM default export with Node: module.exports is always the ESM default, __esModule unwrapping is no longer applied (#16143)

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)

... (truncated)

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 dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels May 14, 2026
@github-actions github-actions Bot added the chore label May 14, 2026
@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented May 14, 2026

Performance Report

Daily Performance
xychart-beta
    title Files Per Second by Day
    y-axis Files per Second
    x-axis Date [May-4, May-19, May-21]
    bar [186.25, 187.94, 201.47]
    line [35.07, 33.61, 34.83]
    line [140.01, 135.42, 141.27]
    line [53.38, 53.17, 69.25]
    line [38.18, 20.00, 21.69]
    line [46.04, 43.44, 42.91]
    line [71.11, 69.47, 64.83]
    line [100.08, 77.54, 82.59]
    line [81.26, 84.52, 84.55]
    line [191.37, 176.15, 185.90]
    line [166.55, 126.61, 130.12]
    line [119.17, 123.77, 121.84]
    line [17.95, 22.53, 24.96]
    line [24.56, 24.84, 25.14]
    line [24.93, 21.05, 23.70]
    line [91.75, 92.82, 95.14]
    line [102.79, 98.35, 96.44]
    line [382.99, 374.77, 367.17]
    line [158.32, 153.28, 152.48]
    line [13.72, 16.48, 12.71]
    line [6.46, 6.48, 7.11]
    line [229.32, 234.71, 215.13]
    line [189.78, 185.86, 241.93]
    line [240.52, 257.39, 258.24]
    line [37.38, 45.35, 36.12]
    line [218.55, 254.57, 239.48]
    line [127.00, 147.92, 125.17]
    line [215.39, 212.55, 227.25]
    line [226.51, 267.13, 291.71]
    line [353.58, 346.15, 360.40]
    line [160.29, 160.94, 164.50]
    line [213.17, 213.72, 213.12]
    line [129.13, 127.71, 132.56]
    line [94.12, 93.35, 121.12]
    line [138.03, 140.07, 147.76]
    line [213.15, 208.87, 211.35]
    line [84.38, 85.95, 82.97]
    line [321.24, 319.57, 304.82]
    line [41.81, 48.29, 48.69]
    line [126.81, 116.06, 113.04]
    line [144.52, 126.78, 129.38]
    line [263.11, 260.36, 261.19]
    line [172.93, 177.15, 158.12]
    line [258.73, 266.74, 257.71]
    line [97.37, 104.19, 93.27]
    line [263.28, 254.35, 249.52]
    line [403.25, 398.12, 393.78]
    line [209.84, 213.89, 267.18]
    line [222.86, 217.73, 212.96]
    line [193.68, 201.86, 181.92]
    line [170.59, 170.67, 222.04]
Loading
Time to Process Files
Repository Elapsed Min/Avg/Max SD SD Graph
AdaDoom3/AdaDoom3 2.85 2.2 / 2.4 / 2.8 0.23 ┣━━┻━━╋━━┻━━●
alexiosc/megistos 7.03 6.7 / 6.8 / 6.9 0.07 ┣━━┻━━╋━━┻━━┫ ●
apollographql/apollo-server 2.64 2.5 / 2.6 / 2.6 0.06 ┣━━┻━━╋━━┻━●┫
aspnetboilerplate/aspnetboilerplate 9.16 8.7 / 8.9 / 9.2 0.20 ┣━━━┻━━╋━━┻━●━┫
aws-amplify/docs 10.14 10.1 / 11.8 / 13.1 1.27 ┣━━●┻━━━╋━━━┻━━━┫
Azure/azure-rest-api-specs 9.69 9.3 / 9.5 / 9.6 0.13 ┣━━━┻━━╋━━┻━━●┫
bitjson/typescript-starter 0.80 0.8 / 1.0 / 1.1 0.13 ┣━●┻━━╋━━┻━━┫
caddyserver/caddy 3.29 3.4 / 3.4 / 3.4 0.02 ● ┣━┻━╋━┻━┫
canada-ca/open-source-logiciel-libre 0.99 1.0 / 1.1 / 1.1 0.05 ●━━┻━━╋━━┻━━┫
chef/chef 4.88 4.8 / 4.9 / 4.9 0.05 ┣━━┻━●╋━━┻━━┫
dart-lang/sdk 62.64 55.7 / 57.2 / 58.7 1.21 ┣━━┻━╋━┻━━┫ ●
django/django 10.90 13.4 / 13.7 / 13.8 0.21 ● ┣┻╋┻┫
eslint/eslint 9.72 9.5 / 9.7 / 9.9 0.17 ┣━━━┻━━●━━┻━━━┫
exonum/exonum 3.46 3.3 / 3.4 / 3.5 0.08 ┣━━┻━━●━━┻━━┫
flutter/samples 13.10 11.7 / 12.8 / 13.6 0.79 ┣━━┻━━━╋●━━┻━━┫
gitbucket/gitbucket 3.20 2.5 / 3.0 / 3.4 0.40 ┣━━━┻━━╋●━┻━━━┫
googleapis/google-cloud-cpp 94.24 121.9 / 122.6 / 123.3 0.56 ● ┫
graphql/express-graphql 1.10 1.0 / 1.2 / 1.3 0.10 ┣━━┻●━╋━━┻━━┫
graphql/graphql-js 2.63 2.6 / 2.7 / 2.9 0.10 ┣━━●━━╋━━┻━━┫
graphql/graphql-relay-js 1.11 1.1 / 1.1 / 1.2 0.02 ┣━┻●━╋━━┻━┫
graphql/graphql-spec 1.49 1.0 / 1.2 / 1.4 0.16 ┣━━┻━━╋━━┻━●┫
iluwatar/java-design-patterns 13.03 11.5 / 11.7 / 11.9 0.15 ┣┻╋┻┫ ●
ktaranov/sqlserver-kit 5.80 5.7 / 5.9 / 6.0 0.13 ┣━━┻●━╋━━┻━━┫
liriliri/licia 3.92 3.8 / 3.8 / 3.9 0.07 ┣━━┻━━╋━━┻━●┫
MartinThoma/LaTeX-examples 6.55 5.9 / 6.1 / 6.1 0.11 ┣━━┻━╋━┻━━┫ ●
mdx-js/mdx 1.70 1.4 / 1.7 / 1.9 0.21 ┣━━┻━━●━━┻━━┫
microsoft/TypeScript-Website 5.18 5.3 / 5.5 / 5.6 0.11 ● ┣━━┻━━╋━━┻━━┫
MicrosoftDocs/PowerShell-Docs 23.58 24.0 / 24.4 / 25.0 0.44 ●━━┻━━━╋━━━┻━━┫
neovim/nvim-lspconfig 5.21 5.3 / 5.3 / 5.4 0.05 ●┣━━┻━━╋━━┻━━┫
pagekit/pagekit 3.26 3.4 / 3.5 / 3.6 0.07 ● ┣━━┻━━╋━━┻━━┫
php/php-src 18.91 23.6 / 24.5 / 25.6 0.84 ● ┣┻━╋━┻┫
plasticrake/tplink-smarthome-api 1.27 1.3 / 1.4 / 1.5 0.09 ┣━━┻●━╋━━┻━━┫
prettier/prettier 7.42 7.6 / 7.7 / 7.7 0.08 ● ┣━━┻━━╋━━┻━━┫
pycontribs/jira 1.16 1.4 / 1.5 / 1.6 0.07 ● ┣━┻━╋━┻━┫
RustPython/RustPython 6.89 6.2 / 6.5 / 6.7 0.24 ┣━━━┻━━╋━━┻━●━┫
shoelace-style/shoelace 2.89 2.8 / 2.8 / 3.0 0.10 ┣━━┻━━╋●━┻━━┫
slint-ui/slint 13.21 11.3 / 12.9 / 13.8 1.12 ┣━━━┻━━━╋●━━┻━━━┫
SoftwareBrothers/admin-bro 2.37 2.3 / 2.4 / 2.6 0.11 ┣━━┻●━╋━━┻━━┫
sveltejs/svelte 22.31 21.6 / 21.9 / 22.5 0.40 ┣━━┻━━━╋━━●┻━━┫
TheAlgorithms/Python 5.39 5.2 / 5.4 / 5.6 0.15 ┣━━┻━━●━━┻━━┫
twbs/bootstrap 1.82 1.7 / 1.7 / 1.7 0.02 ┣┻━╋━┻┫ ●
typescript-cheatsheets/react 1.11 1.1 / 1.3 / 1.4 0.10 ┣●━┻━━╋━━┻━━┫
typescript-eslint/typescript-eslint 4.34 4.0 / 4.1 / 4.3 0.13 ┣━━┻━━╋━━┻━●┫
vitest-dev/vitest 10.40 10.4 / 10.6 / 11.1 0.30 ┣━━━●━━╋━━┻━━━┫
w3c/aria-practices 3.31 2.5 / 3.0 / 3.3 0.36 ┣━━━┻━━╋━━●━━━┫
w3c/specberus 2.10 1.8 / 1.9 / 2.0 0.09 ┣━━┻━━╋━━┻━━●
webdeveric/webpack-assets-manifest 1.28 1.2 / 1.2 / 1.4 0.08 ┣━━┻━━╋●━┻━━┫
webpack/webpack 5.49 5.2 / 5.3 / 5.4 0.08 ┣━━┻━━╋━━┻━━┫●
wireapp/wire-desktop 1.29 1.3 / 1.3 / 1.4 0.07 ┣━━┻━●╋━━┻━━┫
wireapp/wire-webapp 9.24 11.7 / 11.9 / 12.2 0.19 ● ┣╋┫

Note:

  • Elapsed time is in seconds.
Files per Second over Time
Repository Files Sec Fps Rel Trend Fps N
AdaDoom3/AdaDoom3 103 2.85 36.12 -15.41% ▃▇█▂ 3
alexiosc/megistos 583 7.03 82.97 -2.87% ▇██▆ 3
apollographql/apollo-server 255 2.64 96.44 -3.40% █▆▅▅ 3
aspnetboilerplate/aspnetboilerplate 2286 9.16 249.52 -3.03% █▅▇▅ 3
aws-amplify/docs 2959 10.14 291.71 15.03% ▂▄██ 3
Azure/azure-rest-api-specs 2497 9.69 257.71 -2.41% ▆██▆ 3
bitjson/typescript-starter 20 0.80 24.96 18.87% ▂█▄█ 3
caddyserver/caddy 313 3.29 95.14 2.89% ▆▆▇█ 3
canada-ca/open-source-logiciel-libre 7 0.99 7.11 9.73% ▅▃▇█ 3
chef/chef 1032 4.88 211.35 0.50% █▇▇█ 3
dart-lang/sdk 11396 62.64 181.92 -8.64% ▅▇█▂ 3
django/django 2912 10.90 267.18 25.71% ▃▃▃█ 3
eslint/eslint 2072 9.72 213.12 -0.19% ▇█▆▇ 3
exonum/exonum 421 3.46 121.84 -0.33% ▅▆█▆ 3
flutter/samples 1695 13.10 129.38 -2.50% █▄▃▅ 3
gitbucket/gitbucket 417 3.20 130.12 -7.00% █▄▂▃ 3
googleapis/google-cloud-cpp 20926 94.24 222.04 30.12% ▂▂▃█ 3
graphql/express-graphql 26 1.10 23.70 6.08% █▅▃▇ 3
graphql/graphql-js 371 2.63 141.27 3.16% ██▅█ 3
graphql/graphql-relay-js 28 1.11 25.14 1.58% ▆▆██ 3
graphql/graphql-spec 19 1.49 12.71 -18.30% ▂▃█▁ 3
iluwatar/java-design-patterns 2061 13.03 158.12 -10.03% ▆▇█▁ 3
ktaranov/sqlserver-kit 490 5.80 84.55 1.33% ▅█▆▇ 3
liriliri/licia 1438 3.92 367.17 -2.74% █▆█▆ 3
MartinThoma/LaTeX-examples 1409 6.55 215.13 -7.64% ▆▆█▃ 3
mdx-js/mdx 140 1.70 82.59 -2.89% █▂▄▄ 3
microsoft/TypeScript-Website 765 5.18 147.76 6.01% ▅▇▅█ 3
MicrosoftDocs/PowerShell-Docs 3126 23.58 132.56 3.41% ▇▅▇█ 3
neovim/nvim-lspconfig 857 5.21 164.50 2.35% ▇▆██ 3
pagekit/pagekit 741 3.26 227.25 6.44% ▆▄▆█ 3
php/php-src 2290 18.91 121.12 29.39% ▃▂▄█ 3
plasticrake/tplink-smarthome-api 62 1.27 48.69 5.55% ▃███ 3
prettier/prettier 2674 7.42 360.40 3.38% ▇▆▆█ 3
pycontribs/jira 80 1.16 69.25 30.06% ▃▂▄█ 3
RustPython/RustPython 779 6.89 113.04 -5.52% █▄▅▄ 3
shoelace-style/shoelace 440 2.89 152.48 -1.60% ██▅▆ 3
slint-ui/slint 3164 13.21 239.48 -1.27% ▂█▃▄ 3
SoftwareBrothers/admin-bro 441 2.37 185.90 2.58% █▆▄▇ 3
sveltejs/svelte 8784 22.31 393.78 -1.51% ██▆▆ 3
TheAlgorithms/Python 1407 5.39 261.19 -0.03% ▇█▅▇ 3
twbs/bootstrap 118 1.82 64.83 -7.41% █▇▆▃ 3
typescript-cheatsheets/react 24 1.11 21.69 -16.78% █▂▁▂ 3
typescript-eslint/typescript-eslint 1322 4.34 304.82 -4.78% ▇▅█▄ 3
vitest-dev/vitest 2685 10.40 258.24 2.57% ▅▇██ 3
w3c/aria-practices 414 3.31 125.17 -11.19% ▂▃█▂ 3
w3c/specberus 196 2.10 93.27 -8.49% ▄█▅▃ 3
webdeveric/webpack-assets-manifest 55 1.28 42.91 -3.15% ██▃▅ 3
webpack/webpack 1169 5.49 212.96 -2.95% █▆▇▅ 3
wireapp/wire-desktop 45 1.29 34.83 2.15% ██▄▇ 3
wireapp/wire-webapp 2236 9.24 241.93 29.26% ▃▃▂█ 3
Data Throughput
Repository Files Sec Kps Rel Trend Kps N
AdaDoom3/AdaDoom3 103 2.85 767.60 -15.41% ▃▇█▂ 3
alexiosc/megistos 583 7.03 651.98 -2.87% ▇██▆ 3
apollographql/apollo-server 255 2.64 796.84 -3.38% █▆▅▅ 3
aspnetboilerplate/aspnetboilerplate 2286 9.16 607.10 -3.03% █▅▇▅ 3
aws-amplify/docs 2959 10.14 1054.85 15.08% ▂▄██ 3
Azure/azure-rest-api-specs 2497 9.69 771.58 -2.33% ▆██▆ 3
bitjson/typescript-starter 20 0.80 99.85 18.87% ▂█▄█ 3
caddyserver/caddy 313 3.29 850.47 2.85% ▆▆▇█ 3
canada-ca/open-source-logiciel-libre 7 0.99 58.88 9.73% ▅▃▇█ 3
chef/chef 1032 4.88 1034.83 0.59% █▇▇█ 3
dart-lang/sdk 11396 62.64 1243.49 -8.62% ▅▇█▂ 3
django/django 2912 10.90 1713.35 26.00% ▂▃▃█ 3
eslint/eslint 2072 9.72 1482.62 -0.19% ▇█▆▇ 3
exonum/exonum 421 3.46 1165.45 -0.33% ▅▆█▆ 3
flutter/samples 1695 13.10 774.37 -2.50% █▄▃▅ 3
gitbucket/gitbucket 417 3.20 620.35 -6.00% █▄▂▄ 3
googleapis/google-cloud-cpp 20926 94.24 1895.03 30.12% ▂▂▃█ 3
graphql/express-graphql 26 1.10 108.48 6.08% █▅▃▇ 3
graphql/graphql-js 371 2.63 836.96 3.16% ██▅█ 3
graphql/graphql-relay-js 28 1.11 98.76 1.58% ▆▆██ 3
graphql/graphql-spec 19 1.49 424.13 -18.30% ▂▃█▁ 3
iluwatar/java-design-patterns 2061 13.03 487.41 -10.03% ▆▇█▁ 3
ktaranov/sqlserver-kit 490 5.80 1280.80 1.33% ▅█▆▇ 3
liriliri/licia 1438 3.92 438.16 -2.68% █▆█▆ 3
MartinThoma/LaTeX-examples 1409 6.55 444.30 -7.64% ▆▆█▃ 3
mdx-js/mdx 140 1.70 386.43 -2.95% █▂▄▄ 3
microsoft/TypeScript-Website 765 5.18 1017.71 6.01% ▅▇▅█ 3
MicrosoftDocs/PowerShell-Docs 3126 23.58 1412.48 3.37% ▇▅▇█ 3
neovim/nvim-lspconfig 857 5.21 482.19 2.51% ▆▆██ 3
pagekit/pagekit 741 3.26 473.82 6.44% ▆▄▆█ 3
php/php-src 2290 18.91 2130.23 29.42% ▃▂▄█ 3
plasticrake/tplink-smarthome-api 62 1.27 263.09 5.55% ▃███ 3
prettier/prettier 2674 7.42 494.91 3.38% ▇▆▆█ 3
pycontribs/jira 80 1.16 489.08 30.06% ▃▂▄█ 3
RustPython/RustPython 779 6.89 1925.50 -3.36% █▆▇▅ 3
shoelace-style/shoelace 440 2.89 736.40 -1.58% ██▅▆ 3
slint-ui/slint 3164 13.21 1250.83 -6.72% ▆█▃▄ 3
SoftwareBrothers/admin-bro 441 2.37 409.75 2.58% █▆▄▇ 3
sveltejs/svelte 8784 22.31 267.18 -1.52% ██▆▆ 3
TheAlgorithms/Python 1407 5.39 666.98 -0.03% ▇█▅▇ 3
twbs/bootstrap 118 1.82 532.41 -7.41% █▇▆▃ 3
typescript-cheatsheets/react 24 1.11 195.18 -8.95% █▃▂▃ 3
typescript-eslint/typescript-eslint 1322 4.34 1649.97 -4.75% ▇▅█▄ 3
vitest-dev/vitest 2685 10.40 667.97 -4.17% █▄▄▄ 3
w3c/aria-practices 414 3.31 1169.50 -11.19% ▂▃█▂ 3
w3c/specberus 196 2.10 304.07 -8.61% ▄█▅▂ 3
webdeveric/webpack-assets-manifest 55 1.28 98.31 -3.15% ██▃▅ 3
webpack/webpack 1169 5.49 1071.73 -1.89% ▇██▆ 3
wireapp/wire-desktop 45 1.29 153.26 2.15% ██▄▇ 3
wireapp/wire-webapp 2236 9.24 1010.79 29.88% ▃▃▂█ 3

@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/production-dependencies-18290cac26 branch from 49d01bd to e091940 Compare May 21, 2026 23:17
@Jason3S
Copy link
Copy Markdown
Collaborator

Jason3S commented May 23, 2026

@dependabot recreate

… 4 updates

Bumps the production-dependencies group with 4 updates in the / directory: [semver](https://github.com/npm/node-semver), [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 `semver` from 7.7.4 to 7.8.1
- [Release notes](https://github.com/npm/node-semver/releases)
- [Changelog](https://github.com/npm/node-semver/blob/main/CHANGELOG.md)
- [Commits](npm/node-semver@v7.7.4...v7.8.1)

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.1
- [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.1/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: jest-diff
  dependency-version: 30.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-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: react-dom
  dependency-version: 19.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: semver
  dependency-version: 7.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/production-dependencies-18290cac26 branch from e091940 to 50df75c Compare May 23, 2026 15:33
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github May 23, 2026

Looks like these dependencies are no longer updatable, so this is no longer needed.

@dependabot dependabot Bot closed this May 23, 2026
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/production-dependencies-18290cac26 branch May 23, 2026 15:38
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