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 development-dependencies group with 12 updates #305

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 25, 2023

Bumps the development-dependencies group with 12 updates:

Package From To
depcheck 1.4.5 1.4.6
prettier 3.0.2 3.0.3
@testing-library/jest-dom 6.1.2 6.1.3
@testing-library/user-event 14.4.3 14.5.1
@types/jest-axe 3.5.5 3.5.6
@types/lodash 4.14.197 4.14.199
@types/node 16.18.44 16.18.54
eslint 8.47.0 8.50.0
msw 1.2.3 1.3.1
typescript 5.1.6 5.2.2
@playwright/test 1.37.1 1.38.1
eslint-plugin-playwright 0.15.3 0.16.0

Updates depcheck from 1.4.5 to 1.4.6

Release notes

Sourced from depcheck's releases.

1.4.6

v1.4.6 (2023-09-11)

Full Changelog

Closed issues:

  • Add explicitResourceManagement to default TS babel config #833
  • Flag to make logs readable and less verbose #759

Merged pull requests:

  • Add explicitResourceManagement to TypeScript babel settings #834 (jtbandes)
  • Support projects field in jest configuration #831 (dobesv)
  • Handle scoped package bin with default name #830 (dobesv)
  • feat: add --quiet flag to suppress No depcheck issue messages #829 (openam)
  • fix(sass): don't detect transitive dependencies #827 (miluoshi)
  • feat(tsconfig): support tsconfig.json files with comments #826 (miluoshi)
  • fix(storybook): parse package names out of addons array #825 (miluoshi)
Changelog

Sourced from depcheck's changelog.

v1.4.6 (2023-09-11)

Full Changelog

Closed issues:

  • Add explicitResourceManagement to default TS babel config #833
  • Flag to make logs readable and less verbose #759

Merged pull requests:

  • Add explicitResourceManagement to TypeScript babel settings #834 (jtbandes)
  • Support projects field in jest configuration #831 (dobesv)
  • Handle scoped package bin with default name #830 (dobesv)
  • feat: add --quiet flag to suppress No depcheck issue messages #829 (openam)
  • fix(sass): don't detect transitive dependencies #827 (miluoshi)
  • feat(tsconfig): support tsconfig.json files with comments #826 (miluoshi)
  • fix(storybook): parse package names out of addons array #825 (miluoshi)
Commits
  • 381fa30 Merge pull request #826 from miluoshi/tsconfig-jsonc
  • 72bb511 Merge pull request #827 from miluoshi/sass-refactored
  • d24d28f Merge pull request #830 from dobesv/scoped-package-bin-no-key-fixup
  • c64c3e5 Merge pull request #831 from dobesv/jest-projects
  • d07d214 Merge pull request #834 from jtbandes/jacob/explicitResourceManagement
  • 2687939 Add explicitResourceManagement
  • fa8c49e Support projects field in jest configuration
  • acb6fdd Handle scoped package bin with default name
  • 3ae0c5e Merge pull request #829 from openam/quiet-flag
  • 9bb4931 feat: add --quiet flag to suppress No depcheck issue messages
  • Additional commits viewable in compare view

Updates prettier from 3.0.2 to 3.0.3

Release notes

Sourced from prettier's releases.

3.0.3

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.0.3

diff

Add preferUnplugged: true to package.json (#15169 by @​fisker and @​so1ve)

Prettier v3 uses dynamic imports, user will need to unplug Prettier when Yarn's PnP mode is enabled, add preferUnplugged: true to package.json, so Yarn will install Prettier as unplug by default.

Support shared config that forbids require() (#15233 by @​fisker)

If an external shared config package is used, and the package exports don't have require or default export.

In Prettier 3.0.2 Prettier fails when attempt to require() the package, and throws an error.

Error [ERR_PACKAGE_PATH_NOT_EXPORTED]: No "exports" main defined in <packageName>/package.json

Allow argument of require() to break (#15256 by @​fisker)

// Input
const plugin = require(
  global.STANDALONE
    ? path.join(__dirname, "../standalone.js")
    : path.join(__dirname, "..")
);
// Prettier 3.0.2
const plugin = require(global.STANDALONE
? path.join(__dirname, "../standalone.js")
: path.join(__dirname, ".."));
// Prettier 3.0.3
const plugin = require(
global.STANDALONE
? path.join(__dirname, "../standalone.js")
: path.join(__dirname, "..")
);

Do not print trailing commas in arrow function type parameter lists in ts code blocks (#15286 by @​sosukesuzuki)

<!-- Input -->
```ts
const foo = <T>() => {}
```
</tr></table> 

... (truncated)

Commits

Updates @testing-library/jest-dom from 6.1.2 to 6.1.3

Release notes

Sourced from @​testing-library/jest-dom's releases.

v6.1.3

6.1.3 (2023-09-06)

Bug Fixes

Commits

Updates @testing-library/user-event from 14.4.3 to 14.5.1

Release notes

Sourced from @​testing-library/user-event's releases.

v14.5.1

14.5.1 (2023-09-15)

Bug Fixes

  • incorrect default import from @​testing-library/dom (#1162) (d7483f0)

v14.5.0

14.5.0 (2023-09-14)

Bug Fixes

  • exports: add a named export for userEvent (4019cee), closes #1146

Features

  • types: Add additional type exports for UserEvent & Options (#1112) (da00e8d)
Commits
  • d7483f0 fix: incorrect default import from @​testing-library/dom (#1162)
  • 4be87b3 chore: swap release script
  • d95121d chore: add --experimental-import-meta-resolve
  • 8779eae chore: format, lint, fix lint
  • 4019cee fix(exports): add a named export for userEvent
  • da00e8d feat(types): Add additional type exports for UserEvent & Options (#1112)
  • 7a305de chore: fix snapshot testing (#1090)
  • e93a5af chore: rewrite tests (#1081)
  • See full diff in compare view

Updates @types/jest-axe from 3.5.5 to 3.5.6

Commits

Updates @types/lodash from 4.14.197 to 4.14.199

Commits

Updates @types/node from 16.18.44 to 16.18.54

Commits

Updates eslint from 8.47.0 to 8.50.0

Release notes

Sourced from eslint's releases.

v8.50.0

Features

  • 27d5a9e feat: add suggestions to array-callback-return (#17590) (Tanuj Kanti)
  • f9082ff feat: flat-rule-tester make sure default config always matches (#17585) (fnx)
  • 83914ad feat: Implement SourceCode#applyInlineConfig() (#17351) (Nicholas C. Zakas)
  • 22a5582 feat: add rule no-object-constructor, deprecate no-new-object (#17576) (Francesco Trotta)
  • 85a3d9e feat: allowVoid option in array-callback-return (#17564) (Tanuj Kanti)

Bug Fixes

  • cc4d26b fix: Ensure deprecated context.parserServices warns (#17593) (Nicholas C. Zakas)
  • 1ea4cfb fix: Ensure all RuleTester tests all deprecated context methods (#17587) (Nicholas C. Zakas)
  • aa1b657 fix: wrong suggestion and message in no-misleading-character-class (#17571) (Yosuke Ota)

Documentation

  • 1800537 docs: Fix and standardize JSX code examples (#17591) (Francesco Trotta)
  • 48a44a7 docs: Add correct/incorrect tags to prefer-arrow-callback (#17589) (Francesco Trotta)
  • 20893d4 docs: fix incorrect tag's place (#17575) (Tanuj Kanti)
  • bd7a71f docs: Update README (GitHub Actions Bot)

Chores

  • f8a8a2d chore: upgrade @​eslint/js@​8.50.0 (#17599) (Milos Djermanovic)
  • 38ada6d chore: package.json update for @​eslint/js release (ESLint Jenkins)

v8.49.0

Features

  • da09f4e feat: Implement onUnreachableCodePathStart/End (#17511) (Nicholas C. Zakas)
  • 32b2327 feat: Emit deprecation warnings in RuleTester (#17527) (Nicholas C. Zakas)
  • acb7df3 feat: add new enforce option to lines-between-class-members (#17462) (Nitin Kumar)

Documentation

  • ecfb54f docs: Update README (GitHub Actions Bot)
  • de86b3b docs: update no-promise-executor-return examples (#17529) (Nitin Kumar)
  • 032c4b1 docs: add typescript template (#17500) (James)
  • cd7da5c docs: Update README (GitHub Actions Bot)

Chores

  • b7621c3 chore: remove browser test from npm test (#17550) (Milos Djermanovic)
  • cac45d0 chore: upgrade @​eslint/js@​8.49.0 (#17549) (Milos Djermanovic)
  • cd39508 chore: package.json update for @​eslint/js release (ESLint Jenkins)
  • 203a971 ci: bump actions/checkout from 3 to 4 (#17530) (dependabot[bot])
  • a40fa50 chore: use eslint-plugin-jsdoc's flat config (#17516) (Milos Djermanovic)
  • 926a286 test: replace Karma with Webdriver.IO (#17126) (Christian Bromann)
  • f591d2c chore: Upgrade config-array (#17512) (Nicholas C. Zakas)

v8.48.0

Features

  • 1fbb3b0 feat: correct update direction in for-direction (#17483) (Francesco Trotta)
  • d73fbf2 feat: rule tester do not create empty valid or invalid test suites (#17475) (fnx)
  • ee2f718 feat: Allow void in rule no-promise-executor-return (#17282) (nopeless)

... (truncated)

Changelog

Sourced from eslint's changelog.

v8.50.0 - September 22, 2023

  • f8a8a2d chore: upgrade @​eslint/js@​8.50.0 (#17599) (Milos Djermanovic)
  • 38ada6d chore: package.json update for @​eslint/js release (ESLint Jenkins)
  • 27d5a9e feat: add suggestions to array-callback-return (#17590) (Tanuj Kanti)
  • f9082ff feat: flat-rule-tester make sure default config always matches (#17585) (fnx)
  • 83914ad feat: Implement SourceCode#applyInlineConfig() (#17351) (Nicholas C. Zakas)
  • cc4d26b fix: Ensure deprecated context.parserServices warns (#17593) (Nicholas C. Zakas)
  • 1ea4cfb fix: Ensure all RuleTester tests all deprecated context methods (#17587) (Nicholas C. Zakas)
  • 1800537 docs: Fix and standardize JSX code examples (#17591) (Francesco Trotta)
  • 22a5582 feat: add rule no-object-constructor, deprecate no-new-object (#17576) (Francesco Trotta)
  • 48a44a7 docs: Add correct/incorrect tags to prefer-arrow-callback (#17589) (Francesco Trotta)
  • aa1b657 fix: wrong suggestion and message in no-misleading-character-class (#17571) (Yosuke Ota)
  • 20893d4 docs: fix incorrect tag's place (#17575) (Tanuj Kanti)
  • 85a3d9e feat: allowVoid option in array-callback-return (#17564) (Tanuj Kanti)
  • bd7a71f docs: Update README (GitHub Actions Bot)

v8.49.0 - September 8, 2023

  • b7621c3 chore: remove browser test from npm test (#17550) (Milos Djermanovic)
  • cac45d0 chore: upgrade @​eslint/js@​8.49.0 (#17549) (Milos Djermanovic)
  • cd39508 chore: package.json update for @​eslint/js release (ESLint Jenkins)
  • ecfb54f docs: Update README (GitHub Actions Bot)
  • da09f4e feat: Implement onUnreachableCodePathStart/End (#17511) (Nicholas C. Zakas)
  • de86b3b docs: update no-promise-executor-return examples (#17529) (Nitin Kumar)
  • 203a971 ci: bump actions/checkout from 3 to 4 (#17530) (dependabot[bot])
  • 32b2327 feat: Emit deprecation warnings in RuleTester (#17527) (Nicholas C. Zakas)
  • acb7df3 feat: add new enforce option to lines-between-class-members (#17462) (Nitin Kumar)
  • 032c4b1 docs: add typescript template (#17500) (James)
  • cd7da5c docs: Update README (GitHub Actions Bot)
  • a40fa50 chore: use eslint-plugin-jsdoc's flat config (#17516) (Milos Djermanovic)
  • 926a286 test: replace Karma with Webdriver.IO (#17126) (Christian Bromann)
  • f591d2c chore: Upgrade config-array (#17512) (Nicholas C. Zakas)

v8.48.0 - August 25, 2023

  • 8dd3cec chore: upgrade @​eslint/js@​8.48.0 (#17501) (Milos Djermanovic)
  • 6d0496e chore: package.json update for @​eslint/js release (ESLint Jenkins)
  • 7a51d77 docs: no-param-reassign mention strict mode (#17494) (Stephen Hardy)
  • 9cd7ac2 docs: add fetch script to package.json conventions (#17459) (Nitin Kumar)
  • 7234f6a fix: update RuleTester JSDoc and deprecations (#17496) (Jonas Berlin)
  • 1fbb3b0 feat: correct update direction in for-direction (#17483) (Francesco Trotta)
  • 9d4216d chore: Refactor and document CodePathSegment (#17474) (Nicholas C. Zakas)
  • cab21e6 docs: advice for inline disabling of rules (#17458) (Ashish Yadav)
  • 056499d docs: fix example of flat config from plugin (#17482) (Francesco Trotta)
  • d73fbf2 feat: rule tester do not create empty valid or invalid test suites (#17475) (fnx)
  • ee2f718 feat: Allow void in rule no-promise-executor-return (#17282) (nopeless)
  • 9e9edf9 docs: update documentation URL in error message (#17465) (Nitin Kumar)
Commits

Updates msw from 1.2.3 to 1.3.1

Release notes

Sourced from msw's releases.

v1.3.1 (2023-09-13)

Bug Fixes

  • pin "headers-polyfill" to 3.2.5 (#1736) (2e53ae73bd734c435ac447ca2b60cdaaebc1390b) @​kettanaito

v1.3.0 (2023-09-03)

Features

v1.2.5 (2023-08-28)

Bug Fixes

  • allow installs with any version of pnpm (#1713) (d35e851faa3d75b58b8051084c50b7f02491df84) @​kettanaito

v1.2.4 (2023-08-25)

Bug Fixes

Commits

Updates typescript from 5.1.6 to 5.2.2

Release notes

Sourced from typescript's releases.

TypeScript 5.2

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.2 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.2 Beta

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on npm.

Commits
  • 9684ba6 Cherry-pick fix for cross-file inlay hints (#55476) to release-5.2 and LKG ...
  • 555ef99 Bump version to 5.2.2 and LKG
  • 6074b9d Update LKG for 5.2.1 RC.
  • b778ed1 Merge commit 'e936eb13d2900f21d79553c32a704307c7ad03dd' into release-5.2
  • 10b9962 Bump version to 5.2.1-rc and LKG
  • e936eb1 Update package-lock.json
  • e36cd57 Update package-lock.json
  • 581fba1 Update package-lock.json
  • 8fc8c95 Decorators normative updates (#55276)
  • b1c4dc4 Fix class name references (#55262)
  • Additional commits viewable in compare view

Updates @playwright/test from 1.37.1 to 1.38.1

Release notes

Sourced from @​playwright/test's releases.

v1.38.1

Highlights

microsoft/playwright#27071 - expect(value).toMatchSnapshot() deprecation announcement on V1.38 microsoft/playwright#27072 - [BUG] PWT trace viewer fails to load trace and throws TypeError microsoft/playwright#27073 - [BUG] RangeError: Invalid time value microsoft/playwright#27087 - [REGRESSION]: npx playwright test --list prints all tests twice microsoft/playwright#27113 - [REGRESSION]: No longer able to extend PlaywrightTest.Matchers type for locators and pages microsoft/playwright#27144 - [BUG]can not display trace microsoft/playwright#27163 - [REGRESSION] Single Quote Wrongly Escaped by Locator When Using Unicode Flag microsoft/playwright#27181 - [BUG] evaluate serializing fails at 1.38

Browser Versions

  • Chromium 117.0.5938.62
  • Mozilla Firefox 117.0
  • WebKit 17.0

This version was also tested against the following stable channels:

  • Google Chrome 116
  • Microsoft Edge 116

v1.38.0

UI Mode Updates

Playwright UI Mode

  1. Zoom into time range.
  2. Network panel redesign.

New APIs

  • [browserContext.on('weberror')]
  • [locator.pressSequentially()]
  • The [reporter.onEnd()] now reports startTime and total run duration.

Deprecations

  • The following methods were deprecated: [page.type()], [frame.type()], [locator.type()] and [elementHandle.type()]. Please use [locator.fill()] instead which is much faster. Use [locator.pressSequentially()] only if there is a special keyboard handling on the page, and you need to press keys one-by-one.

Breaking Changes: Playwright no longer downloads browsers automatically

[!NOTE] If you are using @playwright/test package, this change does not affect you.

Playwright recommends to use @playwright/test package and download browsers via npx playwright install command. If you are following this recommendation, nothing has changed for you.

... (truncated)

Commits

Updates eslint-plugin-playwright from 0.15.3 to 0.16.0

Release notes

Sourced from eslint-plugin-playwright's releases.

v0.16.0

0.16.0 (2023-08-27)

Features

  • Add no-raw-locators rule (#160) (81d7f54)
  • Allow additional assert function names with expect-expect (#155) (b00c3e3)
Commits
  • 81d7f54 feat: Add no-raw-locators rule (#160)
  • a122c85 chore: Format recent changes
  • b00c3e3 feat: Allow additional assert function names with expect-expect (#155)
  • aca762e Merge pull request #158 from playwright-community/dependabot/npm_and_yarn/wor...
  • 85fe754 build(deps): bump word-wrap from 1.2.3 to 1.2.4
  • See full diff in compare view

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
@types/node [>= 18.a, < 19]
@types/node [>= 17.a, < 18]
@types/node [>= 20.a, < 21]

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the development-dependencies group with 12 updates:

| Package | From | To |
| --- | --- | --- |
| [depcheck](https://github.com/depcheck/depcheck) | `1.4.5` | `1.4.6` |
| [prettier](https://github.com/prettier/prettier) | `3.0.2` | `3.0.3` |
| [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) | `6.1.2` | `6.1.3` |
| [@testing-library/user-event](https://github.com/testing-library/user-event) | `14.4.3` | `14.5.1` |
| [@types/jest-axe](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest-axe) | `3.5.5` | `3.5.6` |
| [@types/lodash](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/lodash) | `4.14.197` | `4.14.199` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `16.18.44` | `16.18.54` |
| [eslint](https://github.com/eslint/eslint) | `8.47.0` | `8.50.0` |
| [msw](https://github.com/mswjs/msw) | `1.2.3` | `1.3.1` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.1.6` | `5.2.2` |
| [@playwright/test](https://github.com/Microsoft/playwright) | `1.37.1` | `1.38.1` |
| [eslint-plugin-playwright](https://github.com/playwright-community/eslint-plugin-playwright) | `0.15.3` | `0.16.0` |


Updates `depcheck` from 1.4.5 to 1.4.6
- [Release notes](https://github.com/depcheck/depcheck/releases)
- [Changelog](https://github.com/depcheck/depcheck/blob/main/CHANGELOG.md)
- [Commits](depcheck/depcheck@v1.4.5...v1.4.6)

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

Updates `@testing-library/jest-dom` from 6.1.2 to 6.1.3
- [Release notes](https://github.com/testing-library/jest-dom/releases)
- [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md)
- [Commits](testing-library/jest-dom@v6.1.2...v6.1.3)

Updates `@testing-library/user-event` from 14.4.3 to 14.5.1
- [Release notes](https://github.com/testing-library/user-event/releases)
- [Changelog](https://github.com/testing-library/user-event/blob/main/CHANGELOG.md)
- [Commits](testing-library/user-event@v14.4.3...v14.5.1)

Updates `@types/jest-axe` from 3.5.5 to 3.5.6
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest-axe)

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

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

Updates `eslint` from 8.47.0 to 8.50.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v8.47.0...v8.50.0)

Updates `msw` from 1.2.3 to 1.3.1
- [Release notes](https://github.com/mswjs/msw/releases)
- [Changelog](https://github.com/mswjs/msw/blob/main/CHANGELOG.md)
- [Commits](mswjs/msw@v1.2.3...v1.3.1)

Updates `typescript` from 5.1.6 to 5.2.2
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.1.6...v5.2.2)

Updates `@playwright/test` from 1.37.1 to 1.38.1
- [Release notes](https://github.com/Microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.37.1...v1.38.1)

Updates `eslint-plugin-playwright` from 0.15.3 to 0.16.0
- [Release notes](https://github.com/playwright-community/eslint-plugin-playwright/releases)
- [Changelog](https://github.com/playwright-community/eslint-plugin-playwright/blob/main/CHANGELOG.md)
- [Commits](playwright-community/eslint-plugin-playwright@v0.15.3...v0.16.0)

---
updated-dependencies:
- dependency-name: depcheck
  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-patch
  dependency-group: development-dependencies
- dependency-name: "@testing-library/jest-dom"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@testing-library/user-event"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@types/jest-axe"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@types/lodash"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: msw
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: typescript
  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: eslint-plugin-playwright
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner September 25, 2023 01:18
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Sep 25, 2023
@changeset-bot
Copy link

changeset-bot bot commented Sep 25, 2023

⚠️ No Changeset found

Latest commit: 6d8475c

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 2, 2023

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

@dependabot dependabot bot closed this Oct 2, 2023
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/development-dependencies-ebe18c347d branch October 2, 2023 01:41
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