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 minor-and-patch group across 1 directory with 16 updates #15

Closed

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the minor-and-patch group with 16 updates in the / directory:

Package From To
prettier 3.2.5 3.3.3
typescript 5.3.3 5.5.3
zod 3.23.6 3.23.8
zod-compare 0.2.0 0.3.1
@mui/icons-material 5.15.16 5.16.4
@mui/material 5.15.16 5.16.4
react 18.2.0 18.3.1
@types/react 18.2.56 18.3.3
react-dom 18.2.0 18.3.1
@types/react-dom 18.2.19 18.3.0
eslint-plugin-react-hooks 4.6.0 4.6.2
eslint-plugin-react-refresh 0.4.5 0.4.8
tdesign-icons-react 0.3.2 0.3.4
tdesign-react 1.5.1 1.7.7
@vitejs/plugin-react 4.2.1 4.3.1
vite 5.1.3 5.3.4

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 typescript from 5.3.3 to 5.5.3

Release notes

Sourced from typescript's releases.

TypeScript 5.5.3

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.5

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.5 RC

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.5 Beta

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

... (truncated)

Commits
  • f0e9921 Bump version to 5.5.3 and LKG
  • 738bd60 Cherry-pick #58966 to release-5.5 (#59002)
  • ce2e60e Update LKG
  • f3b21a2 🤖 Pick PR #58931 (Defer creation of barebonesLibSourc...) into release-5.5 (#...
  • 7b1620b 🤖 Pick PR #58811 (fix(58801): "Move to file" on globa...) into release-5.5 (#...
  • 5367ae1 Bump version to 5.5.2 and LKG
  • 02132e5 🤖 Pick PR #58895 (Fix global when typescript.js loade...) into release-5.5 (#...
  • 45b1e3c 🤖 Pick PR #58872 (Fix declaration emit crash) into release-5.5 (#58874)
  • 17933ee 🤖 Pick PR #58810 (Fixed declaration emit issue relate...) into release-5.5 (#...
  • 552b07e 🤖 Pick PR #58786 (Fixed declaration emit crash relate...) into release-5.5 (#...
  • Additional commits viewable in compare view

Updates zod from 3.23.6 to 3.23.8

Release notes

Sourced from zod's releases.

v3.23.8

Commits:

  • 0f4d403558ae0490c711e4c2bfcf6c200bd14e11 Add Bronze logos (#3470)
  • 19687315b5b24bbd1ff6c346bfc2975700221748 Tweak tiers (#3471)
  • eda7df314399929f7ed737423868a5a0780cd944 Change RefinementCtx to interface
  • ca42965df46b2f7e2747db29c40a26bcb32a51d5 v3.23.8

v3.23.7

Commits:

  • 29d2ea2a15f0b1ac4b89138041f786a3dafc490b Add copper
  • d969423266fccee56ef769da6744cc8bacb04550 Fix #3437: extendShape erases JSDoc property documentation (#3463)
  • 2239ff3ccc9af4d28bee27bd6fb2a5632844480b Add social crow
  • f985b5b922cb357dbf4b25bb43814d19f838e046 3.23.7
Commits

Updates zod-compare from 0.2.0 to 0.3.1

Release notes

Sourced from zod-compare's releases.

v0.3.1

Patch Changes

  • 95175c4: feat: add compare result to debug stack

v0.3.0

Minor Changes

  • b40d479: refactor: redesign isCompatibleType with new rule style

    The function createIsSameTypeFn has been renamed to createCompareFn.

Changelog

Sourced from zod-compare's changelog.

0.3.1

Patch Changes

  • 95175c4: feat: add compare result to debug stack

0.3.0

Minor Changes

  • b40d479: refactor: redesign isCompatibleType with new rule style

    The function createIsSameTypeFn has been renamed to createCompareFn.

Commits
  • 6bfef54 Version Packages (#18)
  • 95175c4 feat: add compare result to debug stack
  • 59ac31b chore(deps-dev): bump the minor-and-patch group with 2 updates (#17)
  • 3c51337 chore(deps-dev): bump the minor-and-patch group with 2 updates (#16)
  • 959d6cd chore(deps-dev): bump the minor-and-patch group with 2 updates (#15)
  • d2e39ef chore(deps-dev): bump the minor-and-patch group with 2 updates (#14)
  • b09fe79 chore(deps-dev): bump the minor-and-patch group with 3 updates (#13)
  • 1dba4bc chore(deps-dev): bump @​changesets/cli from 2.27.1 to 2.27.3 in the minor-and-...
  • 69fecc4 chore(deps-dev): bump zod from 3.23.6 to 3.23.8 in the minor-and-patch group ...
  • 3483795 Version Packages (#10)
  • Additional commits viewable in compare view

Updates @mui/icons-material from 5.15.16 to 5.16.4

Release notes

Sourced from @​mui/icons-material's releases.

v5.16.4

Jul 16, 2024

A big thanks to the one contributor who made this release possible.

@mui/[email protected]

All contributors of this release in alphabetical order: @​mnajdova

v5.16.3

Jul 16, 2024

A big thanks to the 3 contributors who made this release possible.

@mui/[email protected]

Docs

All contributors of this release in alphabetical order: @​HoFa1997, @​mnajdova, @​oliviertassinari

v5.16.2

Jul 16, 2024

A big thanks to the 2 contributors who made this release possible.

@mui/[email protected]

Core

All contributors of this release in alphabetical order: @​mnajdova, @​oliviertassinari

v5.16.1

A big thanks to the 4 contributors who made this release possible. Here are some highlights ✨:

  • ⚛️ All packages, including Material UI, are now compatible with React 18.3.1

@mui/[email protected]

... (truncated)

Changelog

Sourced from @​mui/icons-material's changelog.

v5.16.4

Jul 16, 2024

A big thanks to the 1 contributor who made this release possible.

@mui/[email protected]

All contributors of this release in alphabetical order: @​mnajdova

v5.16.3

Jul 16, 2024

A big thanks to the 3 contributors who made this release possible.

@mui/[email protected]

Docs

All contributors of this release in alphabetical order: @​HoFa1997, @​mnajdova, @​oliviertassinari

v5.16.2

Jul 16, 2024

A big thanks to the 2 contributors who made this release possible.

@mui/[email protected]

Core

All contributors of this release in alphabetical order: @​mnajdova, @​oliviertassinari

... (truncated)

Commits

Updates @mui/material from 5.15.16 to 5.16.4

Release notes

Sourced from @​mui/material's releases.

v5.16.4

Jul 16, 2024

A big thanks to the one contributor who made this release possible.

@mui/[email protected]

All contributors of this release in alphabetical order: @​mnajdova

v5.16.3

Jul 16, 2024

A big thanks to the 3 contributors who made this release possible.

@mui/[email protected]

Docs

All contributors of this release in alphabetical order: @​HoFa1997, @​mnajdova, @​oliviertassinari

v5.16.2

Jul 16, 2024

A big thanks to the 2 contributors who made this release possible.

@mui/[email protected]

Core

All contributors of this release in alphabetical order: @​mnajdova, @​oliviertassinari

v5.16.1

A big thanks to the 4 contributors who made this release possible. Here are some highlights ✨:

  • ⚛️ All packages, including Material UI, are now compatible with React 18.3.1

@mui/[email protected]

... (truncated)

Changelog

Sourced from @​mui/material's changelog.

v5.16.4

Jul 16, 2024

A big thanks to the 1 contributor who made this release possible.

@mui/[email protected]

All contributors of this release in alphabetical order: @​mnajdova

v5.16.3

Jul 16, 2024

A big thanks to the 3 contributors who made this release possible.

@mui/[email protected]

Docs

All contributors of this release in alphabetical order: @​HoFa1997, @​mnajdova, @​oliviertassinari

v5.16.2

Jul 16, 2024

A big thanks to the 2 contributors who made this release possible.

@mui/[email protected]

Core

All contributors of this release in alphabetical order: @​mnajdova, @​oliviertassinari

... (truncated)

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.56 to 18.3.3

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.19 to 18.3.0

Commits

Updates @types/react from 18.2.56 to 18.3.3

Commits

Updates @types/react-dom from 18.2.19 to 18.3.0

Commits

Updates eslint-plugin-react-hooks from 4.6.0 to 4.6.2

Changelog

Sourced from eslint-plugin-react-hooks's changelog.

5.0.0 (next release)

  • New Violations: Component names now need to start with an uppercase letter instead of a non-lowercase letter. This means _Button or _component are no longer valid. (@​kassens) in #25162
Commits
Maintainer changes

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


Updates eslint-plugin-react-refresh from 0.4.5 to 0.4.8

Release notes

Sourced from eslint-plugin-react-refresh's releases.

v0.4.8

  • Support export const foo = -1 with allowConstantExport (fixes #43)

v0.4.7

  • Support export { Component as default } (fixes #41)

v0.4.6

  • Ignore cypress test files (#39)
Changelog

Sourced from eslint-plugin-react-refresh's changelog.

0.4.8

  • Support export const foo = -1 with allowConstantExport (fixes #43)

0.4.7

  • Support export { Component as default } (fixes #41)

0.4.6

  • Ignore cypress test files (#39)
Commits
  • a10b96b Support export const foo = -1 with allowConstantExport (fixes #43) [publish]
  • 70dcd5a Support export { Component as default } (fixes #41) [publish]
  • b7e61e7 0.4.6 [publish]
  • 614e02f Ignore cypress test files (#39)
  • See full diff in compare view

Updates tdesign-icons-react from 0.3.2 to 0.3.4

Changelog

Sourced from tdesign-icons-react's changelog.

0.3.4

Patch Changes

  • feat: update iconfont and svgsprite address

0.3.3

Patch Changes

  • feat: add list-numbered icon, optimize path of lock-off;
  • fix: fix chart-column naming;
Commits
Maintainer changes

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


Updates tdesign-react from 1.5.1 to 1.7.7

Release notes

Sourced from tdesign-react's releases.

1.7.7

🌈 1.7.7 2024-07-18

🚀 Features

  • Icon: 新增有序列表图标 list-numbered,优化lock-off的绘制路径 @​DOUBLE-DENG (icon#9f4acfd)
  • Breadcrumb: BreadcrumbItem增加tooltipProps扩展,方便定制内置的tooltip的相关属性 @​carolin913 (#2990)
  • Imageviewer: 新增 attach API,支持自定义 ImageViewer 的挂载节点 @​HaixingOoO (#2995)
  • Drawer: 新增 onSizeDragEnd API,用于需要拖拽缩放回调的场景 @​NWYLZW (#2975)

🐞 Bug Fixes

  • Icon: 修复图标chart-column的命名错误问题 @​uyarn (#2979)
  • Input: 修复禁用状态下仍可以切换明文密文的问题 @​uyarn (#2991)
  • Table: @​uyarn
    • 修复只存在一列可拖拽的表格缩小时的样式异常问题 (#2994)
    • 修复部分场景下向前缩放时的报错的问题(#2994)
    • 修复空数据下展示内容没有居中展示的问题 (#2996)

🚧 Others

1.7.6

🌈 1.7.6 2024-06-27

🚀 Features

  • Tabs: 支持通过滚轮或者触摸板进行滚动操作,新增 scrollPosition API,支持配置选中滑块滚动最终停留位置 @​oljc (#2954)
  • ImageViewer: 新增 isSvg 属性,支持原生 SVG 预览显示,用于对 SVG 进行操作的场景 @​HaixingOoO (#2958)
  • Input: 新增 spellCheck API @​NWYLZW (#2941)

🐞 Bug Fixes

  • DatePicker: 修复单独使用 DateRangePickerPanel 面板头部点击逻辑与 DateRangePicker 不一致的问题 @​uyarn (#2944)
  • Form: 修复嵌套 FormList 场景下使用 shouldUpdate 导致循环渲染的问题 @​moecasts (#2948)
  • Tabs: 修复 1.7.4 版本后,Tabs 的 className 影响 TabItem 的问题 @​uyarn (#2946)
  • Table: 修复 usePaginationpagination 动态变化的功能问题 @​HaixingOoO (#2960)
  • Table: 修复鼠标右键表格也可以触发列宽拖拽的问题 @​HaixingOoO (#2961)
  • Table: 修复只存在一列可被 resize 的使用场景下,拖拽功能异常的问题 @​uyarn (#2959)

🚧 Others

1.7.4

What's Changed

🌈 1.7.4 2024-05-30

🚀 Features

  • Description has been truncated

…6 updates

Bumps the minor-and-patch group with 16 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [prettier](https://github.com/prettier/prettier) | `3.2.5` | `3.3.3` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.3.3` | `5.5.3` |
| [zod](https://github.com/colinhacks/zod) | `3.23.6` | `3.23.8` |
| [zod-compare](https://github.com/lawvs/zod-compare) | `0.2.0` | `0.3.1` |
| [@mui/icons-material](https://github.com/mui/material-ui/tree/HEAD/packages/mui-icons-material) | `5.15.16` | `5.16.4` |
| [@mui/material](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material) | `5.15.16` | `5.16.4` |
| [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.56` | `18.3.3` |
| [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.19` | `18.3.0` |
| [eslint-plugin-react-hooks](https://github.com/facebook/react/tree/HEAD/packages/eslint-plugin-react-hooks) | `4.6.0` | `4.6.2` |
| [eslint-plugin-react-refresh](https://github.com/ArnaudBarre/eslint-plugin-react-refresh) | `0.4.5` | `0.4.8` |
| [tdesign-icons-react](https://github.com/Tencent/tdesign-icons/tree/HEAD/packages/react) | `0.3.2` | `0.3.4` |
| [tdesign-react](https://github.com/Tencent/tdesign-react) | `1.5.1` | `1.7.7` |
| [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `4.2.1` | `4.3.1` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.1.3` | `5.3.4` |



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 `typescript` from 5.3.3 to 5.5.3
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.3.3...v5.5.3)

Updates `zod` from 3.23.6 to 3.23.8
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Changelog](https://github.com/colinhacks/zod/blob/main/CHANGELOG.md)
- [Commits](colinhacks/zod@v3.23.6...v3.23.8)

Updates `zod-compare` from 0.2.0 to 0.3.1
- [Release notes](https://github.com/lawvs/zod-compare/releases)
- [Changelog](https://github.com/lawvs/zod-compare/blob/main/CHANGELOG.md)
- [Commits](lawvs/zod-compare@v0.2.0...v0.3.1)

Updates `@mui/icons-material` from 5.15.16 to 5.16.4
- [Release notes](https://github.com/mui/material-ui/releases)
- [Changelog](https://github.com/mui/material-ui/blob/v5.16.4/CHANGELOG.md)
- [Commits](https://github.com/mui/material-ui/commits/v5.16.4/packages/mui-icons-material)

Updates `@mui/material` from 5.15.16 to 5.16.4
- [Release notes](https://github.com/mui/material-ui/releases)
- [Changelog](https://github.com/mui/material-ui/blob/v5.16.4/CHANGELOG.md)
- [Commits](https://github.com/mui/material-ui/commits/v5.16.4/packages/mui-material)

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.56 to 18.3.3
- [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.19 to 18.3.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `@types/react` from 18.2.56 to 18.3.3
- [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.19 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-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-react-refresh` from 0.4.5 to 0.4.8
- [Release notes](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/releases)
- [Changelog](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/blob/main/CHANGELOG.md)
- [Commits](ArnaudBarre/eslint-plugin-react-refresh@v0.4.5...v0.4.8)

Updates `tdesign-icons-react` from 0.3.2 to 0.3.4
- [Changelog](https://github.com/Tencent/tdesign-icons/blob/develop/packages/react/CHANGELOG.md)
- [Commits](https://github.com/Tencent/tdesign-icons/commits/HEAD/packages/react)

Updates `tdesign-react` from 1.5.1 to 1.7.7
- [Release notes](https://github.com/Tencent/tdesign-react/releases)
- [Changelog](https://github.com/Tencent/tdesign-react/blob/develop/CHANGELOG.md)
- [Commits](Tencent/tdesign-react@1.5.1...1.7.7)

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 `vite` from 5.1.3 to 5.3.4
- [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.4/packages/vite)

---
updated-dependencies:
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: zod
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: zod-compare
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@mui/icons-material"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@mui/material"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: react
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: react-dom
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@types/react-dom"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@types/react-dom"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: eslint-plugin-react-hooks
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: eslint-plugin-react-refresh
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: tdesign-icons-react
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: tdesign-react
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@vitejs/plugin-react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jul 18, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Jul 22, 2024

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

@dependabot dependabot bot closed this Jul 22, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/minor-and-patch-66437ae355 branch July 22, 2024 03:23
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.

0 participants