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 16 updates #692

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 5, 2024

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

Package From To
lerna 8.1.3 8.1.7
prettier 3.3.0 3.3.3
eslint-plugin-prettier 5.1.3 5.2.1
typescript 5.4.5 5.5.4
graphql 16.8.1 16.9.0
graphql-relay 0.10.1 0.10.2
pg 8.11.5 8.12.0
@tanstack/react-query 5.40.0 5.51.21
eslint-plugin-react 7.34.2 7.35.0
@graphiql/react 0.22.0 0.23.0
css-loader 7.1.1 7.1.2
graphiql 3.2.1 3.4.0
graphql-config 5.0.3 5.1.0
html-loader 5.0.0 5.1.0
webpack 5.91.0 5.93.0

Updates lerna from 8.1.3 to 8.1.7

Release notes

Sourced from lerna's releases.

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

Release notes

Sourced from typescript's releases.

TypeScript 5.5.4

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.5.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.5

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.5 RC

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

... (truncated)

Commits
  • c8a7d58 Bump version to 5.5.4 and LKG
  • c0ded04 🤖 Pick PR #58771 (Allow references to the global Symb...) into release-5.5 (#...
  • 5ba41e2 🤖 Pick PR #59208 (Write non-missing undefined on mapp...) into release-5.5 (#...
  • b075332 🤖 Pick PR #59337 (Allow declarationMap to be emitted ...) into release-5.5 (#...
  • 9dd6f91 Cherry-pick "Stop using latest Node in CI" to release-5.5 (#59348)
  • bf0ddaf 🤖 Pick PR #59070 (Delay the calculation of common sou...) into release-5.5 (#...
  • a44e2d9 🤖 Pick PR #59160 (Fixed crash on authored import type...) into release-5.5 (#...
  • f35206d 🤖 Pick PR #59325 (Don't skip markLinkedReferences on ...) into release-5.5 (#...
  • 1109550 Fix baselines on release-5.5 (#59330)
  • 8794318 🤖 Pick PR #59215 (Fix codefix crash on circular alias...) into release-5.5 (#...
  • Additional commits viewable in compare view

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

Changelog

Sourced from pg's changelog.

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

  • Library has been converted to Typescript. The behavior is identical, but there could be subtle breaking changes due to class names changing or other small inconsistencies introduced by the conversion.

[email protected]

... (truncated)

Commits

Updates @tanstack/react-query from 5.40.0 to 5.51.21

Release notes

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

v5.51.21

Version 5.51.21 - 8/2/24, 6:43 PM

Changes

Fix

  • query-core: make CancelledError extend Error (#7843) (35c086f) by Dominik Dorfmeister

Packages

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

v5.51.20

Version 5.51.20 - 8/2/24, 2:17 AM

Changes

Fix

  • svelte-query: allow returning undefined in initialData function (#7838) (e092f06) by Lachlan Collins

Packages

  • @​tanstack/svelte-query@​5.51.20
  • @​tanstack/svelte-query-devtools@​5.51.20
  • @​tanstack/svelte-query-persist-client@​5.51.20

v5.51.19

Version 5.51.19 - 8/1/24, 3:39 PM

Changes

... (truncated)

Commits
  • 0696b51 release: v5.51.21
  • 35c086f fix(query-core): make CancelledError extend Error (#7843)
  • 23c3da2 release: v5.51.18
  • fdb8ce1 fix(query-options): allow returning undefined in initialData function (#7351)
  • 5ab13b9 release: v5.51.17
  • de931d0 release: v5.51.16
  • 74f10b7 chore(deps): lock file maintenance (#7819)
  • ec8e800 release: v5.51.15
  • fec324f release: v5.51.14
  • 34a5672 refactor(react-query): add error message for skipToken in useSuspenseQueries...
  • Additional commits viewable in compare view

Updates eslint-plugin-react from 7.34.2 to 7.35.0

Release notes

Sourced from eslint-plugin-react's releases.

v7.35.0

Added

Fixed

  • [no-invalid-html-attribute]: substitute placeholders in suggestion messages (#3759[] @​mdjermanovic)
  • [sort-prop-types]: single line type ending without semicolon (#3784[] @​akulsr0)
  • [require-default-props]: report when required props have default value (#3785[] @​akulsr0)

Changed

#3759: jsx-eslint/eslint-plugin-react#3759 #3694: jsx-eslint/eslint-plugin-react#3694 #3771: jsx-eslint/eslint-plugin-react#3771

#1000: jsx-eslint/eslint-plugin-react#1000 #1002: jsx-eslint/eslint-plugin-react#1002 #1005: jsx-eslint/eslint-plugin-react#1005 #100: jsx-eslint/eslint-plugin-react#100 #1010: jsx-eslint/eslint-plugin-react#1010 #1013: jsx-eslint/eslint-plugin-react#1013 #1022: jsx-eslint/eslint-plugin-react#1022 #1029: jsx-eslint/eslint-plugin-react#1029 #102: jsx-eslint/eslint-plugin-react#102 #1034: jsx-eslint/eslint-plugin-react#1034 #1038: jsx-eslint/eslint-plugin-react#1038 #1041: jsx-eslint/eslint-plugin-react#1041 #1043: jsx-eslint/eslint-plugin-react#1043 #1046: jsx-eslint/eslint-plugin-react#1046 #1047: jsx-eslint/eslint-plugin-react#1047 #1050: jsx-eslint/eslint-plugin-react#1050 #1053: jsx-eslint/eslint-plugin-react#1053 #1057: jsx-eslint/eslint-plugin-react#1057 #105: jsx-eslint/eslint-plugin-react#105 #1061: jsx-eslint/eslint-plugin-react#1061 #1062: jsx-eslint/eslint-plugin-react#1062 #1070: jsx-eslint/eslint-plugin-react#1070 #1071: jsx-eslint/eslint-plugin-react#1071 #1073: jsx-eslint/eslint-plugin-react#1073 #1076: jsx-eslint/eslint-plugin-react#1076 #1079: jsx-eslint/eslint-plugin-react#1079 #1088: jsx-eslint/eslint-plugin-react#1088

... (truncated)

Changelog

Sourced from eslint-plugin-react's changelog.

7.35.0 - 2024.07.19

Added

Fixed

  • [no-invalid-html-attribute]: substitute placeholders in suggestion messages (#3759[] @​mdjermanovic)
  • [sort-prop-types]: single line type ending without semicolon (#3784[] @​akulsr0)
  • [require-default-props]: report when required props have default value (#3785[] @​akulsr0)

Changed

#3785: jsx-eslint/eslint-plugin-react#3785 #3784: jsx-eslint/eslint-plugin-react#3784 #3782: jsx-eslint/eslint-plugin-react#3782 #3777: jsx-eslint/eslint-plugin-react#3777 #3774: jsx-eslint/eslint-plugin-react#3774 #3772: jsx-eslint/eslint-plugin-react#3772 #3771: jsx-eslint/eslint-plugin-react#3771 #3759: jsx-eslint/eslint-plugin-react#3759 #3748: jsx-eslint/eslint-plugin-react#3748 #3724: jsx-eslint/eslint-plugin-react#3724 #3694: jsx-eslint/eslint-plugin-react#3694

7.34.4 - 2024.07.13

Fixed

  • [prop-types]: fix className missing in prop validation false negative (#3749[] @​akulsr0)
  • [sort-prop-types]: Check for undefined before accessing node.typeAnnotation.typeAnnotation (#3779[] @​tylerlaprade)

#3779: jsx-eslint/eslint-plugin-react#3779 #3749: jsx-eslint/eslint-plugin-react#3749

[7.34.3] - 2024.06.18

Fixed

  • [prop-types]: null-check rootNode before calling getScope (#3762[] @​crnhrv)
  • [boolean-prop-naming]: avoid a crash with a spread prop (#3733[] @​ljharb)
  • [jsx-boolean-value]: assumeUndefinedIsFalse with never must not allow explicit true value (#3757[] @​6uliver)

... (truncated)

Commits
  • c6fdccd Update CHANGELOG and bump version
  • a4b0bbc [Fix] require-default-props: report when required props have default value
  • a08cb93 [Fix] sort-prop-types: single line type ending without semicolon
  • 4b3209b [meta] no point in supporting eslint 9.0 - 9.6 initially
  • ca8b11e [Dev Deps] update @babel/core, @babel/eslint-parser
  • 597553d [New] no-danger: add customComponentNames option
  • c58f04b [New] jsx-closing-tag-location: add line-aligned option
  • 00b89fe [New] version settings: Allow react defaultVersion to be configurable
  • 4d2fd86 [Refactor] variableUtil: Avoid creating a single flat variable scope for ea...
  • 6a83d67 [New] jsx-handler-names: support ignoring component names
  • Additional commits viewable in compare view

Updates @graphiql/react from 0.22.0 to 0.23.0

Release notes

Sourced from @​graphiql/react's releases.

@​graphiql/react@​0.23.0

Minor Changes

Patch Changes

@​graphiql/react@​0.22.4

Patch Changes

@​graphiql/react@​0.22.3

Patch Changes

@​graphiql/react@​0.22.2

Patch Changes

@​graphiql/react@​0.22.1

Patch Changes

Changelog

Sourced from @​graphiql/react's changelog.

0.23.0

Minor Changes

Patch Changes

0.22.4

Patch Changes

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

| Package | From | To |
| --- | --- | --- |
| [lerna](https://github.com/lerna/lerna/tree/HEAD/packages/lerna) | `8.1.3` | `8.1.7` |
| [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.5.4` |
| [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.12.0` |
| [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `5.40.0` | `5.51.21` |
| [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) | `7.34.2` | `7.35.0` |
| [@graphiql/react](https://github.com/graphql/graphiql/tree/HEAD/packages/graphiql-react) | `0.22.0` | `0.23.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.4.0` |
| [graphql-config](https://github.com/kamilkisiela/graphql-config) | `5.0.3` | `5.1.0` |
| [html-loader](https://github.com/webpack-contrib/html-loader) | `5.0.0` | `5.1.0` |
| [webpack](https://github.com/webpack/webpack) | `5.91.0` | `5.93.0` |



Updates `lerna` from 8.1.3 to 8.1.7
- [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.7/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.5.4
- [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.5.4)

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.12.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 `@tanstack/react-query` from 5.40.0 to 5.51.21
- [Release notes](https://github.com/TanStack/query/releases)
- [Commits](https://github.com/TanStack/query/commits/v5.51.21/packages/react-query)

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

Updates `@graphiql/react` from 0.22.0 to 0.23.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.9.2
- [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.4.0
- [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.0
- [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.0)

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 `webpack` from 5.91.0 to 5.93.0
- [Release notes](https://github.com/webpack/webpack/releases)
- [Commits](webpack/webpack@v5.91.0...v5.93.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: 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: "@tanstack/react-query"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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-patch
  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: 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 Aug 5, 2024
Copy link

github-actions bot commented Aug 5, 2024

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.
  • ⚠️ 8 packages with OpenSSF Scorecard issues.

View full job summary

Copy link

sonarcloud bot commented Aug 5, 2024

Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 12, 2024

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

@dependabot dependabot bot closed this Aug 12, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/minor-updates-f6b26b7555 branch August 12, 2024 07:32
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