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

Bump the minor-updates group across 1 directory with 27 updates #726

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 Mar 24, 2025

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

Package From To
lerna 8.1.3 8.2.1
prettier 3.3.0 3.5.3
ava 6.1.3 6.2.0
eslint-plugin-prettier 5.1.3 5.2.4
typescript 5.4.5 5.8.2
@types/jsonwebtoken 9.0.6 9.0.9
dataloader 2.2.2 2.2.3
graphql 16.8.1 16.10.0
graphql-relay 0.10.1 0.10.2
koa 2.15.3 2.16.0
pg 8.11.5 8.14.1
@types/pg 8.11.6 8.11.11
@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.69.0
html-webpack-plugin 5.6.0 5.6.3
eslint-plugin-react 7.34.2 7.37.4
saml2-js 4.0.2 4.0.3
@graphiql/react 0.22.0 0.28.2
@graphiql/toolkit 0.9.1 0.11.1
css-loader 7.1.1 7.1.2
graphiql 3.2.1 3.8.3
graphql-config 5.0.3 5.1.3
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.98.0

Updates lerna from 8.1.3 to 8.2.1

Release notes

Sourced from lerna's releases.

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)
  • version: truncate release body based on maximum size allowed by VCS client (#4041) (3c2a3c9)

Features

  • publish: enable throttling when publishing modules (#4013) (fccca12)

v8.1.7

8.1.7 (2024-07-21)

... (truncated)

Changelog

Sourced from lerna's changelog.

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)

8.1.4 (2024-06-09)

Note: Version bump only for package lerna

Commits

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

Release notes

Sourced from ava's releases.

v6.2.0

What's Changed

New Contributors

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

Commits
  • 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.2.4

Release notes

Sourced from eslint-plugin-prettier's releases.

v5.2.4

Patch Changes

v5.2.3

Patch Changes

v5.2.2

Patch Changes

What's Changed

New Contributors

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

v5.2.1

Patch Changes

Changelog

Sourced from eslint-plugin-prettier's changelog.

5.2.4

Patch Changes

5.2.3

Patch Changes

5.2.2

Patch Changes

5.2.1

Patch Changes

5.2.0

Minor Changes

Commits
  • d670ebb chore: fix release script
  • 0e12336 chore: release eslint-plugin-prettier (#716)
  • b8cfe56 chore: hourcekeeping, bump all (dev) deps (#715)
  • ca5eb3e test: improve how to get FlatESLint (#713)
  • 6f35f1b chore(housekeeping): update ESLint to v9 (#709)
  • 9726349 chore: rename default branch to main (#710)
  • 6fd7ba1 chore: release eslint-plugin-prettier (#704)
  • 190d6f9 build(deps): Bump synckit from 0.9.1 to 0.9.2 (#705)
  • 9cf6a01 build(deps-dev): Bump svelte from 4.2.8 to 4.2.19 (#677)
  • 9c6141f chore: add plugin name to flat recommended config (#703)
  • Additional commits viewable in compare view

Updates typescript from 5.4.5 to 5.8.2

Release notes

Sourced from typescript's releases.

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.

Downloads are available on:

TypeScript 5.7 RC

For release notes, check out the release announcement.

... (truncated)

Commits
  • beb69e4 Bump version to 5.8.2 and LKG
  • 8fdbd54 🤖 Pick PR #61210 (Fix mistakenly disallowed default e...) into release-5.8 (#...
  • f4a3a8a 🤖 Pick PR #61175 (Ban import=require and export= unde...) into release-5.8 (#...
  • 420ff06 Bump version to 5.8.1-rc and LKG
  • 48eb13f Update LKG
  • fb59c19 Merge remote-tracking branch 'origin/main' into release-5.8
  • df342b7 Fixed rewriteRelativeImportExtensions for import() within call expression...
  • 775412a Bump github/codeql-action from 3.28.8 to 3.28.9 in the github-actions group (...
  • e1629e5 Pass ignoreErrors=true to more resolveEntityName callers (#61144)
  • 6fd1799 Update LKG
  • 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.10.0

Release notes

Sourced from graphql's releases.

16.10.0

v16.10.0 (2024-12-15)

New Feature 🚀

Bug Fix 🐞

Docs 📝

Internal 🏠

Committers: 5

v16.9.0 (2024-06-21)

New Feature 🚀

... (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 koa from 2.15.3 to 2.16.0

Release notes

Sourced from koa's releases.

2.16.0

This is a backported release to fix core underlying issue with HEAD requests when using http2.createSecureServer. See discussion at koajs/koa#1593 and koajs/koa#1547.

  • fix missing cleanup, if response socket is no longer writeable (issue 1547) (koajs/koa#1593) 399cb6b0dd2104224c0ef0ce8e92f84e4f7faf42

2.15.4

Full Changelog: koajs/koa@2.15.3...2.15.4

Fix: avoid redos on host and protocol getter, see GHSA-593f-38f6-jp5m

Commits
Maintainer changes

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


Updates pg from 8.11.5 to 8.14.1

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]

[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]

[email protected]

... (truncated)

Commits

Updates @types/pg from 8.11.6 to 8.11.11

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

Release notes

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

v5.69.0

Version 5.69.0 - 3/18/25, 11:11 AM

Changes

Feat

  • core: streamedQuery (#8814) (4d67c1c) by Dominik Dorfmeister

Test

  • query-core: use fake timers for focusManager.test.tsx (#8809) (081ef3c) by @​manudeli
  • query-core: use fake timers for mutationCache.test.tsx (#8807) (4922f06) by @​manudeli
  • query-core: use fake timers for mutations.test.tsx (#8806) (730b79a) by @​manudeli
  • query-core: use fake timers for mutationObserver.test.tsx (#8805) (fb7edb4) by @​manudeli

Docs

  • fix eslint links (f03b109) by TkDodo
  • fix internal links (4b7fd0e) by TkDodo
  • fix links in ssr guide (980d08d) by TkDodo
  • remove extra link (ff788ac) by TkDodo
  • add .md to links (84b1bed) by TkDodo
  • Fix broken link some example path (#8813) (21c5e09) by HYUNJOON

Packages

  • @​tanstack/query-core@​5.69.0
  • @​tanstack/query-broadcast-client-experimental@​5.69.0
  • @​tanstack/query-persist-client-core@​5.69.0
  • @​tanstack/query-sync-storage-persister@​5.69.0
  • @​tanstack/react-query@​5.69.0
  • @​tanstack/react-query-devtools@​5.69.0
  • @​tanstack/react-query-persist-client@​5.69.0
  • @​tanstack/react-query-next-experimental@​5.69.0
  • @​tanstack/solid-query@​5.69.0
  • @​tanstack/solid-query-devtools@​5.69.0
  • @​tanstack/solid-query-persist-client@​5.69.0
  • @​tanstack/svelte-quer...

    Description has been truncated

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

| Package | From | To |
| --- | --- | --- |
| [lerna](https://github.com/lerna/lerna/tree/HEAD/packages/lerna) | `8.1.3` | `8.2.1` |
| [prettier](https://github.com/prettier/prettier) | `3.3.0` | `3.5.3` |
| [ava](https://github.com/avajs/ava) | `6.1.3` | `6.2.0` |
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | `5.1.3` | `5.2.4` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.4.5` | `5.8.2` |
| [@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.10.0` |
| [graphql-relay](https://github.com/graphql/graphql-relay-js) | `0.10.1` | `0.10.2` |
| [koa](https://github.com/koajs/koa) | `2.15.3` | `2.16.0` |
| [pg](https://github.com/brianc/node-postgres/tree/HEAD/packages/pg) | `8.11.5` | `8.14.1` |
| [@types/pg](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/pg) | `8.11.6` | `8.11.11` |
| [@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.69.0` |
| [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.4` |
| [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.28.2` |
| [@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` |
| [graphiql](https://github.com/graphql/graphiql/tree/HEAD/packages/graphiql) | `3.2.1` | `3.8.3` |
| [graphql-config](https://github.com/kamilkisiela/graphql-config) | `5.0.3` | `5.1.3` |
| [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.98.0` |



Updates `lerna` from 8.1.3 to 8.2.1
- [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.1/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.2.0
- [Release notes](https://github.com/avajs/ava/releases)
- [Commits](avajs/ava@v6.1.3...v6.2.0)

Updates `eslint-plugin-prettier` from 5.1.3 to 5.2.4
- [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.2.4)

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

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.10.0
- [Release notes](https://github.com/graphql/graphql-js/releases)
- [Commits](graphql/graphql-js@v16.8.1...v16.10.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 `koa` from 2.15.3 to 2.16.0
- [Release notes](https://github.com/koajs/koa/releases)
- [Changelog](https://github.com/koajs/koa/blob/master/History.md)
- [Commits](koajs/koa@2.15.3...2.16.0)

Updates `pg` from 8.11.5 to 8.14.1
- [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.11
- [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.69.0
- [Release notes](https://github.com/TanStack/query/releases)
- [Commits](https://github.com/TanStack/query/commits/v5.69.0/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.4
- [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.4)

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.28.2
- [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 `graphiql` from 3.2.1 to 3.8.3
- [Release notes](https://github.com/graphql/graphiql/releases)
- [Changelog](https://github.com/graphql/graphiql/blob/main/packages/graphiql/CHANGELOG.md)
- [Commits](https://github.com/graphql/graphiql/commits/[email protected]/packages/graphiql)

Updates `graphql-config` from 5.0.3 to 5.1.3
- [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.3)

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.98.0
- [Release notes](https://github.com/webpack/webpack/releases)
- [Commits](webpack/webpack@v5.94.0...v5.98.0)

---
updated-dependencies:
- dependency-name: lerna
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: ava
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: eslint-plugin-prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: "@types/jsonwebtoken"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: dataloader
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: graphql
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: graphql-relay
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: koa
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: pg
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: "@types/pg"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: "@types/http-proxy"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: "@types/node-fetch"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: "@tanstack/react-query"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: html-webpack-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: eslint-plugin-react
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: saml2-js
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: "@graphiql/react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: "@graphiql/toolkit"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: css-loader
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: graphiql
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: graphql-config
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: html-loader
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: mini-css-extract-plugin
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: ts-loader
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: webpack
  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 Mar 24, 2025
Copy link

Dependency Review

The following issues were found:

  • ✅ 0 vulnerable package(s)
  • ❌ 8 package(s) with incompatible licenses
  • ✅ 0 package(s) with invalid SPDX license definitions
  • ✅ 0 package(s) with unknown licenses.
  • ⚠️ 25 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