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

build(deps-dev): bump the development-dependencies group across 1 directory with 22 updates #49

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the development-dependencies group with 22 updates in the / directory:

Package From To
@chromatic-com/storybook 1.5.0 1.6.1
@commitlint/cli 19.3.0 19.4.0
@playwright/test 1.44.1 1.46.1
@rushstack/eslint-patch 1.10.3 1.10.4
@storybook/addon-a11y 8.1.10 8.2.9
@storybook/addon-essentials 8.1.10 8.2.9
@storybook/addon-interactions 8.1.10 8.2.9
@storybook/addon-links 8.1.10 8.2.9
@storybook/blocks 8.1.10 8.2.9
@storybook/test 8.2.2 8.2.9
@storybook/vue3 8.1.10 8.2.9
@storybook/vue3-vite 8.1.10 8.2.9
@vitejs/plugin-vue 5.0.5 5.1.2
@vitest/coverage-v8 1.6.0 2.0.5
eslint 8.57.0 9.9.0
jsdom 24.1.0 24.1.1
msw 2.3.1 2.3.5
prettier 3.2.5 3.3.3
storybook 8.2.2 8.2.9
vite 5.3.1 5.4.1
vite-plugin-vue-devtools 7.3.1 7.3.8
vitest 1.6.0 2.0.5

Updates @chromatic-com/storybook from 1.5.0 to 1.6.1

Release notes

Sourced from @​chromatic-com/storybook's releases.

v1.6.1

🐛 Bug Fix

Authors: 1

v1.6.0

🚀 Enhancement

🐛 Bug Fix

Authors: 1

Changelog

Sourced from @​chromatic-com/storybook's changelog.

v1.6.1 (Thu Jul 04 2024)

🐛 Bug Fix

Authors: 1


v1.6.0 (Fri Jun 28 2024)

🚀 Enhancement

🐛 Bug Fix

Authors: 1


v1.5.1 (Fri Jun 28 2024)

🐛 Bug Fix

v1.4.1 (Fri Jun 28 2024)

🐛 Bug Fix

Commits
  • 8f4ec27 Bump version to: 1.6.1 [skip ci]
  • e3ff3af Update CHANGELOG.md [skip ci]
  • 718893e Merge pull request #329 from chromaui/ghengeveld/244-cant-close-some-notifica...
  • 7b183f8 Ensure every notification has a unique ID so they can always be closed
  • ceb9afb Merge pull request #327 from chromaui/backport-releases
  • fe1c20e Add backport releases to changelog
  • 6a65131 Bump version to: 1.6.0 [skip ci]
  • 15b27fa Update CHANGELOG.md [skip ci]
  • 7e4db43 Merge pull request #326 from chromaui/avoid-excessive-polling
  • 58371ad Merge branch 'main' into avoid-excessive-polling
  • Additional commits viewable in compare view

Updates @commitlint/cli from 19.3.0 to 19.4.0

Release notes

Sourced from @​commitlint/cli's releases.

v19.4.0

Features

Chore & Docs

New Contributors

Full Changelog: conventional-changelog/commitlint@v19.3.1...v19.4.0

v19.3.1

19.3.1 (2024-05-13)

Bug Fixes

Chore

New Contributors

Full Changelog: conventional-changelog/commitlint@v19.3.0...v19.3.1

Changelog

Sourced from @​commitlint/cli's changelog.

19.4.0 (2024-08-07)

Features

Commits

Updates @playwright/test from 1.44.1 to 1.46.1

Release notes

Sourced from @​playwright/test's releases.

v1.46.1

Highlights

microsoft/playwright#32004 - [REGRESSION]: Client Certificates don't work with Microsoft IIS microsoft/playwright#32004 - [REGRESSION]: Websites stall on TLS handshake errors when using Client Certificates microsoft/playwright#32146 - [BUG]: Credential scanners warn about internal socks-proxy TLS certificates microsoft/playwright#32056 - [REGRESSION]: 1.46.0 (TypeScript) - custom fixtures extend no longer chainable microsoft/playwright#32070 - [Bug]: --only-changed flag and project dependencies microsoft/playwright#32188 - [Bug]: --only-changed with shallow clone throws "unknown revision" error

Browser Versions

  • Chromium 128.0.6613.18
  • Mozilla Firefox 128.0
  • WebKit 18.0

This version was also tested against the following stable channels:

  • Google Chrome 127
  • Microsoft Edge 127

v1.46.0

TLS Client Certificates

Playwright now allows to supply client-side certificates, so that server can verify them, as specified by TLS Client Authentication.

When client certificates are specified, all browser traffic is routed through a proxy that establishes the secure TLS connection, provides client certificates to the server and validates server certificates.

The following snippet sets up a client certificate for https://example.com:

import { defineConfig } from '@playwright/test';
export default defineConfig({
// ...
use: {
clientCertificates: [{
origin: 'https://example.com',
certPath: './cert.pem',
keyPath: './key.pem',
passphrase: 'mysecretpassword',
}],
},
// ...
});

You can also provide client certificates to a particular test project or as a parameter of browser.newContext() and apiRequest.newContext().

--only-changed cli option

New CLI option --only-changed allows to only run test files that have been changed since the last git commit or from a specific git "ref".

... (truncated)

Commits
  • e1c861c cherry-pick(#32021): test: fix failing client-certificate tests
  • 20b0788 chore: mark v1.46.1 (#32194)
  • 57c3240 cherry-pick(#32192): chore: generate self-signed certificates for socks proxy
  • 301f179 cherry-pick(#32189): fix(only-changed): show nice error message about shallow...
  • b2d6a09 cherry-pick(#32164): docs: release video and trace viewer video (#32173)
  • 7cf7aec cherry-pick(#32094): fix(test runner): run project dependencies of `--only-ch...
  • d78ae01 cherry-pick(#32163): fix(client-certificates): stall on tls handshake errors
  • bd13da4 cherry-pick(#32155): fix(client-certificates): when server does tls renegotia...
  • 30684a7 cherry-pick(#32066): fix(types): revert type changes made to support TS 5.5 (...
  • 5e68061 cherry-pick(#32015): docs(release-notes): fix typo in .NET release notes
  • Additional commits viewable in compare view

Updates @rushstack/eslint-patch from 1.10.3 to 1.10.4

Changelog

Sourced from @​rushstack/eslint-patch's changelog.

1.10.4

Sat, 27 Jul 2024 00:10:27 GMT

Patches

  • Include CHANGELOG.md in published releases again
Commits

Updates @storybook/addon-a11y from 8.1.10 to 8.2.9

Release notes

Sourced from @​storybook/addon-a11y's releases.

v8.2.9

8.2.9

v8.2.8

8.2.8

  • CLI: Parse more Yarn Berry errors - #28816, thanks @​yannbf!
  • Fix: Invariant failed: Expected package.json#version to be defined in the "undefined" package - #28752, thanks @​abcdmku!

v8.2.7

8.2.7

v8.2.6

8.2.6

v8.2.5

8.2.5

v8.2.4

8.2.4

v8.2.3

8.2.3

... (truncated)

Changelog

Sourced from @​storybook/addon-a11y's changelog.

8.2.9

8.2.8

  • CLI: Parse more Yarn Berry errors - #28816, thanks @​yannbf!
  • Fix: Invariant failed: Expected package.json#version to be defined in the "undefined" package - #28752, thanks @​abcdmku!

8.2.7

8.2.6

8.2.5

8.2.4

8.2.3

8.2.2

... (truncated)

Commits
  • 95d8beb Bump version from "8.2.8" to "8.2.9" [skip ci]
  • 2faeae2 Bump version from "8.2.7" to "8.2.8" [skip ci]
  • 97d8476 Bump version from "8.2.6" to "8.2.7" [skip ci]
  • ea266a0 Bump version from "8.2.5" to "8.2.6" [skip ci]
  • e3c5995 Bump version from "8.2.4" to "8.2.5" [skip ci]
  • 7b84561 Bump version from "8.2.3" to "8.2.4" [skip ci]
  • 7067b33 Bump version from "8.2.2" to "8.2.3" [skip ci]
  • 480359d Bump version from "8.2.1" to "8.2.2" [skip ci]
  • 9c3d891 Bump version from "8.2.0" to "8.2.1" [skip ci]
  • 8b2f2db Bump version from "8.2.0-beta.3" to "8.2.0" [skip ci]
  • Additional commits viewable in compare view

Updates @storybook/addon-essentials from 8.1.10 to 8.2.9

Release notes

Sourced from @​storybook/addon-essentials's releases.

v8.2.9

8.2.9

v8.2.8

8.2.8

  • CLI: Parse more Yarn Berry errors - #28816, thanks @​yannbf!
  • Fix: Invariant failed: Expected package.json#version to be defined in the "undefined" package - #28752, thanks @​abcdmku!

v8.2.7

8.2.7

v8.2.6

8.2.6

v8.2.5

8.2.5

v8.2.4

8.2.4

v8.2.3

8.2.3

... (truncated)

Changelog

Sourced from @​storybook/addon-essentials's changelog.

8.2.9

8.2.8

  • CLI: Parse more Yarn Berry errors - #28816, thanks @​yannbf!
  • Fix: Invariant failed: Expected package.json#version to be defined in the "undefined" package - #28752, thanks @​abcdmku!

8.2.7

8.2.6

8.2.5

8.2.4

8.2.3

8.2.2

... (truncated)

Commits
  • 95d8beb Bump version from "8.2.8" to "8.2.9" [skip ci]
  • 2faeae2 Bump version from "8.2.7" to "8.2.8" [skip ci]
  • 97d8476 Bump version from "8.2.6" to "8.2.7" [skip ci]
  • ea266a0 Bump version from "8.2.5" to "8.2.6" [skip ci]
  • e3c5995 Bump version from "8.2.4" to "8.2.5" [skip ci]
  • 7b84561 Bump version from "8.2.3" to "8.2.4" [skip ci]
  • 7067b33 Bump version from "8.2.2" to "8.2.3" [skip ci]
  • 480359d Bump version from "8.2.1" to "8.2.2" [skip ci]
  • 9c3d891 Bump version from "8.2.0" to "8.2.1" [skip ci]
  • 8b2f2db Bump version from "8.2.0-beta.3" to "8.2.0" [skip ci]
  • Additional commits viewable in compare view

Updates @storybook/addon-interactions from 8.1.10 to 8.2.9

Release notes

Sourced from @​storybook/addon-interactions's releases.

v8.2.9

8.2.9

v8.2.8

8.2.8

  • CLI: Parse more Yarn Berry errors - #28816, thanks @​yannbf!
  • Fix: Invariant failed: Expected package.json#version to be defined in the "undefined" package - #28752, thanks @​abcdmku!

v8.2.7

8.2.7

v8.2.6

8.2.6

v8.2.5

8.2.5

v8.2.4

8.2.4

v8.2.3

8.2.3

... (truncated)

Changelog

Sourced from @​storybook/addon-interactions's changelog.

8.2.9

8.2.8

  • CLI: Parse more Yarn Berry errors - #28816, thanks @​yannbf!
  • Fix: Invariant failed: Expected package.json#version to be defined in the "undefined" package - #28752, thanks @​abcdmku!

8.2.7

8.2.6

8.2.5

…ectory with 22 updates

Bumps the development-dependencies group with 22 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@chromatic-com/storybook](https://github.com/chromaui/addon-visual-tests) | `1.5.0` | `1.6.1` |
| [@commitlint/cli](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/cli) | `19.3.0` | `19.4.0` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.44.1` | `1.46.1` |
| [@rushstack/eslint-patch](https://github.com/microsoft/rushstack/tree/HEAD/eslint/eslint-patch) | `1.10.3` | `1.10.4` |
| [@storybook/addon-a11y](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/a11y) | `8.1.10` | `8.2.9` |
| [@storybook/addon-essentials](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/essentials) | `8.1.10` | `8.2.9` |
| [@storybook/addon-interactions](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/interactions) | `8.1.10` | `8.2.9` |
| [@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links) | `8.1.10` | `8.2.9` |
| [@storybook/blocks](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/blocks) | `8.1.10` | `8.2.9` |
| [@storybook/test](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/test) | `8.2.2` | `8.2.9` |
| [@storybook/vue3](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/vue3) | `8.1.10` | `8.2.9` |
| [@storybook/vue3-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/vue3-vite) | `8.1.10` | `8.2.9` |
| [@vitejs/plugin-vue](https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue) | `5.0.5` | `5.1.2` |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `1.6.0` | `2.0.5` |
| [eslint](https://github.com/eslint/eslint) | `8.57.0` | `9.9.0` |
| [jsdom](https://github.com/jsdom/jsdom) | `24.1.0` | `24.1.1` |
| [msw](https://github.com/mswjs/msw) | `2.3.1` | `2.3.5` |
| [prettier](https://github.com/prettier/prettier) | `3.2.5` | `3.3.3` |
| [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/cli) | `8.2.2` | `8.2.9` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.3.1` | `5.4.1` |
| [vite-plugin-vue-devtools](https://github.com/vuejs/devtools-next/tree/HEAD/packages/vite) | `7.3.1` | `7.3.8` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `1.6.0` | `2.0.5` |



Updates `@chromatic-com/storybook` from 1.5.0 to 1.6.1
- [Release notes](https://github.com/chromaui/addon-visual-tests/releases)
- [Changelog](https://github.com/chromaui/addon-visual-tests/blob/main/CHANGELOG.md)
- [Commits](chromaui/addon-visual-tests@v1.5.0...v1.6.1)

Updates `@commitlint/cli` from 19.3.0 to 19.4.0
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/cli/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v19.4.0/@commitlint/cli)

Updates `@playwright/test` from 1.44.1 to 1.46.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.44.1...v1.46.1)

Updates `@rushstack/eslint-patch` from 1.10.3 to 1.10.4
- [Changelog](https://github.com/microsoft/rushstack/blob/main/eslint/eslint-patch/CHANGELOG.md)
- [Commits](https://github.com/microsoft/rushstack/commits/@rushstack/eslint-patch_v1.10.4/eslint/eslint-patch)

Updates `@storybook/addon-a11y` from 8.1.10 to 8.2.9
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.2.9/code/addons/a11y)

Updates `@storybook/addon-essentials` from 8.1.10 to 8.2.9
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.2.9/code/addons/essentials)

Updates `@storybook/addon-interactions` from 8.1.10 to 8.2.9
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.2.9/code/addons/interactions)

Updates `@storybook/addon-links` from 8.1.10 to 8.2.9
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.2.9/code/addons/links)

Updates `@storybook/blocks` from 8.1.10 to 8.2.9
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.2.9/code/lib/blocks)

Updates `@storybook/test` from 8.2.2 to 8.2.9
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.2.9/code/lib/test)

Updates `@storybook/vue3` from 8.1.10 to 8.2.9
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.2.9/code/renderers/vue3)

Updates `@storybook/vue3-vite` from 8.1.10 to 8.2.9
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.2.9/code/frameworks/vue3-vite)

Updates `@vitejs/plugin-vue` from 5.0.5 to 5.1.2
- [Release notes](https://github.com/vitejs/vite-plugin-vue/releases)
- [Changelog](https://github.com/vitejs/vite-plugin-vue/blob/main/packages/plugin-vue/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite-plugin-vue/commits/plugin-vue@5.1.2/packages/plugin-vue)

Updates `@vitest/coverage-v8` from 1.6.0 to 2.0.5
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v2.0.5/packages/coverage-v8)

Updates `eslint` from 8.57.0 to 9.9.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v8.57.0...v9.9.0)

Updates `jsdom` from 24.1.0 to 24.1.1
- [Release notes](https://github.com/jsdom/jsdom/releases)
- [Changelog](https://github.com/jsdom/jsdom/blob/main/Changelog.md)
- [Commits](jsdom/jsdom@24.1.0...24.1.1)

Updates `msw` from 2.3.1 to 2.3.5
- [Release notes](https://github.com/mswjs/msw/releases)
- [Changelog](https://github.com/mswjs/msw/blob/main/CHANGELOG.md)
- [Commits](mswjs/msw@v2.3.1...v2.3.5)

Updates `prettier` from 3.2.5 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.2.5...3.3.3)

Updates `storybook` from 8.2.2 to 8.2.9
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.2.9/code/lib/cli)

Updates `vite` from 5.3.1 to 5.4.1
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.1/packages/vite)

Updates `vite-plugin-vue-devtools` from 7.3.1 to 7.3.8
- [Release notes](https://github.com/vuejs/devtools-next/releases)
- [Commits](https://github.com/vuejs/devtools-next/commits/v7.3.8/packages/vite)

Updates `vitest` from 1.6.0 to 2.0.5
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v2.0.5/packages/vitest)

---
updated-dependencies:
- dependency-name: "@chromatic-com/storybook"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@commitlint/cli"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@rushstack/eslint-patch"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@storybook/addon-a11y"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@storybook/addon-essentials"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@storybook/addon-interactions"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@storybook/addon-links"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@storybook/blocks"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@storybook/test"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@storybook/vue3"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@storybook/vue3-vite"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@vitejs/plugin-vue"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@vitest/coverage-v8"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: jsdom
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: msw
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: storybook
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: vite-plugin-vue-devtools
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: vitest
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Aug 19, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 21, 2024

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

@dependabot dependabot bot closed this Aug 21, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/development-dependencies-91bfb40a30 branch August 21, 2024 17:38
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant