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

chore(deps): bump the dependencies group across 1 directory with 22 updates #173

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 23, 2024

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

Package From To
prettier 3.2.5 3.3.3
yaml 2.4.1 2.5.1
@primer/octicons-react 19.9.0 19.11.0
@primer/react 36.12.0 36.27.0
@tailwindcss/typography 0.5.10 0.5.15
autoprefixer 10.4.19 10.4.20
json-2-csv 5.5.1 5.5.5
postcss 8.4.38 8.4.47
react 18.2.0 18.3.1
@types/react 18.2.67 18.3.8
react-dom 18.2.0 18.3.1
@types/react-dom 18.2.22 18.3.0
react-tiny-popover 8.0.4 8.1.2
tailwindcss 3.4.1 3.4.13
typescript 5.4.3 5.6.2
usehooks-ts 3.0.1 3.1.0
eslint-import-resolver-typescript 3.6.1 3.6.3
eslint-plugin-import 2.29.1 2.30.0
eslint-plugin-react 7.34.1 7.36.1
bumpp 9.4.0 9.5.2
lint-staged 15.2.2 15.2.10
vite 5.2.2 5.4.7

Updates prettier from 3.2.5 to 3.3.3

Release notes

Sourced from prettier's releases.

3.3.3

🔗 Changelog

3.3.2

🔗 Changelog

3.3.1

🔗 Changelog

3.3.0

diff

🔗 Release note

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 yaml from 2.4.1 to 2.5.1

Release notes

Sourced from yaml's releases.

v2.5.1

  • Include range in flow sequence pair maps (#573)

v2.5.0

  • Add --indent option to CLI tool (#559, with thanks to @​danielbayley)
  • Require newline in all cases for props on block sequence (#557)
  • Always reset indentation in lexer on ... (#558)
  • Ignore minContentWidth if greater than lineWidth (#562)
  • Drop unused Collection.maxFlowStringSingleLineLength (#522, #421)

v2.4.5

  • Improve tab handling (#553, yaml-test-suite tests DK95 & Y79Y)

v2.4.4

With special thanks to @​RedCMD for finding and reporting all of the following:

  • Allow comment after top-level block scalar with explicit indent indicator (#547)
  • Allow tab as indent for line comments before nodes (#548)
  • Do not allow tab before block collection (#549)
  • In flow collections, allow []{} immediately after : with plain key (#550)
  • Require indentation for ? explicit-key contents (#551)
  • Require indentation from block scalar header & flow collections in mapping values (#553)

v2.4.3

  • Improve error when parsing a non-string value (#459)
  • Do not parse -.NaN or +.nan as NaN (#546)
  • Support # within %TAG prefixes with trailing #comments
  • Check for non-node complex keys when stringifying with simpleKeys (#541)

v2.4.2

  • Restrict YAML 1.1 boolean strings to their explicit capitalization (#530)
  • Add sponsorship by Scipress (#536)
Commits
  • 5adbb60 2.5.1
  • 29293c4 chore: Simplify Babel config, inlining it Jest config
  • 4c30eb6 chore: Re-enable linting with type information
  • adef9c5 chore: Update to eslint 9, fix found issues
  • e883065 chore: Refresh lockfile (keeping rollup at 4.19.0 due to rollup/rollup#5633)
  • 5b5e290 fix: Include range in flow sequence pair maps (fixes #573)
  • b309e23 2.5.0
  • 6e58318 style: Apply updated Prettier style
  • 61140fa chore: Refresh lockfile
  • 534d8ad fix: Ignore minContentWidth if greater than lineWidth (fixes #562)
  • Additional commits viewable in compare view

Updates @primer/octicons-react from 19.9.0 to 19.11.0

Release notes

Sourced from @​primer/octicons-react's releases.

v19.11.0

Minor Changes

v19.10.0

Minor Changes

Patch Changes

  • #1020 449d81f1 Thanks @​joshblack! - Update types for @​primer/octicons-react to explicitly include extensions for different moduleResolution settings
Changelog

Sourced from @​primer/octicons-react's changelog.

19.11.0

Minor Changes

19.10.0

Minor Changes

Patch Changes

  • #1020 449d81f1 Thanks @​joshblack! - Update types for @​primer/octicons-react to explicitly include extensions for different moduleResolution settings
Commits

Updates @primer/react from 36.12.0 to 36.27.0

Release notes

Sourced from @​primer/react's releases.

@​primer/react@​36.27.0

Permalink to documentation

Minor Changes

Patch Changes

@​primer/react@​36.26.0

Permalink to documentation

Minor Changes

Patch Changes

... (truncated)

Commits
  • 0b57996 Version Packages (#4753)
  • 01923c3 Move Stack out of drafts (#4747)
  • a9730c9 Bug fix: ActionList divider disappears on selected items (#4778)
  • 3779dbf ActionList: Prevent double key event when \<button> is used (#4772)
  • d6ca0cf chore(deps): update @​primer/behaviors to ^1.7.0 (#4777)
  • d79f6d5 Autocomplete: Fix storybook issues (#4769)
  • 7d086c7 fix(Blankslate): update styles to prevent SSR hydration mismatch (#4710)
  • 801ca96 feat(react): add ScrollableRegion and useOverflow (#4719)
  • 991839c Un-revert "Add loading prop for Button and IconButton (#3582)" (#4485)
  • 8574027 Prevents inactive indicator icon/tooltip from appearing in ActionMenu items (...
  • Additional commits viewable in compare view

Updates @tailwindcss/typography from 0.5.10 to 0.5.15

Release notes

Sourced from @​tailwindcss/typography's releases.

v0.5.15

Fixed

  • Support installing with alpha versions of Tailwind CSS v4 (#358)

v0.5.14

  • Fix table text alignment (#346)

v0.5.13

Fixed

  • Don't apply margins to <br> elements contained in an <li> in FF (#350)

v0.5.12

Added

  • Use logical properties for better RTL support (#323)

v0.5.11

Added

  • Add prose-kbd modifier (#340)

Fixed

  • Fix space between <figcaption> and <video> (#339)
Changelog

Sourced from @​tailwindcss/typography's changelog.

[0.5.15] - 2024-08-28

Fixed

  • Support installing with alpha versions of Tailwind CSS v4 (#358)

[0.5.14] - 2024-08-07

Fixed

  • Fix table text alignment (#346)

[0.5.13] - 2024-04-26

Fixed

  • Don't apply margins to <br> elements contained in an <li> in FF (#350)

[0.5.12] - 2024-03-27

Added

  • Use logical properties for better RTL support (#323)

[0.5.11] - 2024-03-26

Added

  • Add prose-kbd modifier (#340)

Fixed

  • Fix space between <figcaption> and <video> (#339)
Commits

Updates autoprefixer from 10.4.19 to 10.4.20

Release notes

Sourced from autoprefixer's releases.

10.4.20

  • Fixed fit-content prefix for Firefox.
Changelog

Sourced from autoprefixer's changelog.

10.4.20

  • Fixed fit-content prefix for Firefox.
Commits

Updates json-2-csv from 5.5.1 to 5.5.5

Release notes

Sourced from json-2-csv's releases.

NPM Release v5.5.5

Thanks to @​bdudabeecoded for finding and fixing the double wrapping of header fields containing newlines - mrodrig/json-2-csv#260

NPM Release v5.5.4

  • csv2json type fix for unused option
  • Documentation update for CLI

NPM Release v5.5.3

NPM Release v5.5.2

No release notes provided.

Commits

Updates postcss from 8.4.38 to 8.4.47

Release notes

Sourced from postcss's releases.

8.4.47

  • Removed debug code.

8.4.46

  • Fixed Cannot read properties of undefined (reading 'before').

8.4.45

  • Removed unnecessary fix which could lead to infinite loop.

8.4.44

  • Another way to fix markClean is not a function error.

8.4.43

  • Fixed markClean is not a function error.

8.4.42

  • Fixed CSS syntax error on long minified files (by @​varpstar).

8.4.41

8.4.40

  • Moved to getter/setter in nodes types to help Sass team (by @​nex3).

8.4.39

Changelog

Sourced from postcss's changelog.

8.4.47

  • Removed debug code.

8.4.46

  • Fixed Cannot read properties of undefined (reading 'before').

8.4.45

  • Removed unnecessary fix which could lead to infinite loop.

8.4.44

  • Another way to fix markClean is not a function error.

8.4.43

  • Fixed markClean is not a function error.

8.4.42

  • Fixed CSS syntax error on long minified files (by @​varpstar).

8.4.41

8.4.40

  • Moved to getter/setter in nodes types to help Sass team (by @​nex3).

8.4.39

Commits

Updates react from 18.2.0 to 18.3.1

Release notes

Sourced from react's releases.

18.3.1 (April 26, 2024)

  • Export act from react f1338f

18.3.0 (April 25, 2024)

This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.

Read the React 19 Upgrade Guide for more info.

React

  • Allow writing to this.refs to support string ref codemod 909071
  • Warn for deprecated findDOMNode outside StrictMode c3b283
  • Warn for deprecated test-utils methods d4ea75
  • Warn for deprecated Legacy Context outside StrictMode 415ee0
  • Warn for deprecated string refs outside StrictMode #25383
  • Warn for deprecated defaultProps for function components #25699
  • Warn when spreading key #25697
  • Warn when using act from test-utils d4ea75

React DOM

  • Warn for deprecated unmountComponentAtNode 8a015b
  • Warn for deprecated renderToStaticNodeStream #28874
Changelog

Sourced from react's changelog.

18.3.1 (April 26, 2024)

  • Export act from react f1338f

18.3.0 (April 25, 2024)

This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.

Read the React 19 Upgrade Guide for more info.

React

  • Allow writing to this.refs to support string ref codemod 909071
  • Warn for deprecated findDOMNode outside StrictMode c3b283
  • Warn for deprecated test-utils methods d4ea75
  • Warn for deprecated Legacy Context outside StrictMode 415ee0
  • Warn for deprecated string refs outside StrictMode #25383
  • Warn for deprecated defaultProps for function components #25699
  • Warn when spreading key #25697
  • Warn when using act from test-utils d4ea75

React DOM

  • Warn for deprecated unmountComponentAtNode 8a015b
  • Warn for deprecated renderToStaticNodeStream #28874
Commits
Maintainer changes

This version was pushed to npm by react-bot, a new releaser for react since your current version.


Updates @types/react from 18.2.67 to 18.3.8

Commits

Updates react-dom from 18.2.0 to 18.3.1

Release notes

Sourced from react-dom's releases.

18.3.1 (April 26, 2024)

  • Export act from react f1338f

18.3.0 (April 25, 2024)

This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.

Read the React 19 Upgrade Guide for more info.

React

  • Allow writing to this.refs to support string ref codemod 909071
  • Warn for deprecated findDOMNode outside StrictMode c3b283
  • Warn for deprecated test-utils methods d4ea75
  • Warn for deprecated Legacy Context outside StrictMode 415ee0
  • Warn for deprecated string refs outside StrictMode #25383
  • Warn for deprecated defaultProps for function components #25699
  • Warn when spreading key #25697
  • Warn when using act from test-utils d4ea75

React DOM

  • Warn for deprecated unmountComponentAtNode 8a015b
  • Warn for deprecated renderToStaticNodeStream #28874
Changelog

Sourced from react-dom's changelog.

18.3.1 (April 26, 2024)

  • Export act from react f1338f

18.3.0 (April 25, 2024)

This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.

Read the React 19 Upgrade Guide for more info.

React

  • Allow writing to this.refs to support string ref codemod 909071
  • Warn for deprecated findDOMNode outside StrictMode c3b283
  • Warn for deprecated test-utils methods d4ea75
  • Warn for deprecated Legacy Context outside StrictMode 415ee0
  • Warn for deprecated string refs outside StrictMode #25383
  • Warn for deprecated defaultProps for function components #25699
  • Warn when spreading key #25697
  • Warn when using act from test-utils d4ea75

React DOM

  • Warn for deprecated unmountComponentAtNode 8a015b
  • Warn for deprecated renderToStaticNodeStream #28874
Commits
  • d6c42f7 Bump to 18.3.1
  • 8a015b6 Add deprecation warning for unmountComponentAtNode
  • c3b2839 Add deprecation warning for findDOMNode
  • d4ea75d ReactDOMTestUtils deprecation warnings
  • 7548c01 Deprecate renderToStaticNodeStream (#28872) (#28874)
  • 5894232 Enable warning for defaultProps on function components for everyone (#25699)
  • c2a246e Turn on string ref deprecation warning for everybody (not codemoddable) (#25383)
  • 2cfb474 Bump version from 18.2 to 18.3
  • See full diff in compare view
Maintainer changes

This version was pushed to npm by react-bot, a new releaser for react-dom since your current version.


Updates @types/react-dom from 18.2.22 to 18.3.0

Commits

Updates react-tiny-popover from 8.0.4 to 8.1.2

Changelog

Sourced from react-tiny-popover's changelog.

[8.1.2] - 2024-9-13

Fixed npm deployment issue

[8.1.1] - 2024-9-13

Fixed

  • Popover now re-renders properly on the following prop changes
    • reposition
    • positions
    • boundaryElement
    • boundaryInset
    • transform
    • transformMode
    • childRect changes
    • popoverRect changes
    • padding
    • align

[8.1.0] - 2024-9-12

Changed

  • Prior to this change, the portal DOM elements generated when a popover appears were given the id react-tiny-popover-container and react-tiny-popover-scout
  • From now on, both react-tiny-popover-container and react-tiny-popover-scout are now assigned as class names rather than ids. The absence of this functionality has been an oversight, since multiple popovers can be present in the DOM simultaneously. This resulted in more than one element having the same id.

[8.0.3] - 2023-10-19

Fixed

  • align and padding no longer erroneously required as props

[8.0.2] - 2023-10-19

Fixed

  • Removed some debugging statements erroneously published

[8.0.1] - 2023-10-19

Fixed

  • Rolled back DOMRect changes as it interferes with SSR, replaced with custom Rect interface that mirrors the same API

[8.0.0] - 2023-10-18

... (truncated)

Commits

Updates tailwindcss from 3.4.1 to 3.4.13

Release notes

Sourced from tailwindcss's releases.

v3.4.13

Fixed

  • Improve source glob verification performance (#14481)

v3.4.12

Fixed

  • Ensure using @apply with utilities that use @defaults works with rules defined in the base layer when using optimizeUniversalDefaults (#14427)

v3.4.11

Fixed

  • Allow anchor-size(…) in arbitrary values (#14393)

v3.4.10

Fixed

  • Bump versions of plugins in the Standalone CLI (#14185)

v3.4.9

Fixed

  • No longer warns when broad glob patterns are detecting vendor folders

v3.4.8

Fixed

  • Fix minification when using nested CSS (#14105)
  • Warn when broad glob patterns are used in the content configuration (#14140)

v3.4.7

Fixed

  • Fix class detection in Slim templates with attached attributes and ID (#14019)
  • Ensure attribute values in data-* and aria-* modifiers are always quoted in the generated CSS (#14037)

v3.4.6

Fixed

  • Fix detection of some utilities in Slim/Pug templates (#14006)

Changed

  • Loosen :is() wrapping rules when using an important selector (#13900)

v3.4.5

Fixed

  • Disable automatic var() injection for anchor properties (#13826)

... (truncated)

Changelog

Sourced from tailwindcss's changelog.

Commits

Updates typescript from 5.4.3 to 5.6.2

Release notes

Sourced from typescript's releases.

TypeScript 5.6

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.6 RC

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

…pdates

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

| Package | From | To |
| --- | --- | --- |
| [prettier](https://github.com/prettier/prettier) | `3.2.5` | `3.3.3` |
| [yaml](https://github.com/eemeli/yaml) | `2.4.1` | `2.5.1` |
| [@primer/octicons-react](https://github.com/primer/octicons) | `19.9.0` | `19.11.0` |
| [@primer/react](https://github.com/primer/react) | `36.12.0` | `36.27.0` |
| [@tailwindcss/typography](https://github.com/tailwindlabs/tailwindcss-typography) | `0.5.10` | `0.5.15` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.19` | `10.4.20` |
| [json-2-csv](https://github.com/mrodrig/json-2-csv) | `5.5.1` | `5.5.5` |
| [postcss](https://github.com/postcss/postcss) | `8.4.38` | `8.4.47` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `18.2.0` | `18.3.1` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.2.67` | `18.3.8` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `18.2.0` | `18.3.1` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `18.2.22` | `18.3.0` |
| [react-tiny-popover](https://github.com/alexkatz/react-tiny-popover) | `8.0.4` | `8.1.2` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss) | `3.4.1` | `3.4.13` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.4.3` | `5.6.2` |
| [usehooks-ts](https://github.com/juliencrn/usehooks-ts) | `3.0.1` | `3.1.0` |
| [eslint-import-resolver-typescript](https://github.com/import-js/eslint-import-resolver-typescript) | `3.6.1` | `3.6.3` |
| [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import) | `2.29.1` | `2.30.0` |
| [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) | `7.34.1` | `7.36.1` |
| [bumpp](https://github.com/antfu/bumpp) | `9.4.0` | `9.5.2` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `15.2.2` | `15.2.10` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.2.2` | `5.4.7` |



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 `yaml` from 2.4.1 to 2.5.1
- [Release notes](https://github.com/eemeli/yaml/releases)
- [Commits](eemeli/yaml@v2.4.1...v2.5.1)

Updates `@primer/octicons-react` from 19.9.0 to 19.11.0
- [Release notes](https://github.com/primer/octicons/releases)
- [Changelog](https://github.com/primer/octicons/blob/main/CHANGELOG.md)
- [Commits](primer/octicons@v19.9.0...v19.11.0)

Updates `@primer/react` from 36.12.0 to 36.27.0
- [Release notes](https://github.com/primer/react/releases)
- [Commits](https://github.com/primer/react/compare/@primer/[email protected]...@primer/[email protected])

Updates `@tailwindcss/typography` from 0.5.10 to 0.5.15
- [Release notes](https://github.com/tailwindlabs/tailwindcss-typography/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss-typography/blob/main/CHANGELOG.md)
- [Commits](tailwindlabs/tailwindcss-typography@v0.5.10...v0.5.15)

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

Updates `json-2-csv` from 5.5.1 to 5.5.5
- [Release notes](https://github.com/mrodrig/json-2-csv/releases)
- [Commits](mrodrig/json-2-csv@5.5.1...5.5.5)

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

Updates `react` from 18.2.0 to 18.3.1
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v18.3.1/packages/react)

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

Updates `react-dom` from 18.2.0 to 18.3.1
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v18.3.1/packages/react-dom)

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

Updates `react-tiny-popover` from 8.0.4 to 8.1.2
- [Release notes](https://github.com/alexkatz/react-tiny-popover/releases)
- [Changelog](https://github.com/alexkatz/react-tiny-popover/blob/main/CHANGELOG.md)
- [Commits](https://github.com/alexkatz/react-tiny-popover/commits)

Updates `tailwindcss` from 3.4.1 to 3.4.13
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/v3.4.13/CHANGELOG.md)
- [Commits](tailwindlabs/tailwindcss@v3.4.1...v3.4.13)

Updates `typescript` from 5.4.3 to 5.6.2
- [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.3...v5.6.2)

Updates `usehooks-ts` from 3.0.1 to 3.1.0
- [Release notes](https://github.com/juliencrn/usehooks-ts/releases)
- [Commits](https://github.com/juliencrn/usehooks-ts/compare/[email protected]@3.1.0)

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

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

Updates `eslint-import-resolver-typescript` from 3.6.1 to 3.6.3
- [Release notes](https://github.com/import-js/eslint-import-resolver-typescript/releases)
- [Changelog](https://github.com/import-js/eslint-import-resolver-typescript/blob/master/CHANGELOG.md)
- [Commits](import-js/eslint-import-resolver-typescript@v3.6.1...v3.6.3)

Updates `eslint-plugin-import` from 2.29.1 to 2.30.0
- [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.1...v2.30.0)

Updates `eslint-plugin-react` from 7.34.1 to 7.36.1
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-react/releases)
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-react/blob/master/CHANGELOG.md)
- [Commits](jsx-eslint/eslint-plugin-react@v7.34.1...v7.36.1)

Updates `bumpp` from 9.4.0 to 9.5.2
- [Release notes](https://github.com/antfu/bumpp/releases)
- [Commits](antfu-collective/bumpp@v9.4.0...v9.5.2)

Updates `lint-staged` from 15.2.2 to 15.2.10
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/master/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v15.2.2...v15.2.10)

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

---
updated-dependencies:
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: yaml
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@primer/octicons-react"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@primer/react"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@tailwindcss/typography"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: autoprefixer
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: json-2-csv
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: postcss
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: react
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: react-dom
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@types/react-dom"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: react-tiny-popover
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: tailwindcss
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: typescript
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: usehooks-ts
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@types/react-dom"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: eslint-import-resolver-typescript
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: eslint-plugin-import
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: eslint-plugin-react
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: bumpp
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: lint-staged
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner September 23, 2024 22:29
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Sep 23, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 30, 2024

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

@dependabot dependabot bot closed this Sep 30, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/dependencies-a84a341e14 branch September 30, 2024 22:20
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