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 22 updates #709

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 14, 2024

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

Package From To
lerna 8.1.3 8.1.8
prettier 3.3.0 3.3.3
eslint-plugin-prettier 5.1.3 5.2.1
typescript 5.4.5 5.6.3
@types/jsonwebtoken 9.0.6 9.0.7
graphql 16.8.1 16.9.0
graphql-relay 0.10.1 0.10.2
pg 8.11.5 8.13.0
@types/pg 8.11.6 8.11.10
@types/http-proxy 1.17.14 1.17.15
@tanstack/react-query 5.40.0 5.59.13
@types/react 18.3.3 18.3.11
@types/react-dom 18.3.0 18.3.1
eslint-plugin-react 7.34.2 7.37.1
@graphiql/react 0.22.0 0.26.2
@graphiql/toolkit 0.9.1 0.11.0
css-loader 7.1.1 7.1.2
graphiql 3.2.1 3.7.1
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.1
webpack 5.94.0 5.95.0

Updates lerna from 8.1.3 to 8.1.8

Release notes

Sourced from lerna's releases.

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)

Bug Fixes

v8.1.6

8.1.6 (2024-07-05)

Bug Fixes

v8.1.5

8.1.5 (2024-06-24)

Bug Fixes

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

v8.1.4

8.1.4 (2024-06-09)

Bug Fixes

  • specify 'dependencies: true' when prepping task runner options (#4017) (244462d)
Changelog

Sourced from lerna's changelog.

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
  • 0343c31 chore(misc): publish 8.1.8
  • 3cd9bc9 chore: update e2e-repair snapshots with new output (#4059)
  • 89de0eb fix(publish): upgrade @​npmcli/arborist to 7.5.4 (#4058)
  • 10fcb3a chore(misc): publish 8.1.7
  • 6e5cfbc fix: set explicit strip-ansi dependency (#4045)
  • 8d68f1d chore(misc): publish 8.1.6
  • 5f3603a fix: set explicit string-width dependency (#4038)
  • 3f91a34 chore(misc): publish 8.1.5
  • bd1c2d8 fix: update npm utility dependencies and related packages (#4033)
  • 7bd9835 chore(misc): publish 8.1.4
  • Additional commits viewable in compare view

Updates prettier from 3.3.0 to 3.3.3

Release notes

Sourced from prettier's releases.

3.3.3

🔗 Changelog

3.3.2

🔗 Changelog

3.3.1

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.3.3

diff

Add parentheses for nullish coalescing in ternary (#16391 by @​cdignam-segment)

This change adds clarity to operator precedence.

// Input
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;
// Prettier 3.3.2
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;
// Prettier 3.3.3
foo ? (bar ?? foo) : baz;
(foo ?? bar) ? a : b;
a ? b : (foo ?? bar);

Add parentheses for decorator expressions (#16458 by @​y-schneider)

Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5.

// Input
@(foo`tagged template`)
class X {}
// Prettier 3.3.2
@​footagged template
class X {}
// Prettier 3.3.3
@(footagged template)
class X {}

Support @let declaration syntax (#16474 by @​sosukesuzuki)

Adds support for Angular v18 @let declaration syntax.

Please see the following code example. The @let declaration allows you to define local variables within the template:

... (truncated)

Commits

Updates eslint-plugin-prettier from 5.1.3 to 5.2.1

Release notes

Sourced from eslint-plugin-prettier's releases.

v5.2.1

Patch Changes

Changelog

Sourced from eslint-plugin-prettier's changelog.

5.2.1

Patch Changes

5.2.0

Minor Changes

Commits
  • 51324d9 chore: fix CHANGELOG.md formatting issue
  • 24288c7 chore: release eslint-plugin-prettier (#669)
  • ac036cc build(deps): Bump synckit from 0.8.6 to 0.9.1 (#668)
  • a1e6f4a build(deps): Bump braces from 3.0.2 to 3.0.3 (#665)
  • de9751c build(deps): Bump pnpm/action-setup from 2 to 4 in the actions group (#661)
  • 02c21a5 chore: release eslint-plugin-prettier (#653)
  • f170011 feat: support parsing html via @html-eslint/parser natively (#652)
  • See full diff in compare view

Updates typescript from 5.4.5 to 5.6.3

Release notes

Sourced from typescript's releases.

TypeScript 5.6.3

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.6

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.6 RC

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.6 Beta

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

... (truncated)

Commits
  • d48a5cf Bump version to 5.6.3 and LKG
  • fefa70a 🤖 Pick PR #60083 (Don't issue implicit any when obtai...) into release-5.6 (#...
  • ff71692 [release-5.6] Remove tsbuildInfo specification error now that we need it for ...
  • 1f44dcf 🤖 Pick PR #60157 (fix automatic type acquisition) into release-5.6 (#60169)
  • a7e3374 Bump version to 5.6.2 and LKG
  • 2063357 🤖 Pick PR #59708 (LEGO: Pull request from lego/hb_537...) into release-5.6 (#...
  • 4fe7e41 🤖 Pick PR #59670 (fix(59649): ts Move to a new file d...) into release-5.6 (#...
  • 1a03e53 🤖 Pick PR #59761 (this can be nullish) into release-5.6 (#59762)
  • 6212132 Update LKG
  • bbb5faf 🤖 Pick PR #59542 (Fixing delay caused in vscode due t...) into release-5.6 (#...
  • Additional commits viewable in compare view

Updates @types/jsonwebtoken from 9.0.6 to 9.0.7

Commits

Updates graphql from 16.8.1 to 16.9.0

Release notes

Sourced from graphql's releases.

v16.9.0 (2024-06-21)

New Feature 🚀

  • #4119 backport[v16]: Introduce "recommended" validation rules (@​benjie)
  • #4122 backport[v16]: Enable passing values configuration to GraphQLEnumType as a thunk (@​benjie)
  • #4124 backport[v16]: Implement OneOf Input Objects via @oneOf directive (@​benjie)

Committers: 1

v16.8.2 (2024-06-12)

Bug Fix 🐞

Internal 🏠

Committers: 2

Commits
  • 556a01e 16.9.0
  • 6a1614c backport[v16]: Enable passing values configuration to GraphQLEnumType as a th...
  • 29144f7 backport[v16]: Implement OneOf Input Objects via @oneOf directive (#4124)
  • c35130e Revert error extension symbol (#4123)
  • 29c1bff feat: allow defining symbol error extensions (#3730)
  • c985c27 backport[v16]: Introduce "recommended" validation rules (#4119)
  • 08779a0 16.8.2
  • c82609e Fix publish scripts (#4104)
  • 0d12b06 fix: remove globalThis check and align with what bundlers can accept (#4022)
  • See full diff in compare view
Maintainer changes

This version was pushed to npm by benjie, 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.13.0

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]

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

[email protected]

... (truncated)

Commits

Updates @types/pg from 8.11.6 to 8.11.10

Commits

Updates @types/http-proxy from 1.17.14 to 1.17.15

Commits

Updates @tanstack/react-query from 5.40.0 to 5.59.13

Release notes

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

v5.59.13

Version 5.59.13 - 10/12/24, 9:38 AM

Changes

Fix

  • query-core: don"t finalizeThenable of different queries (#8171) (5d69ad7) by Dominik Dorfmeister

Packages

  • @​tanstack/query-core@​5.59.13
  • @​tanstack/react-query@​5.59.13
  • @​tanstack/query-broadcast-client-experimental@​5.59.13
  • @​tanstack/query-persist-client-core@​5.59.13
  • @​tanstack/query-sync-storage-persister@​5.59.13
  • @​tanstack/react-query-devtools@​5.59.13
  • @​tanstack/react-query-persist-client@​5.59.13
  • @​tanstack/react-query-next-experimental@​5.59.13
  • @​tanstack/solid-query@​5.59.13
  • @​tanstack/solid-query-devtools@​5.59.13
  • @​tanstack/solid-query-persist-client@​5.59.13
  • @​tanstack/svelte-query@​5.59.13
  • @​tanstack/svelte-query-devtools@​5.59.13
  • @​tanstack/svelte-query-persist-client@​5.59.13
  • @​tanstack/vue-query@​5.59.13
  • @​tanstack/vue-query-devtools@​5.59.13
  • @​tanstack/angular-query-experimental@​5.59.13
  • @​tanstack/query-async-storage-persister@​5.59.13
  • @​tanstack/angular-query-devtools-experimental@​5.59.13

v5.59.12

Version 5.59.12 - 10/12/24, 7:40 AM

Changes

Fix

  • query-core: move thenable-recreation into createResult (#8169) (4758303) by Dominik Dorfmeister

Types

Packages

  • @​tanstack/query-core@​5.59.12
  • @​tanstack/react-query@​5.59.12
  • @​tanstack/vue-query@​5.59.12
  • @​tanstack/query-broadcast-client-experimental@​5.59.12

... (truncated)

Commits
  • 2649e52 release: v5.59.13
  • 5d69ad7 fix(query-core): don't finalizeThenable of different queries (#8171)
  • 8e805fb release: v5.59.12
  • 4758303 fix(query-core): move thenable-recreation into createResult (#8169)
  • 4dfb0fc types(react-query): export QueryErrorResetBoundaryFunction (#8089)
  • babf66f release: v5.59.11
  • a991d92 refactor(types): throw type error when skipToken is present in suspense que...
  • c635194 release: v5.59.10
  • 5edd617 fix(core): correctly gc query when suspense is used when query unmounts while...
  • 931d98d fix(react-query): Allow optional initialData object in queryOptions (#8162)
  • Additional commits viewable in compare view

Updates @types/react from 18.3.3 to 18.3.11

Commits

Updates @types/react-dom from 18.3.0 to 18.3.1

Commits

Updates eslint-plugin-react from 7.34.2 to 7.37.1

Release notes

Sourced from eslint-plugin-react's releases.

v7.37.1

Fixed

Changed

#3834: jsx-eslint/eslint-plugin-react#3834 #3836: jsx-eslint/eslint-plugin-react#3836

v7.37.0

Added

Changed

#3805: jsx-eslint/eslint-plugin-react#3805 #3824: jsx-eslint/eslint-plugin-react#3824 #3826: jsx-eslint/eslint-plugin-react#3826 #3830: jsx-eslint/eslint-plugin-react#3830 #3831: jsx-eslint/eslint-plugin-react#3831 [forbid-component-props]: docs/rules/forbid-component-props.md [no-unescaped-entities]: docs/rules/no-unescaped-entities.md [no-unstable-nested-components]: docs/rules/no-unstable-nested-components.md

v7.36.1

Fixed

#3823: jsx-eslint/eslint-plugin-react#3823 #3821: jsx-eslint/eslint-plugin-react#3821

v7.36.0

Added

Fixed

  • [function-component-definition], [boolean-prop-naming], [jsx-first-prop-new-line], [jsx-props-no-multi-spaces], propTypes: use type args (#3629[] @​HenryBrown0)
  • JSX pragma: fail gracefully (#3632[] @​ljharb)
  • [jsx-props-no-spreading]: add explicitSpread option to schema (#3799[] @​ljharb)

... (truncated)

Changelog

Sourced from eslint-plugin-react's changelog.

[7.37.1] - 2024.10.01

Fixed

Changed

#3836: jsx-eslint/eslint-plugin-react#3836 #3834: jsx-eslint/eslint-plugin-react#3834

[7.37.0] - 2024.09.26

Added

Changed

#3831: jsx-eslint/eslint-plugin-react#3831 #3830: jsx-eslint/eslint-plugin-react#3830 #3826: jsx-eslint/eslint-plugin-react#3826 #3824: jsx-eslint/eslint-plugin-react#3824 #3805: jsx-eslint/eslint-plugin-react#3805

7.36.1 - 2024.09.12

Fixed

#3823: jsx-eslint/eslint-plugin-react#3823 #3821: jsx-eslint/eslint-plugin-react#3821

[7.36.0] - 2024.09.12

Added

Fixed

  • [function-component-definition], [boolean-prop-naming], [jsx-first-prop-new-line], [jsx-props-no-multi-spaces], propTypes: use type args (#3629[] @​HenryBrown0)
  • JSX pragma: fail gracefully (#3632[] @​ljharb)
  • [jsx-props-no-spreading]: add explicitSpread option to schema (#3799[] @​ljharb)

... (truncated)

Commits
  • ae6fb8d Update CHANGELOG and bump version
  • 63e0b49 [meta] do not npmignore d.ts files
  • 1f95a24 [readme] Fix shared settings link
  • ec27e20 Update CHANGELOG and bump version
  • 0cc5b7a [meta] fix release workflow
  • 744135b [readme] flat config example for react 17+
  • a1273d5 [New] no-unstable-nested-components: add propNamePattern to support custo...
  • 3073214 [New] forbid-component-props: add allowedForPatterns/`disallowedForPatter...
  • 95297ed [New] no-unescaped-entities: add suggestions
  • 7f3ac1b [New] add type generation
  • Additional commits viewable in compare view

Updates @graphiql/react from 0.22.0 to 0.26.2

Release notes

Sourced from @​graphiql/react's releases.

@​graphiql/react@​0.26.2

Patch Changes

@​graphiql/react@​0.26.1

Patch Changes

@​graphiql/react@​0.26.0

Minor Changes

Patch Changes

  • #3441 959ed21 Thanks @​cimdalli! - fix: set query editor to defaultQuery while adding a new tab or GraphiQL's default query

    # Welcome to GraphiQL
    #
    # GraphiQL is an in-browser tool for writing, validating, and
    # testing GraphQL queries.
    ...

@​graphiql/react@​0.25.0

Minor Changes

@​graphiql/react@​0.23.1

Patch Changes

@​graphiql/react@​0.23.0

Minor Changes

... (truncated)

Changelog

Sourced from @​graphiql/react's changelog.

0.26.2

Patch Changes

0.26.1

Patch Changes

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

| Package | From | To |
| --- | --- | --- |
| [lerna](https://github.com/lerna/lerna/tree/HEAD/packages/lerna) | `8.1.3` | `8.1.8` |
| [prettier](https://github.com/prettier/prettier) | `3.3.0` | `3.3.3` |
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | `5.1.3` | `5.2.1` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.4.5` | `5.6.3` |
| [@types/jsonwebtoken](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jsonwebtoken) | `9.0.6` | `9.0.7` |
| [graphql](https://github.com/graphql/graphql-js) | `16.8.1` | `16.9.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.13.0` |
| [@types/pg](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/pg) | `8.11.6` | `8.11.10` |
| [@types/http-proxy](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/http-proxy) | `1.17.14` | `1.17.15` |
| [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `5.40.0` | `5.59.13` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.3.3` | `18.3.11` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `18.3.0` | `18.3.1` |
| [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) | `7.34.2` | `7.37.1` |
| [@graphiql/react](https://github.com/graphql/graphiql/tree/HEAD/packages/graphiql-react) | `0.22.0` | `0.26.2` |
| [@graphiql/toolkit](https://github.com/graphql/graphiql/tree/HEAD/packages/graphiql-toolkit) | `0.9.1` | `0.11.0` |
| [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.7.1` |
| [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.1` |
| [webpack](https://github.com/webpack/webpack) | `5.94.0` | `5.95.0` |



Updates `lerna` from 8.1.3 to 8.1.8
- [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.1.8/packages/lerna)

Updates `prettier` from 3.3.0 to 3.3.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.3.3)

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

Updates `typescript` from 5.4.5 to 5.6.3
- [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.6.3)

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

Updates `graphql` from 16.8.1 to 16.9.0
- [Release notes](https://github.com/graphql/graphql-js/releases)
- [Commits](graphql/graphql-js@v16.8.1...v16.9.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.13.0
- [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.10
- [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.15
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/http-proxy)

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

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

Updates `@types/react-dom` from 18.3.0 to 18.3.1
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `eslint-plugin-react` from 7.34.2 to 7.37.1
- [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.1)

Updates `@graphiql/react` from 0.22.0 to 0.26.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.0
- [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.7.1
- [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/kamilkisiela/graphql-config/blob/master/CHANGELOG.md)
- [Commits](kamilkisiela/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.1
- [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.1)

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

---
updated-dependencies:
- dependency-name: lerna
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-patch
  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: 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: 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: "@tanstack/react-query"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: "@types/react"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: "@types/react-dom"
  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: "@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: 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 Oct 14, 2024
Copy link

sonarcloud bot commented Oct 14, 2024

Copy link

Dependency Review

The following issues were found:

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

View full job summary

Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 21, 2024

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

@dependabot dependabot bot closed this Oct 21, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/minor-updates-61fd844a80 branch October 21, 2024 08:04
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