Skip to content

Bump the minor-updates group across 1 directory with 26 updates #731

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 5, 2025

Bumps the minor-updates group with 26 updates in the / directory:

Package From To
lerna 8.1.3 8.2.2
prettier 3.3.0 3.5.3
ava 6.1.3 6.3.0
eslint-plugin-prettier 5.1.3 5.3.1
typescript 5.4.5 5.8.3
@types/jsonwebtoken 9.0.6 9.0.9
dataloader 2.2.2 2.2.3
graphql 16.8.1 16.11.0
graphql-relay 0.10.1 0.10.2
pg 8.11.5 8.15.6
@types/pg 8.11.6 8.11.14
@types/http-proxy 1.17.14 1.17.16
@types/node-fetch 2.6.11 2.6.12
@tanstack/react-query 5.40.0 5.75.2
html-webpack-plugin 5.6.0 5.6.3
eslint-plugin-react 7.34.2 7.37.5
saml2-js 4.0.2 4.0.3
@graphiql/react 0.22.0 0.31.0
@graphiql/toolkit 0.9.1 0.11.1
css-loader 7.1.1 7.1.2
fork-ts-checker-webpack-plugin 9.0.2 9.1.0
graphql-config 5.0.3 5.1.5
html-loader 5.0.0 5.1.0
mini-css-extract-plugin 2.9.0 2.9.2
ts-loader 9.5.1 9.5.2
webpack 5.94.0 5.99.7

Updates lerna from 8.1.3 to 8.2.2

Release notes

Sourced from lerna's releases.

v8.2.2

8.2.2 (2025-04-10)

Bug Fixes

  • use searchStrategy: global to fix breaking change behaviour after upgrading cosmiconfig to 9.0.0 (#4159) (6242511)
  • version: disable legacy peer deps behavior by default (#4175) (0cd3241)

v8.2.1

8.2.1 (2025-03-03)

Note: Version bump only for package lerna-monorepo

v8.2.0

8.2.0 (2025-02-19)

Bug Fixes

  • drop strip-ansi in favor of native stripVTControlCharacters (#4095) (9e4ac9c)

Features

  • allow custom working dir for detectProjects (#4148) (08d1d0d)

v8.1.9

8.1.9 (2024-10-31)

Bug Fixes

Features

  • publish: support full file path for --summary-file (#4039) (cfd573a)

v8.1.8

8.1.8 (2024-08-05)

Bug Fixes

  • publish: upgrade @​npmcli/arborist to 7.5.4 (#4058) (89de0eb)

... (truncated)

Changelog

Sourced from lerna's changelog.

8.2.2 (2025-04-10)

Note: Version bump only for package lerna

8.2.1 (2025-03-03)

Note: Version bump only for package lerna

8.2.0 (2025-02-19)

Bug Fixes

  • drop strip-ansi in favor of native stripVTControlCharacters (#4095) (9e4ac9c)

Features

  • allow custom working dir for detectProjects (#4148) (08d1d0d)

8.1.9 (2024-10-31)

Bug Fixes

8.1.8 (2024-08-05)

Bug Fixes

  • publish: upgrade @​npmcli/arborist to 7.5.4 (#4058) (89de0eb)

8.1.7 (2024-07-21)

Bug Fixes

8.1.6 (2024-07-05)

Bug Fixes

8.1.5 (2024-06-24)

Bug Fixes

  • update npm utility dependencies and related packages (#4033) (bd1c2d8)

... (truncated)

Commits
  • 6ea835d chore(misc): publish 8.2.2
  • 95ab1cb chore(misc): publish 8.2.1
  • 770220c chore(deps): bump @​octokit/rest from 19.0.11 to 20.1.2 (#4154)
  • 58cdfec chore(misc): publish 8.2.0
  • 08d1d0d feat: allow custom working dir for detectProjects (#4148)
  • 0dd2cb9 chore: update to latest dependencies (#4151)
  • 9e4ac9c fix: drop strip-ansi in favor of native stripVTControlCharacters (#4095)
  • 7d1338d chore(misc): publish 8.1.9
  • cb37f19 fix: update nx support to latest v20 (#4103)
  • 28c8ef2 fix: add extends property in schema (#4075)
  • Additional commits viewable in compare view

Updates prettier from 3.3.0 to 3.5.3

Release notes

Sourced from prettier's releases.

3.5.3

🔗 Changelog

3.5.2

🔗 Changelog

3.5.1

🔗 Changelog

3.5.0

diff

🔗 Release note

3.4.2

🔗 Changelog

3.4.1

🔗 Changelog

3.4.0

diff

🔗 Release note

3.3.3

🔗 Changelog

3.3.2

🔗 Changelog

3.3.1

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.5.3

diff

Flow: Fix missing parentheses in ConditionalTypeAnnotation (#17196 by @​fisker)

// Input
type T<U> = 'a' | ('b' extends U ? 'c' : empty);
type T<U> = 'a' & ('b' extends U ? 'c' : empty);
// Prettier 3.5.2
type T<U> = "a" | "b" extends U ? "c" : empty;
type T<U> = "a" & "b" extends U ? "c" : empty;
// Prettier 3.5.3
type T<U> = "a" | ("b" extends U ? "c" : empty);
type T<U> = "a" & ("b" extends U ? "c" : empty);

3.5.2

diff

Remove module-sync condition (#17156 by @​fisker)

In Prettier 3.5.0, we added module-sync condition to package.json, so that require("prettier") can use ESM version, but turns out it doesn't work if CommonJS and ESM plugins both imports builtin plugins. To solve this problem, we decide simply remove the module-sync condition, so require("prettier") will still use the CommonJS version, we'll revisit until require(ESM) feature is more stable.

3.5.1

diff

Fix CLI crash when cache for old version exists (#17100 by @​sosukesuzuki)

Prettier 3.5 uses a different cache format than previous versions, Prettier 3.5.0 crashes when reading existing cache file, Prettier 3.5.1 fixed the problem.

Support dockercompose and github-actions-workflow in VSCode (#17101 by @​remcohaszing)

Prettier now supports the dockercompose and github-actions-workflow languages in Visual Studio Code.

3.5.0

diff

🔗 Release Notes

3.4.2

diff

... (truncated)

Commits

Updates ava from 6.1.3 to 6.3.0

Release notes

Sourced from ava's releases.

v6.3.0

What's Changed

New Contributors

Full Changelog: avajs/ava@v6.2.0...v6.3.0

v6.2.0

What's Changed

New Contributors

Full Changelog: avajs/ava@v6.1.3...v6.2.0

Commits
  • ca4240d 6.3.0
  • f243cab Do not count writes to stdout/stderr as non-idling activity for timeouts
  • 4abb780 Update dependencies
  • 024de32 6.2.0
  • 563fa5f Pre-release updates
  • e5b355d Link to CLI options to clarify how to run tests in separate processes
  • 86185b4 Add filterNodeArgumentsForWorkerThreads option
  • b15df53 Update dependencies & other general maintenance
  • See full diff in compare view

Updates eslint-plugin-prettier from 5.1.3 to 5.3.1

Release notes

Sourced from eslint-plugin-prettier's releases.

v5.3.1

Patch Changes

Full Changelog: prettier/eslint-plugin-prettier@v5.3.0...v5.3.1

v5.3.0

Minor Changes

New Contributors

Full Changelog: prettier/eslint-plugin-prettier@v5.2.6...v5.3.0

v5.2.6

Patch Changes

Full Changelog: prettier/eslint-plugin-prettier@v5.2.5...v5.2.6

v5.2.5

Patch Changes

Full Changelog: prettier/eslint-plugin-prettier@v5.2.4...v5.2.5

v5.2.4

Patch Changes

Full Changelog: prettier/eslint-plugin-prettier@v5.2.3...v5.2.4

v5.2.3

Patch Changes

Full Changelog: prettier/eslint-plugin-prettier@v5.2.2...v5.2.3

v5.2.2

Patch Changes

... (truncated)

Changelog

Sourced from eslint-plugin-prettier's changelog.

5.3.1

Patch Changes

5.3.0

Minor Changes

5.2.6

Patch Changes

5.2.5

Patch Changes

5.2.4

Patch Changes

5.2.3

Patch Changes

5.2.2

Patch Changes

5.2.1

Patch Changes

5.2.0

... (truncated)

Commits
  • 5eaf8fd chore: release eslint-plugin-prettier (#735)
  • dcf2c80 ci: enable autofix.ci and pkg-pr-new workflows (#734)
  • 3247172 chore: release eslint-plugin-prettier (#733)
  • 6fe0c90 feat: prefer Config over FlatConfig when they're equal (#674)
  • 9e37575 chore: migrate @typedefjsdoc to @import (#729)
  • 27030dd chore(deps): update all dependencies (#727)
  • fa9607e chore: release eslint-plugin-prettier (#724)
  • 1451176 fix(deps): update all dependencies (#723)
  • 1914ea8 chore: ignore pnpm for compatibility reason
  • b2e195c chore: release eslint-plugin-prettier (#722)
  • Additional commits viewable in compare view

Updates typescript from 5.4.5 to 5.8.3

Release notes

Sourced from typescript's releases.

TypeScript 5.8.3

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8 RC

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8 Beta

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.7.3

For release notes, check out the release announcement.

Downloads are available on npm

TypeScript 5.7

For release notes, check out the release announcement.

... (truncated)

Commits
  • 83dc0bb Convert release publishing inputs into parameters (#61523)
  • ba663f6 Exclude completions of binding pattern variable initializers (#52723)
  • 7205eda Bump github/codeql-action from 3.28.12 to 3.28.13 in the github-actions group...
  • 89c572c Fixed a symbol display crash on expando members write locations (#55478)
  • 7b26d2e Fix incorrect name in new release pipeline (#61514)
  • c7a559e Add new release publisher yaml (#61491)
  • 29e6d66 Fix lib.includes('dom') check in containerSeemsToBeEmptyDomElement (#61481)
  • 19b7772 Bump the github-actions group with 4 updates (#61474)
  • 4dc677b Fix errors on type assertions in erasableSyntaxOnly (#61452)
  • ee3dd72 fix(60908): Unexpected "'Type' is declared but its value is never read." erro...
  • Additional commits viewable in compare view

Updates @types/jsonwebtoken from 9.0.6 to 9.0.9

Commits

Updates dataloader from 2.2.2 to 2.2.3

Release notes

Sourced from dataloader's releases.

v2.2.3

What's Changed

New Contributors

Full Changelog: graphql/dataloader@v2.2.2...v2.2.3

Changelog

Sourced from dataloader's changelog.

2.2.3

Patch Changes

  • #342 38fedd4 Thanks @​abendi! - Ensure cacheKeyFn is not called when caching is disabled, since the key is not utilized in that case.
Commits
  • 5e851ce chore: update release instructions
  • 35729a6 ci: update codecov to use token (#370)
  • f65532e ci: update node versions to run test on
  • f8cfc4d Bump word-wrap from 1.2.3 to 1.2.4 (#345)
  • 77c2cd7 Update Green Donut link (#361)
  • 38fedd4 perf: call cacheKeyFn only when it is needed (if caching) (#342)
  • 18da9f3 Synchronized linting in README.md (#358)
  • 003c045 Update readme badge to use GitHub CI instead of unused Travis (#352)
  • 55c33d4 Fix correct path of function when click on mobile links (#351)
  • d336bd1 Bump minimatch from 3.0.4 to 3.1.2 (#324)
  • Additional commits viewable in compare view

Updates graphql from 16.8.1 to 16.11.0

Release notes

Sourced from graphql's releases.

16.11.0

v16.11.0 (2025-04-26)

New Feature 🚀

Bug Fix 🐞

Docs 📝

Polish 💅

Internal 🏠

Committers: 8

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by jdecroock, a new releaser for graphql since your current version.


Updates graphql-relay from 0.10.1 to 0.10.2

Release notes

Sourced from graphql-relay's releases.

v0.10.2 (2024-07-11)

Bug Fix 🐞

Docs 📝

Committers: 2

Commits

Updates pg from 8.11.5 to 8.15.6

Changelog

Sourced from pg's changelog.

All major and minor releases are briefly explained below.

For richer information consult the commit log on github with referenced pull requests.

We do not include break-fix version release in this file.

[email protected]

  • Add support for esm importing. CommonJS importing is still also supported.

[email protected]

[email protected]

[email protected]

[email protected]

  • Emit release event when client is returned to the pool.

[email protected]

[email protected]

[email protected]

[email protected]

  • Add optional config to pool to allow process to exit if pool is idle.

[email protected]

... (truncated)

Commits

Updates @types/pg from 8.11.6 to 8.11.14

Commits

Updates @types/http-proxy from 1.17.14 to 1.17.16

Commits

Updates @types/node-fetch from 2.6.11 to 2.6.12

Commits

Updates @tanstack/react-query from 5.40.0 to 5.75.2

Release notes

Sourced from @​tanstack/react-query's releases.

v5.75.2

Version 5.75.2 - 5/4/25, 8:14 AM

Changes

Fix

  • (query-broadcast-client-experimental) - removing query from one tab doesn"t remove it from all tabs (#9017) (674f83e) by gopnik5

Chore

  • react-query: isRestoring -> IsRestoreProvider like QueryClientProvider (#8717) (91b75a9) by @​manudeli

Test

  • react-query: add test case for useSuspenseQuery (#8731) (18af643) by MINSEONG KIM

Packages

  • @​tanstack/query-broadcast-client-experimental@​5.75.2
  • @​tanstack/react-query@​5.75.2
  • @​tanstack/react-query-devtools@​5.75.2
  • @​tanstack/react-query-persist-client@​5.75.2
  • @​tanstack/react-query-next-experimental@​5.75.2

v5.75.1

Version 5.75.1 - 5/2/25, 11:19 AM

Changes

Fix

  • vue-query: reorder queryOptions and useQuery function overloads to fix type inference (#9088) (a535a46) by @​romansp

Test

  • react-query: use fake timers for useQuery.test.tsx (#9086) (df8e02b) by

Bumps the minor-updates group with 26 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [lerna](https://github.com/lerna/lerna/tree/HEAD/packages/lerna) | `8.1.3` | `8.2.2` |
| [prettier](https://github.com/prettier/prettier) | `3.3.0` | `3.5.3` |
| [ava](https://github.com/avajs/ava) | `6.1.3` | `6.3.0` |
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | `5.1.3` | `5.3.1` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.4.5` | `5.8.3` |
| [@types/jsonwebtoken](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jsonwebtoken) | `9.0.6` | `9.0.9` |
| [dataloader](https://github.com/graphql/dataloader) | `2.2.2` | `2.2.3` |
| [graphql](https://github.com/graphql/graphql-js) | `16.8.1` | `16.11.0` |
| [graphql-relay](https://github.com/graphql/graphql-relay-js) | `0.10.1` | `0.10.2` |
| [pg](https://github.com/brianc/node-postgres/tree/HEAD/packages/pg) | `8.11.5` | `8.15.6` |
| [@types/pg](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/pg) | `8.11.6` | `8.11.14` |
| [@types/http-proxy](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/http-proxy) | `1.17.14` | `1.17.16` |
| [@types/node-fetch](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node-fetch) | `2.6.11` | `2.6.12` |
| [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `5.40.0` | `5.75.2` |
| [html-webpack-plugin](https://github.com/jantimon/html-webpack-plugin) | `5.6.0` | `5.6.3` |
| [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) | `7.34.2` | `7.37.5` |
| [saml2-js](https://github.com/Clever/saml2) | `4.0.2` | `4.0.3` |
| [@graphiql/react](https://github.com/graphql/graphiql/tree/HEAD/packages/graphiql-react) | `0.22.0` | `0.31.0` |
| [@graphiql/toolkit](https://github.com/graphql/graphiql/tree/HEAD/packages/graphiql-toolkit) | `0.9.1` | `0.11.1` |
| [css-loader](https://github.com/webpack-contrib/css-loader) | `7.1.1` | `7.1.2` |
| [fork-ts-checker-webpack-plugin](https://github.com/TypeStrong/fork-ts-checker-webpack-plugin) | `9.0.2` | `9.1.0` |
| [graphql-config](https://github.com/kamilkisiela/graphql-config) | `5.0.3` | `5.1.5` |
| [html-loader](https://github.com/webpack-contrib/html-loader) | `5.0.0` | `5.1.0` |
| [mini-css-extract-plugin](https://github.com/webpack-contrib/mini-css-extract-plugin) | `2.9.0` | `2.9.2` |
| [ts-loader](https://github.com/TypeStrong/ts-loader) | `9.5.1` | `9.5.2` |
| [webpack](https://github.com/webpack/webpack) | `5.94.0` | `5.99.7` |



Updates `lerna` from 8.1.3 to 8.2.2
- [Release notes](https://github.com/lerna/lerna/releases)
- [Changelog](https://github.com/lerna/lerna/blob/main/packages/lerna/CHANGELOG.md)
- [Commits](https://github.com/lerna/lerna/commits/v8.2.2/packages/lerna)

Updates `prettier` from 3.3.0 to 3.5.3
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.3.0...3.5.3)

Updates `ava` from 6.1.3 to 6.3.0
- [Release notes](https://github.com/avajs/ava/releases)
- [Commits](avajs/ava@v6.1.3...v6.3.0)

Updates `eslint-plugin-prettier` from 5.1.3 to 5.3.1
- [Release notes](https://github.com/prettier/eslint-plugin-prettier/releases)
- [Changelog](https://github.com/prettier/eslint-plugin-prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/eslint-plugin-prettier@v5.1.3...v5.3.1)

Updates `typescript` from 5.4.5 to 5.8.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](microsoft/TypeScript@v5.4.5...v5.8.3)

Updates `@types/jsonwebtoken` from 9.0.6 to 9.0.9
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jsonwebtoken)

Updates `dataloader` from 2.2.2 to 2.2.3
- [Release notes](https://github.com/graphql/dataloader/releases)
- [Changelog](https://github.com/graphql/dataloader/blob/main/CHANGELOG.md)
- [Commits](graphql/dataloader@v2.2.2...v2.2.3)

Updates `graphql` from 16.8.1 to 16.11.0
- [Release notes](https://github.com/graphql/graphql-js/releases)
- [Commits](graphql/graphql-js@v16.8.1...v16.11.0)

Updates `graphql-relay` from 0.10.1 to 0.10.2
- [Release notes](https://github.com/graphql/graphql-relay-js/releases)
- [Commits](graphql/graphql-relay-js@v0.10.1...v0.10.2)

Updates `pg` from 8.11.5 to 8.15.6
- [Changelog](https://github.com/brianc/node-postgres/blob/master/CHANGELOG.md)
- [Commits](https://github.com/brianc/node-postgres/commits/[email protected]/packages/pg)

Updates `@types/pg` from 8.11.6 to 8.11.14
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/pg)

Updates `@types/http-proxy` from 1.17.14 to 1.17.16
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/http-proxy)

Updates `@types/node-fetch` from 2.6.11 to 2.6.12
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node-fetch)

Updates `@tanstack/react-query` from 5.40.0 to 5.75.2
- [Release notes](https://github.com/TanStack/query/releases)
- [Commits](https://github.com/TanStack/query/commits/v5.75.2/packages/react-query)

Updates `html-webpack-plugin` from 5.6.0 to 5.6.3
- [Release notes](https://github.com/jantimon/html-webpack-plugin/releases)
- [Changelog](https://github.com/jantimon/html-webpack-plugin/blob/main/CHANGELOG.md)
- [Commits](jantimon/html-webpack-plugin@v5.6.0...v5.6.3)

Updates `eslint-plugin-react` from 7.34.2 to 7.37.5
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-react/releases)
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-react/blob/master/CHANGELOG.md)
- [Commits](jsx-eslint/eslint-plugin-react@v7.34.2...v7.37.5)

Updates `saml2-js` from 4.0.2 to 4.0.3
- [Commits](https://github.com/Clever/saml2/commits)

Updates `@graphiql/react` from 0.22.0 to 0.31.0
- [Release notes](https://github.com/graphql/graphiql/releases)
- [Changelog](https://github.com/graphql/graphiql/blob/main/packages/graphiql-react/CHANGELOG.md)
- [Commits](https://github.com/graphql/graphiql/commits/@graphiql/[email protected]/packages/graphiql-react)

Updates `@graphiql/toolkit` from 0.9.1 to 0.11.1
- [Release notes](https://github.com/graphql/graphiql/releases)
- [Changelog](https://github.com/graphql/graphiql/blob/main/packages/graphiql-toolkit/CHANGELOG.md)
- [Commits](https://github.com/graphql/graphiql/commits/@graphiql/[email protected]/packages/graphiql-toolkit)

Updates `css-loader` from 7.1.1 to 7.1.2
- [Release notes](https://github.com/webpack-contrib/css-loader/releases)
- [Changelog](https://github.com/webpack-contrib/css-loader/blob/master/CHANGELOG.md)
- [Commits](webpack-contrib/css-loader@v7.1.1...v7.1.2)

Updates `fork-ts-checker-webpack-plugin` from 9.0.2 to 9.1.0
- [Release notes](https://github.com/TypeStrong/fork-ts-checker-webpack-plugin/releases)
- [Changelog](https://github.com/TypeStrong/fork-ts-checker-webpack-plugin/blob/main/CHANGELOG.md)
- [Commits](TypeStrong/fork-ts-checker-webpack-plugin@v9.0.2...v9.1.0)

Updates `graphql-config` from 5.0.3 to 5.1.5
- [Release notes](https://github.com/kamilkisiela/graphql-config/releases)
- [Changelog](https://github.com/graphql-hive/graphql-config/blob/master/CHANGELOG.md)
- [Commits](graphql-hive/graphql-config@v5.0.3...v5.1.5)

Updates `html-loader` from 5.0.0 to 5.1.0
- [Release notes](https://github.com/webpack-contrib/html-loader/releases)
- [Changelog](https://github.com/webpack-contrib/html-loader/blob/master/CHANGELOG.md)
- [Commits](webpack-contrib/html-loader@v5.0.0...v5.1.0)

Updates `mini-css-extract-plugin` from 2.9.0 to 2.9.2
- [Release notes](https://github.com/webpack-contrib/mini-css-extract-plugin/releases)
- [Changelog](https://github.com/webpack-contrib/mini-css-extract-plugin/blob/master/CHANGELOG.md)
- [Commits](webpack-contrib/mini-css-extract-plugin@v2.9.0...v2.9.2)

Updates `ts-loader` from 9.5.1 to 9.5.2
- [Release notes](https://github.com/TypeStrong/ts-loader/releases)
- [Changelog](https://github.com/TypeStrong/ts-loader/blob/main/CHANGELOG.md)
- [Commits](TypeStrong/ts-loader@v9.5.1...v9.5.2)

Updates `webpack` from 5.94.0 to 5.99.7
- [Release notes](https://github.com/webpack/webpack/releases)
- [Commits](webpack/webpack@v5.94.0...v5.99.7)

---
updated-dependencies:
- dependency-name: lerna
  dependency-version: 8.2.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: prettier
  dependency-version: 3.5.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: ava
  dependency-version: 6.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: eslint-plugin-prettier
  dependency-version: 5.3.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: typescript
  dependency-version: 5.8.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: "@types/jsonwebtoken"
  dependency-version: 9.0.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: dataloader
  dependency-version: 2.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: graphql
  dependency-version: 16.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: graphql-relay
  dependency-version: 0.10.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: pg
  dependency-version: 8.15.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: "@types/pg"
  dependency-version: 8.11.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: "@types/http-proxy"
  dependency-version: 1.17.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: "@types/node-fetch"
  dependency-version: 2.6.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: "@tanstack/react-query"
  dependency-version: 5.75.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: html-webpack-plugin
  dependency-version: 5.6.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: eslint-plugin-react
  dependency-version: 7.37.5
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: saml2-js
  dependency-version: 4.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: "@graphiql/react"
  dependency-version: 0.31.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: "@graphiql/toolkit"
  dependency-version: 0.11.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: css-loader
  dependency-version: 7.1.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: fork-ts-checker-webpack-plugin
  dependency-version: 9.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: graphql-config
  dependency-version: 5.1.5
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: html-loader
  dependency-version: 5.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: mini-css-extract-plugin
  dependency-version: 2.9.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: ts-loader
  dependency-version: 9.5.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: webpack
  dependency-version: 5.99.7
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels May 5, 2025
Copy link

sonarqubecloud bot commented May 5, 2025

Copy link

github-actions bot commented May 5, 2025

Dependency Review

The following issues were found:

  • ✅ 0 vulnerable package(s)
  • ❌ 10 package(s) with incompatible licenses
  • ✅ 0 package(s) with invalid SPDX license definitions
  • ✅ 0 package(s) with unknown licenses.
  • ⚠️ 27 packages with OpenSSF Scorecard issues.

View full job summary

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 javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants