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 dev-deps group with 29 updates #2705

Merged
merged 7 commits into from
Jul 7, 2024

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the dev-deps group with 29 updates:

Package From To
@changesets/cli 2.27.1 2.27.7
@playwright/test 1.44.0 1.45.1
@types/node-fetch 2.6.2 2.6.11
@types/web 0.0.65 0.0.151
eslint-config-prettier 9.0.0 9.1.0
eslint-plugin-import 2.29.0 2.29.1
eslint-plugin-jsx-a11y 6.7.1 6.9.0
eslint-plugin-prettier 5.0.1 5.1.3
eslint-plugin-react 7.33.2 7.34.3
eslint-plugin-react-hooks 4.6.0 4.6.2
eslint-plugin-tsdoc 0.2.17 0.3.0
knip 5.9.4 5.24.1
memfs 4.8.2 4.9.3
nodemon 3.0.3 3.1.4
tsx 4.7.0 4.16.2
turbo 2.0.4 2.0.6
vite 5.2.10 5.3.3
webdriverio 8.39.0 8.39.1
autoprefixer 10.4.14 10.4.19
postcss 8.4.24 8.4.39
bun 1.1.17 1.1.18
@vitejs/plugin-react 4.2.1 4.3.1
vue 3.4.29 3.4.31
ethers 6.7.1 6.13.1
@graphql-codegen/typescript 4.0.8 4.0.9
@graphql-codegen/typescript-operations 4.2.2 4.2.3
@types/lodash.camelcase 4.3.7 4.3.9
@types/cli-table 0.3.1 0.3.4

Updates @changesets/cli from 2.27.1 to 2.27.7

Release notes

Sourced from @​changesets/cli's releases.

@​changesets/cli@​2.27.7

Patch Changes

  • #1047 d108fa6 Thanks @​patzick! - Fixed a crash that could occur when depending on a tagged version of another workspace package.

  • #1400 dd6e5bb Thanks @​Andarist! - Fixed a crash that prevented the CLI from running in a scenario when a workspace depends on the root workspace

  • Updated dependencies [d108fa6, dd6e5bb, dd6e5bb]:

    • @​changesets/apply-release-plan@​7.0.4
    • @​changesets/config@​3.0.2
    • @​changesets/get-dependents-graph@​2.1.1
    • @​changesets/assemble-release-plan@​6.0.3
    • @​changesets/get-release-plan@​4.0.3

@​changesets/cli@​2.27.6

Patch Changes

  • #1392 f295b3e Thanks @​bluwy! - Replace meow dependency with mri to reduce the number of transitive dependencies

  • #1390 6a3452e Thanks @​bluwy! - Display changeset status --verbose in list form and remove tty-table dependency

@​changesets/cli@​2.27.5

Patch Changes

  • #1370 5e9d33a Thanks @​Andarist! - Fixed a regression that caused changeset version to fail on packages having a dev dependency on a skipped package.

  • Updated dependencies [5e9d33a]:

    • @​changesets/get-dependents-graph@​2.1.0
    • @​changesets/assemble-release-plan@​6.0.2
    • @​changesets/config@​3.0.1
    • @​changesets/get-release-plan@​4.0.2
    • @​changesets/apply-release-plan@​7.0.3

@​changesets/cli@​2.27.4

Patch Changes

  • #1361 954a16a Thanks @​jakebailey! - Version 2.25.0 introduced the privatePackage configuration option with default { version: false, tag: false }; due to a bug, these options were not respected in all commands, leading to commands like changeset tag still tagging private packages. This has been fixed, and all packages now respect this option.

  • #1369 d729d8c Thanks @​Andarist! - changeset tag should now correctly skip tags that exist on the remote

  • Updated dependencies [954a16a]:

    • @​changesets/assemble-release-plan@​6.0.1
    • @​changesets/apply-release-plan@​7.0.2
    • @​changesets/get-release-plan@​4.0.1

@​changesets/cli@​2.27.3

Patch Changes

  • #1357 18c966a Thanks @​Andarist! - Fixed an issue with changeset status executed without since argument. It should now correctly use the configured base branch as the default value.

... (truncated)

Commits

Updates @playwright/test from 1.44.0 to 1.45.1

Release notes

Sourced from @​playwright/test's releases.

v1.45.1

Highlights

microsoft/playwright#31473 - [REGRESSION]: Playwright raises an error ENOENT: no such file or directory, open 'test-results/.playwright-artifacts-0/hash.zip' with Electron microsoft/playwright#31442 - [REGRESSION]: Locators of elements changing from/to hidden have operations hanging when using --disable-web-security microsoft/playwright#31431 - [REGRESSION]: NewTab doesn't work properly with Chrome with --disable-web-security microsoft/playwright#31425 - [REGRESSION]: beforeEach hooks are not skipped when describe condition depends on fixtures microsoft/playwright#31491 - [REGRESSION]: @playwright/experimental-ct-react doesn't work with VSCode extension and PNPM

Browser Versions

  • Chromium 127.0.6533.5
  • Mozilla Firefox 127.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 126
  • Microsoft Edge 126

v1.45.0

Clock

Utilizing the new Clock API allows to manipulate and control time within tests to verify time-related behavior. This API covers many common scenarios, including:

  • testing with predefined time;
  • keeping consistent time and timers;
  • monitoring inactivity;
  • ticking through time manually.
// Initialize clock and let the page load naturally.
await page.clock.install({ time: new Date('2024-02-02T08:00:00') });
await page.goto('http://localhost:3333');
// Pretend that the user closed the laptop lid and opened it again at 10am,
// Pause the time once reached that point.
await page.clock.pauseAt(new Date('2024-02-02T10:00:00'));
// Assert the page state.
await expect(page.getByTestId('current-time')).toHaveText('2/2/2024, 10:00:00 AM');
// Close the laptop lid again and open it at 10:30am.
await page.clock.fastForward('30:00');
await expect(page.getByTestId('current-time')).toHaveText('2/2/2024, 10:30:00 AM');

See the clock guide for more details.

Test runner

  • New CLI option --fail-on-flaky-tests that sets exit code to 1 upon any flaky tests. Note that by default, the test runner exits with code 0 when all failed tests recovered upon a retry. With this option, the test run will fail in such case.

... (truncated)

Commits

Updates @types/node-fetch from 2.6.2 to 2.6.11

Commits

Updates @types/web from 0.0.65 to 0.0.151

Release notes

Sourced from @​types/web's releases.

@​types/web@​0.0.151

index.d.ts

No changes

iterable.d.ts

No changes

@​types/web@​0.0.150

index.d.ts

New interfaces

  • MediaSourceHandle
  • ViewTransition

Modified

  • CSSStyleDeclaration
    • Added: viewTransitionName
  • Document
    • Added: startViewTransition
  • Element
    • Added: getHTML
  • GeolocationCoordinates
    • Added: toJSON
  • GeolocationPosition
    • Added: toJSON
  • HTMLTemplateElement
    • Added: shadowRootSerializable
  • MediaKeys
    • Added: getStatusForPolicy
  • PopStateEvent
    • Added: hasUAVisualTransition
  • ShadowRoot
    • Added: serializable, getHTML

iterable.d.ts

No changes

@​types/web@​0.0.149

index.d.ts

Non-value types

  • ImportMeta
    • Added: resolve

... (truncated)

Commits

Updates eslint-config-prettier from 9.0.0 to 9.1.0

Changelog

Sourced from eslint-config-prettier's changelog.

Version 9.1.0 (2023-12-02)

  • Added: [unicorn/template-indent], (as a [special rule][unicorn/template-indent-special]). Thanks to Gürgün Dayıoğlu (@​gurgunday)!
  • Changed: All the [formatting rules that were deprecated in ESLint 8.53.0][deprecated-8.53.0] are now excluded if you set the ESLINT_CONFIG_PRETTIER_NO_DEPRECATED environment variable.
Commits
  • 40c7f3d eslint-config-prettier v9.1.0
  • 4110dff Merge pull request #271 from prettier/deprecated
  • 6d0bd92 Update tests to handle newly deprecated rules
  • 4c876b9 Move rules deprecated in ESLint 8.53.0 to the deprecated section
  • 24445c0 Use specialRule constant
  • 7827196 Group deprecated and removed rules by version
  • 48f804c Roll back to ESLint 8.52.0 for now
  • 16f03b8 Update Prettier
  • b06d618 Update npm packages
  • 25fc427 turn off unicorn/template-indent (#269)
  • Additional commits viewable in compare view

Updates eslint-plugin-import from 2.29.0 to 2.29.1

Release notes

Sourced from eslint-plugin-import's releases.

v2.29.1

Full Changelog: import-js/eslint-plugin-import@v2.29.0...v2.29.1

Changelog

Sourced from eslint-plugin-import's changelog.

[2.29.1] - 2023-12-14

Fixed

  • [no-extraneous-dependencies]: ignore export type { ... } from '...' when includeTypes is false (#2919, thanks [@​Pandemic1617])
  • [no-unused-modules]: support export patterns with array destructuring (#2930, thanks [@​ljharb])
  • [Deps] update tsconfig-paths (#2447, thanks [@​domdomegg])
Commits
  • ee5fade Bump to 2.29.1
  • 48fec35 [Deps] update tsconfig-paths
  • 80aee73 [Dev Deps] update chai, eslint-doc-generator, markdownlint-cli
  • 8c83eaf [Tests] node v21.3 has a broken fs.writeFile
  • e67259e [Fix] no-unused-modules: support export patterns with array destructuring
  • 9fd3c42 [Tests] no-duplicates: add passing test
  • 12f0300 [Fix] no-extraneous-dependencies: ignore export type { ... } from '...' w...
  • See full diff in compare view

Updates eslint-plugin-jsx-a11y from 6.7.1 to 6.9.0

Release notes

Sourced from eslint-plugin-jsx-a11y's releases.

v6.9.0

Added

  • add support for Flat Config 6b5f096
  • no-noninteractive-element-to-interactive-role: allow menuitemradio and menuitemcheckbox on <li> c0733f9

Fixed

Changed

Full Changelog: jsx-eslint/eslint-plugin-jsx-a11y@v6.8.0...v6.9.0

v6.8.0

Full Changelog: jsx-eslint/eslint-plugin-jsx-a11y@v6.7.1...v6.8.0

Changelog

Sourced from eslint-plugin-jsx-a11y's changelog.

v6.9.0 - 2024-06-19

Fixed

Commits

  • [New] add support for Flat Config 6b5f096
  • Revert "[Fix] isNonInteractiveElement: Upgrade aria-query to 5.3.0 and axobject-query to 3.2.1" 75d5dd7
  • [Robustness] use safe-regex-test 4c7e781
  • [actions] update actions/checkout 51a1ca7
  • [Dev Deps] update @babel/cli, @babel/core, @babel/eslint-parser, @babel/plugin-transform-flow-strip-types, @babel/register, eslint-doc-generator, object.entries 1271ac1
  • [Dev Deps] update @babel/cli, @babel/core, @babel/register, aud, eslint-plugin-import, npmignore, object.assign 540cb7a
  • [Deps] update @babel/runtime, array-includes, es-iterator-helpers, hasown, object.fromentries, safe-regex-test 5d14408
  • [Deps] pin aria-query and axobject-query, add ls-engines test to CI 32fd82c
  • [Dev Deps] update @babel/core, @babel/eslint-parser, @babel/plugin-transform-flow-strip-types, eslint-doc-generator d1b4114
  • [Fix] ensure summary remains non-interactive 6a048da
  • [Deps] remove @babel/runtime 0a98ad8
  • [New] no-noninteractive-element-to-interactive-role: allow menuitemradio and menuitemcheckbox on <li> c0733f9
  • [Deps] update @babel/runtime, safe-regex-test 0d5321a
  • [actions] pin codecov to v3.1.5 961817f
  • [Deps] unpin axe-core b3559cf
  • [Deps] move object.entries to dev deps 1be7b70
  • [Deps] update @babel/runtime 2a48abb
  • [Deps] update @babel/runtime 1adec35

v6.8.0 - 2023-11-01

Merged

Fixed

Commits

  • [Tests] migrate helper parsers function from eslint-plugin-react ce4d57f
  • [Refactor] use es-iterator-helpers 52de824
  • [New] mouse-events-have-key-events: add hoverInHandlers/hoverOutHandlers config db64898
  • [New] add polymorphicPropName setting for polymorphic components fffb05b
  • [Fix] isNonInteractiveElement: Upgrade aria-query to 5.3.0 and axobject-query to 3.2.1 64bfea6
  • [Refactor] use hasown instead of has 9a8edde
  • [actions] update used actions 10c061a
  • [Dev Deps] update @babel/cli, @babel/core, @babel/eslint-parser, @babel/plugin-transform-flow-strip-types, @babel/register, aud, eslint-doc-generator, eslint-plugin-import, minimist 6d5022d
  • [Dev Deps] update @babel/cli, @babel/core, @babel/eslint-parser, @babel/register, eslint-doc-generator, eslint-plugin-import 4dc7f1e

... (truncated)

Commits
  • 882bd4d v6.9.0
  • 961817f [actions] pin codecov to v3.1.5
  • 6a048da [Fix] ensure summary remains non-interactive
  • 75d5dd7 Revert "[Fix] isNonInteractiveElement: Upgrade aria-query to 5.3.0 and axob...
  • 32fd82c [Deps] pin aria-query and axobject-query, add ls-engines test to CI
  • 0a98ad8 [Deps] remove @babel/runtime
  • 6b5f096 [New] add support for Flat Config
  • 51a1ca7 [actions] update actions/checkout
  • 5d14408 [Deps] update @babel/runtime, array-includes, es-iterator-helpers, `has...
  • 1271ac1 [Dev Deps] update @babel/cli, @babel/core, @babel/eslint-parser, `@babe...
  • Additional commits viewable in compare view

Updates eslint-plugin-prettier from 5.0.1 to 5.1.3

Release notes

Sourced from eslint-plugin-prettier's releases.

v5.1.3

Patch Changes

Full Changelog: prettier/eslint-plugin-prettier@v5.1.2...v5.1.3

v5.1.2

5.1.2

Patch Changes

  • #623 8210e44 Thanks @​BPScott! - Add exports mapping to package.json, to allow import eslintPluginRecommended from 'eslint-plugin-prettier/recommended' to work as expected.

    Strictly speaking this is a breaking change as it removes the ability for people to import from "eslint-plugin-prettier/eslint-plugin-prettier.js" and "eslint-plugin-prettier/recommended.js" but the former was never recommended in the first place and the latter has only been available for a few days.

  • #621 2b09e7f Thanks @​JounQin! - feat: support parsing markdown via eslint-mdx natively

    What means the following is unnecessary anymore when using with eslint-mdx/eslint-plugin-mdx!

    [
      {
        files: ["**/*.md"],
        rules: { "prettier/prettier": ["error", { parser: "markdown" }] },
      },
      {
        files: ["**/*.mdx"],
        rules: { "prettier/prettier": ["error", { parser: "mdx" }] },
      },
    ]

Full Changelog: prettier/eslint-plugin-prettier@v5.1.1...v5.1.2

v5.1.1

5.1.1

Patch Changes

v.5.1.0

Minor Changes

  • #616 3856413 Thanks @​BPScott! - Add recommended config for the flat config format.

    If you are using flat config, import the recommended config from eslint-plugin-prettier/recommended. Like the legacy format recommended config, this automatically includes the contents of eslint-config-prettier.

... (truncated)

Changelog

Sourced from eslint-plugin-prettier's changelog.

5.1.3

Patch Changes

5.1.2

Patch Changes

  • #623 8210e44 Thanks @​BPScott! - Add exports mapping to package.json, to allow import eslintPluginRecommended from 'eslint-plugin-prettier/recommended' to work as expected.

    Strictly speaking this is a breaking change as it removes the ability for people to import from "eslint-plugin-prettier/eslint-plugin-prettier.js" and "eslint-plugin-prettier/recommended.js" but the former was never recommended in the first place and the latter has only been available for a few days.

  • #621 2b09e7f Thanks @​JounQin! - feat: support parsing markdown via eslint-mdx natively

    What means the following is unnecessary anymore when using with eslint-mdx/eslint-plugin-mdx!

    [
      {
        files: ["**/*.md"],
        rules: { "prettier/prettier": ["error", { parser: "markdown" }] },
      },
      {
        files: ["**/*.mdx"],
        rules: { "prettier/prettier": ["error", { parser: "mdx" }] },
      },
    ]

5.1.1

Patch Changes

5.1.0

Minor Changes

  • #616 3856413 Thanks @​BPScott! - Add recommended config for the flat config format.

    If you are using flat config, import the recommended config from eslint-plugin-prettier/recommended. Like the legacy format recommended config, this automatically includes the contents of eslint-config-prettier.

    // eslint.config.js
    const eslintPluginPrettierRecommended = require("eslint-plugin-prettier/recommended");
    module.exports = [

... (truncated)

Commits
  • 248cd17 chore: release eslint-plugin-prettier (#636)
  • 985b33c chore: add package.json into exports map (#629)
  • f985718 ci: enable NPM_TOKEN for releasing automatically (#631)
  • fa1e1e5 chore: add more ignoring file patterns on formatting (#627)
  • 0ea812c test: enable testing on .svelte files (#628)
  • 188487b chore: add more related funding links
  • d102278 chore: release eslint-plugin-prettier (#624)
  • b02fe90 chore: bump all upgradable (dev)Dependencies (#625)
  • 2b09e7f feat: support parsing markdown via eslint-mdx natively (#621)
  • 5f762df docs: change open collective funding info (#626)
  • Additional commits viewable in compare view

Updates eslint-plugin-react from 7.33.2 to 7.34.3

Release notes

Sourced from eslint-plugin-react's releases.

v7.34.3

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)
  • [no-object-type-as-default-prop]: enable rule for components with many parameters (#3768[] @​JulienR1)
  • [jsx-key]: incorrect behavior for checkKeyMustBeforeSpread with map callbacks (#3769[] @​akulsr0)

#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 #1098: jsx-eslint/eslint-plugin-react#1098 #1101: jsx-eslint/eslint-plugin-react#1101 #1103: jsx-eslint/eslint-plugin-react#1103 #110: jsx-eslint/eslint-plugin-react#110 #1116: jsx-eslint/eslint-plugin-react#1116 #1117: jsx-eslint/eslint-plugin-react#1117 #1119: jsx-eslint/eslint-plugin-react#1119 #1121: jsx-eslint/eslint-plugin-react#1121 #1122: jsx-eslint/eslint-plugin-react#1122 #1123: jsx-eslint/eslint-plugin-react#1123 #1130: jsx-eslint/eslint-plugin-react#1130 #1131: jsx-eslint/eslint-plugin-react#1131 #1132: jsx-eslint/eslint-plugin-react#1132 #1134: jsx-eslint/eslint-plugin-react#1134

... (truncated)

Changelog

Sourced from eslint-plugin-react's changelog.

7.34.3 - 2024.06.18

Fixed

  • [prop-types]: null-check r...

    Description has been truncated

Bumps the dev-deps group with 29 updates:

| Package | From | To |
| --- | --- | --- |
| [@changesets/cli](https://github.com/changesets/changesets) | `2.27.1` | `2.27.7` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.44.0` | `1.45.1` |
| [@types/node-fetch](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node-fetch) | `2.6.2` | `2.6.11` |
| [@types/web](https://github.com/microsoft/TypeScript-DOM-Lib-Generator) | `0.0.65` | `0.0.151` |
| [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) | `9.0.0` | `9.1.0` |
| [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import) | `2.29.0` | `2.29.1` |
| [eslint-plugin-jsx-a11y](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y) | `6.7.1` | `6.9.0` |
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | `5.0.1` | `5.1.3` |
| [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) | `7.33.2` | `7.34.3` |
| [eslint-plugin-react-hooks](https://github.com/facebook/react/tree/HEAD/packages/eslint-plugin-react-hooks) | `4.6.0` | `4.6.2` |
| [eslint-plugin-tsdoc](https://github.com/microsoft/tsdoc/tree/HEAD/eslint-plugin) | `0.2.17` | `0.3.0` |
| [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip) | `5.9.4` | `5.24.1` |
| [memfs](https://github.com/streamich/memfs) | `4.8.2` | `4.9.3` |
| [nodemon](https://github.com/remy/nodemon) | `3.0.3` | `3.1.4` |
| [tsx](https://github.com/privatenumber/tsx) | `4.7.0` | `4.16.2` |
| [turbo](https://github.com/vercel/turbo) | `2.0.4` | `2.0.6` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.2.10` | `5.3.3` |
| [webdriverio](https://github.com/webdriverio/webdriverio/tree/HEAD/packages/webdriverio) | `8.39.0` | `8.39.1` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.14` | `10.4.19` |
| [postcss](https://github.com/postcss/postcss) | `8.4.24` | `8.4.39` |
| [bun](https://github.com/oven-sh/bun) | `1.1.17` | `1.1.18` |
| [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `4.2.1` | `4.3.1` |
| [typedoc](https://github.com/TypeStrong/TypeDoc) | `0.25.13` | `0.26.3` |
| [vue](https://github.com/vuejs/core) | `3.4.29` | `3.4.31` |
| [ethers](https://github.com/ethers-io/ethers.js) | `6.7.1` | `6.13.1` |
| [@graphql-codegen/typescript](https://github.com/dotansimha/graphql-code-generator/tree/HEAD/packages/plugins/typescript/typescript) | `4.0.8` | `4.0.9` |
| [@graphql-codegen/typescript-operations](https://github.com/dotansimha/graphql-code-generator/tree/HEAD/packages/plugins/typescript/operations) | `4.2.2` | `4.2.3` |
| [@types/lodash.camelcase](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/lodash.camelcase) | `4.3.7` | `4.3.9` |
| [@types/cli-table](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/cli-table) | `0.3.1` | `0.3.4` |


Updates `@changesets/cli` from 2.27.1 to 2.27.7
- [Release notes](https://github.com/changesets/changesets/releases)
- [Changelog](https://github.com/changesets/changesets/blob/main/docs/modifying-changelog-format.md)
- [Commits](https://github.com/changesets/changesets/compare/@changesets/cli@2.27.1...@changesets/cli@2.27.7)

Updates `@playwright/test` from 1.44.0 to 1.45.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.44.0...v1.45.1)

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

Updates `@types/web` from 0.0.65 to 0.0.151
- [Release notes](https://github.com/microsoft/TypeScript-DOM-Lib-Generator/releases)
- [Commits](https://github.com/microsoft/TypeScript-DOM-Lib-Generator/compare/@types/web@0.0.65...@types/web@0.0.151)

Updates `eslint-config-prettier` from 9.0.0 to 9.1.0
- [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/eslint-config-prettier@v9.0.0...v9.1.0)

Updates `eslint-plugin-import` from 2.29.0 to 2.29.1
- [Release notes](https://github.com/import-js/eslint-plugin-import/releases)
- [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md)
- [Commits](import-js/eslint-plugin-import@v2.29.0...v2.29.1)

Updates `eslint-plugin-jsx-a11y` from 6.7.1 to 6.9.0
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/releases)
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/main/CHANGELOG.md)
- [Commits](jsx-eslint/eslint-plugin-jsx-a11y@v6.7.1...v6.9.0)

Updates `eslint-plugin-prettier` from 5.0.1 to 5.1.3
- [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.0.1...v5.1.3)

Updates `eslint-plugin-react` from 7.33.2 to 7.34.3
- [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.33.2...v7.34.3)

Updates `eslint-plugin-react-hooks` from 4.6.0 to 4.6.2
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/packages/eslint-plugin-react-hooks/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/HEAD/packages/eslint-plugin-react-hooks)

Updates `eslint-plugin-tsdoc` from 0.2.17 to 0.3.0
- [Changelog](https://github.com/microsoft/tsdoc/blob/main/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/microsoft/tsdoc/commits/eslint-plugin-tsdoc_v0.3.0/eslint-plugin)

Updates `knip` from 5.9.4 to 5.24.1
- [Release notes](https://github.com/webpro-nl/knip/releases)
- [Changelog](https://github.com/webpro-nl/knip/blob/main/packages/knip/.release-it.json)
- [Commits](https://github.com/webpro-nl/knip/commits/5.24.1/packages/knip)

Updates `memfs` from 4.8.2 to 4.9.3
- [Release notes](https://github.com/streamich/memfs/releases)
- [Changelog](https://github.com/streamich/memfs/blob/master/CHANGELOG.md)
- [Commits](streamich/memfs@v4.8.2...v4.9.3)

Updates `nodemon` from 3.0.3 to 3.1.4
- [Release notes](https://github.com/remy/nodemon/releases)
- [Commits](remy/nodemon@v3.0.3...v3.1.4)

Updates `tsx` from 4.7.0 to 4.16.2
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.7.0...v4.16.2)

Updates `turbo` from 2.0.4 to 2.0.6
- [Release notes](https://github.com/vercel/turbo/releases)
- [Changelog](https://github.com/vercel/turbo/blob/main/release.md)
- [Commits](vercel/turborepo@v2.0.4...v2.0.6)

Updates `vite` from 5.2.10 to 5.3.3
- [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.3.3/packages/vite)

Updates `webdriverio` from 8.39.0 to 8.39.1
- [Release notes](https://github.com/webdriverio/webdriverio/releases)
- [Changelog](https://github.com/webdriverio/webdriverio/blob/v8.39.1/CHANGELOG.md)
- [Commits](https://github.com/webdriverio/webdriverio/commits/v8.39.1/packages/webdriverio)

Updates `autoprefixer` from 10.4.14 to 10.4.19
- [Release notes](https://github.com/postcss/autoprefixer/releases)
- [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md)
- [Commits](postcss/autoprefixer@10.4.14...10.4.19)

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

Updates `bun` from 1.1.17 to 1.1.18
- [Release notes](https://github.com/oven-sh/bun/releases)
- [Commits](oven-sh/bun@bun-v1.1.17...bun-v1.1.18)

Updates `@vitejs/plugin-react` from 4.2.1 to 4.3.1
- [Release notes](https://github.com/vitejs/vite-plugin-react/releases)
- [Changelog](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite-plugin-react/commits/v4.3.1/packages/plugin-react)

Updates `typedoc` from 0.25.13 to 0.26.3
- [Release notes](https://github.com/TypeStrong/TypeDoc/releases)
- [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md)
- [Commits](TypeStrong/typedoc@v0.25.13...v0.26.3)

Updates `vue` from 3.4.29 to 3.4.31
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](vuejs/core@v3.4.29...v3.4.31)

Updates `ethers` from 6.7.1 to 6.13.1
- [Release notes](https://github.com/ethers-io/ethers.js/releases)
- [Changelog](https://github.com/ethers-io/ethers.js/blob/main/CHANGELOG.md)
- [Commits](ethers-io/ethers.js@v6.7.1...v6.13.1)

Updates `@graphql-codegen/typescript` from 4.0.8 to 4.0.9
- [Release notes](https://github.com/dotansimha/graphql-code-generator/releases)
- [Changelog](https://github.com/dotansimha/graphql-code-generator/blob/master/packages/plugins/typescript/typescript/CHANGELOG.md)
- [Commits](https://github.com/dotansimha/graphql-code-generator/commits/@graphql-codegen/typescript@4.0.9/packages/plugins/typescript/typescript)

Updates `@graphql-codegen/typescript-operations` from 4.2.2 to 4.2.3
- [Release notes](https://github.com/dotansimha/graphql-code-generator/releases)
- [Changelog](https://github.com/dotansimha/graphql-code-generator/blob/master/packages/plugins/typescript/operations/CHANGELOG.md)
- [Commits](https://github.com/dotansimha/graphql-code-generator/commits/@graphql-codegen/typescript-operations@4.2.3/packages/plugins/typescript/operations)

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

Updates `@types/cli-table` from 0.3.1 to 0.3.4
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/cli-table)

---
updated-dependencies:
- dependency-name: "@changesets/cli"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: "@types/node-fetch"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: "@types/web"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: eslint-config-prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: eslint-plugin-import
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: eslint-plugin-jsx-a11y
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: eslint-plugin-prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: eslint-plugin-react
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: eslint-plugin-react-hooks
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: eslint-plugin-tsdoc
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: knip
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: memfs
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: nodemon
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: tsx
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: turbo
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: webdriverio
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: autoprefixer
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: postcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: bun
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: "@vitejs/plugin-react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: typedoc
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: vue
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: ethers
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: "@graphql-codegen/typescript"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: "@graphql-codegen/typescript-operations"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: "@types/lodash.camelcase"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: "@types/cli-table"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@maschad
Copy link
Member

maschad commented Jul 5, 2024

@dependabot recreate

Copy link
Contributor Author

dependabot bot commented on behalf of github Jul 5, 2024

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot rebase.

@maschad
Copy link
Member

maschad commented Jul 5, 2024

@dependabot rebase

Copy link
Contributor Author

dependabot bot commented on behalf of github Jul 5, 2024

Looks like this PR has been edited by someone other than Dependabot. That means Dependabot can't rebase it - sorry!

If you're happy for Dependabot to recreate it from scratch, overwriting any edits, you can request @dependabot recreate.

@arboleya
Copy link
Member

arboleya commented Jul 5, 2024

@dependabot recreate

@maschad
Copy link
Member

maschad commented Jul 6, 2024

This PR needed manual intervention as the typedoc upgrade in apps/docs proved to be problematic. I've created #2713 to address that in the future.

@maschad maschad self-assigned this Jul 6, 2024
Copy link
Contributor

github-actions bot commented Jul 6, 2024

Coverage Report:

Lines Branches Functions Statements
79.62%(+0%) 71.4%(+0%) 77.28%(+0%) 79.71%(+0%)
Changed Files:

Coverage values did not change👌.

@maschad maschad merged commit 638eae3 into master Jul 7, 2024
19 checks passed
@maschad maschad deleted the dependabot/npm_and_yarn/dev-deps-8ca821f122 branch July 7, 2024 18:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
chore Issue is a chore
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants