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 js-patch group across 1 directory with 15 updates #3476

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 9, 2025

Bumps the js-patch group with 15 updates in the /ui directory:

Package From To
@connectrpc/connect 2.0.0 2.0.1
@connectrpc/connect-query 2.0.0 2.0.1
@connectrpc/connect-web 2.0.0 2.0.1
antd 5.23.0 5.23.4
react-router-dom 7.1.1 7.1.5
recharts 2.15.0 2.15.1
@eslint/compat 1.2.4 1.2.6
@types/react 19.0.3 19.0.8
@types/react-dom 19.0.2 19.0.3
eslint-plugin-prettier 5.2.1 5.2.3
eslint-plugin-react 7.37.3 7.37.4
eslint-plugin-react-refresh 0.4.16 0.4.19
less 4.2.1 4.2.2
typescript 5.7.2 5.7.3
zx 8.3.0 8.3.2

Updates @connectrpc/connect from 2.0.0 to 2.0.1

Release notes

Sourced from @​connectrpc/connect's releases.

v2.0.1

What's Changed

The only noteworthy changes in this release are enhancements made to the @​connectrpc/connect-migrate package.

The migration tool now handles additional scenarios for migrating your code to Connect v2:

Transforms new to create:

- import { Foo } from "./foo_pb.js";
+ import { FooSchema } from "./foo_pb.js";
+ import { create } from "@bufbuild/protobuf";
- const foo = new Foo();
+ const foo = create(FooSchema);

Transforms isMessage to use the schema:

import { isMessage } from "@bufbuild/protobuf";
- import { Foo } from "./foo_pb.js";
+ import { FooSchema } from "./foo_pb.js";
- isMessage(1, Foo); 
+ isMessage(1, FooSchema);

Transforms the static fromBinary, fromJson, and fromJsonString method calls:

- import { Foo } from "./foo_pb.js";
+ import { FooSchema } from "./foo_pb.js";
+ import { fromJson } from "@bufbuild/protobuf";
- Foo.fromJson(x, y);
+ fromJson(FooSchema, x, y);

In addition, if the message is a well-known type, the import path is updated accordingly.

For details on Connect v2, see the v2 release notes as well as the full migration guide.

New Contributors

Full Changelog: connectrpc/connect-es@v2.0.0...v2.0.1

Commits

Updates @connectrpc/connect-query from 2.0.0 to 2.0.1

Release notes

Sourced from @​connectrpc/connect-query's releases.

v2.0.1

What's Changed

Full Changelog: connectrpc/connect-query-es@v2.0.0...v2.0.1

Commits

Updates @connectrpc/connect-web from 2.0.0 to 2.0.1

Release notes

Sourced from @​connectrpc/connect-web's releases.

v2.0.1

What's Changed

The only noteworthy changes in this release are enhancements made to the @​connectrpc/connect-migrate package.

The migration tool now handles additional scenarios for migrating your code to Connect v2:

Transforms new to create:

- import { Foo } from "./foo_pb.js";
+ import { FooSchema } from "./foo_pb.js";
+ import { create } from "@bufbuild/protobuf";
- const foo = new Foo();
+ const foo = create(FooSchema);

Transforms isMessage to use the schema:

import { isMessage } from "@bufbuild/protobuf";
- import { Foo } from "./foo_pb.js";
+ import { FooSchema } from "./foo_pb.js";
- isMessage(1, Foo); 
+ isMessage(1, FooSchema);

Transforms the static fromBinary, fromJson, and fromJsonString method calls:

- import { Foo } from "./foo_pb.js";
+ import { FooSchema } from "./foo_pb.js";
+ import { fromJson } from "@bufbuild/protobuf";
- Foo.fromJson(x, y);
+ fromJson(FooSchema, x, y);

In addition, if the message is a well-known type, the import path is updated accordingly.

For details on Connect v2, see the v2 release notes as well as the full migration guide.

New Contributors

Full Changelog: connectrpc/connect-es@v2.0.0...v2.0.1

Commits

Updates antd from 5.23.0 to 5.23.4

Release notes

Sourced from antd's releases.

5.23.4

蛇年第一个版本,开工大吉!🐍

5.23.3

Last version of the Dragon Year, Happy Chinese New Year! 🐲

  • ⌨️ MISC: Add accessibility tests for all component demos to ensure compliance with accessibility standards. Optimize accessibility support for some components, improving compatibility with screen readers and keyboard operations. #51372 @​aojunhao123
  • 🐞 MISC: Fix importing antd/dist/reset.css file issue. #52559 @​CaptainVolcom
  • 🐞 Fix Button throwing error when loading is null. #52508 @​li-jia-nan
  • 🐞 Fix Table last row border color transition issue. #52549 @​DDDDD12138
  • 💄 Fix Cascader checkbox cursor style in disabled state. #52539 @​aojunhao123
  • 💄 Fix ConfigProvider not correctly modifying icon style priority when StyleProvider configures layer. #52533 @​zombieJ
  • 🐞 Fix Layout sidebar toggle button style missing in non-cssVar mode. #52537 @​afc163
  • 🐞 Fix Tree checkbox cursor style in disabled state. #52525 @​aojunhao123
  • notification
    • 🐞 Fix notification useNotification closeIcon configuration not working. #52516 @​typenoob
    • 🐞 Fix notification component display flicker issue under App component. #52499 @​afc163
  • RTL

龙年最后一版,祝各位新春愉快!🐲

  • ⌨️ MISC: 为所有组件的示例添加了可访问性测试,确保符合无障碍标准。并优化了部分组件的可访问性支持,改进了对屏幕阅读器和键盘操作的兼容性。#51372 @​aojunhao123
  • 🐞 MISC: 修复导入 antd/dist/reset.css 文件的问题。#52559 @​CaptainVolcom
  • 🐞 修复 Button loadingnull 时抛错的问题。#52508 @​li-jia-nan
  • 🐞 修复 Table 最后一行边框颜色过渡问题。#52549 @​DDDDD12138
  • 💄 修复 Cascader 组件禁用状态下复选框的鼠标指针样式问题。#52539 @​aojunhao123
  • 💄 修复 ConfigProvider 在 StyleProvider 配置 layer 时不会正确修改图标对应样式优先级的问题。#52533 @​zombieJ
  • 🐞 修复 Layout 切换侧边栏按钮在非 cssVar 模式下样式丢失的问题。. #52537 @​afc163
  • 🐞 修复 Tree 组件禁用状态下复选框的鼠标指针样式问题。#52525 @​aojunhao123
  • notification
    • 🐞 修复 notification useNotificationcloseIcon 配置无效的问题。#52516 @​typenoob
    • 🐞 修复 notification 组件在 App 组件下的显示闪烁问题。#52499 @​afc163
  • RTL

5.23.2

  • 🐞 Fix Space.Compact throwing Should not use more than one & in a selector warning. #52489
  • 💄 Fix the Layout switching sidebar button style was lost. #52477
  • 💄 Fix the scroll bar height is not 0 when the first row of the virtual scroll Table is collapsed. #52447 @​LeeSSHH

... (truncated)

Changelog

Sourced from antd's changelog.

5.23.4

2025-02-05

First release in the Year of the Snake, wishing you a prosperous start! 🐍

5.23.3

2025-01-28

Last version of the Dragon Year, Happy Chinese New Year! 🐲

  • ⌨️ MISC: Add accessibility tests for all component demos to ensure compliance with accessibility standards. Optimize accessibility support for some components, improving compatibility with screen readers and keyboard operations. #51372 @​aojunhao123
  • 🐞 MISC: Fix importing antd/dist/reset.css file issue. #52559 @​CaptainVolcom
  • 🐞 Fix Button throwing error when loading is null. #52508 @​li-jia-nan
  • 🐞 Fix Table last row border color transition issue. #52549 @​DDDDD12138
  • 💄 Fix Cascader checkbox cursor style in disabled state. #52539 @​aojunhao123
  • 💄 Fix ConfigProvider not correctly modifying icon style priority when StyleProvider configures layer. #52533 @​zombieJ
  • 🐞 Fix Layout sidebar toggle button style missing in non-cssVar mode. #52537 @​afc163
  • 🐞 Fix Tree checkbox cursor style in disabled state. #52525 @​aojunhao123
  • notification
    • 🐞 Fix notification useNotification closeIcon configuration not working. #52516 @​typenoob
    • 🐞 Fix notification component display flicker issue under App component. #52499 @​afc163
  • RTL

5.23.2

2025-01-20

  • 🐞 Fix Space.Compact throwing Should not use more than one & in a selector warning. #52489
  • 💄 Fix the Layout switching sidebar button style was lost. #52477
  • 💄 Fix the scroll bar height is not 0 when the first row of the virtual scroll Table is collapsed. #52447 @​LeeSSHH
  • 💄 Fix the last item in Descriptions did not correctly fill the remaining space. #52410 @​anyuxuan
  • 💄 Fix extra margin for the last item in Radio. #52433
  • 💄 Fix the Input/Mentions clear button padding was incorrect. #52407 @​ustcfury
  • 💄 Fix rounded corners of addonAfter in Input compact mode. #52490 @​DDDDD12138
  • 💄 Fix Menu.Item links were still clickable and lacked disabled styles when in disabled state. #52402 @​aojunhao123
  • TypeScript
    • 🤖 MISC: Optimize PurePanel to use React.ComponentType type. #52480
    • 🤖 Fix missing token type for Skeleton and Rate. #52406 @​coding-ice

5.23.1

... (truncated)

Commits

Updates react-router-dom from 7.1.1 to 7.1.5

Release notes

Sourced from react-router-dom's releases.

v7.1.3

See the changelog for release notes: https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v713

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

... (truncated)

Changelog

Sourced from react-router-dom's changelog.

7.1.5

Patch Changes

7.1.4

Patch Changes

7.1.3

Patch Changes

7.1.2

Patch Changes

Commits

Updates recharts from 2.15.0 to 2.15.1

Release notes

Sourced from recharts's releases.

v2.15.1

What's Changed

Quick patch release, nothing crazy going on here.

In the meantime please help us test recharts 3.0 alpha recharts/recharts#5445 🚀

Fix

Chore

New Contributors

Full Changelog: recharts/recharts@v2.15.0...v2.15.1

Commits

Updates @eslint/compat from 1.2.4 to 1.2.6

Release notes

Sourced from @​eslint/compat's releases.

compat: v1.2.6

1.2.6 (2025-01-31)

Bug Fixes

Dependencies

  • The following workspace dependencies were updated
    • devDependencies
      • @​eslint/core bumped from ^0.10.0 to ^0.11.0

compat: v1.2.5

1.2.5 (2025-01-09)

Dependencies

  • The following workspace dependencies were updated
    • devDependencies
      • @​eslint/core bumped from ^0.9.1 to ^0.10.0
Commits

Updates @types/react from 19.0.3 to 19.0.8

Commits

Updates @types/react-dom from 19.0.2 to 19.0.3

Commits

Updates eslint-plugin-prettier from 5.2.1 to 5.2.3

Release notes

Sourced from eslint-plugin-prettier's releases.

v5.2.3

Patch Changes

v5.2.2

Patch Changes

What's Changed

New Contributors

Full Changelog: prettier/eslint-plugin-prettier@v5.2.1...v5.2.2

Changelog

Sourced from eslint-plugin-prettier's changelog.

5.2.3

Patch Changes

5.2.2

Patch Changes

Commits
  • 6fd7ba1 chore: release eslint-plugin-prettier (#704)
  • 190d6f9 build(deps): Bump synckit from 0.9.1 to 0.9.2 (#705)
  • 9cf6a01 build(deps-dev): Bump svelte from 4.2.8 to 4.2.19 (#677)
  • 9c6141f chore: add plugin name to flat recommended config (#703)
  • 35a5cd0 chore: bupm eslint-plugin-comments (#702)
  • df123a5 chore: release eslint-plugin-prettier (#701)
  • e272d7c chore: use double quote for changesets/changelog files
  • aa5b59f fix: report node when loc not found (#700)
  • 37d87ea chore: update FUNDING.yml
  • b307125 docs(README): fixes legacy ESlint configs link (#686)
  • Additional commits viewable in compare view

Updates eslint-plugin-react from 7.37.3 to 7.37.4

Release notes

Sourced from eslint-plugin-react's releases.

v7.37.4

Fixed

  • [no-unknown-property]: support onBeforeToggle, popoverTarget, popoverTargetAction attributes (#3865[] @​acusti)
  • [types] fix types of flat configs (#3874[] @​ljharb)

#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 #1135: jsx-eslint/eslint-plugin-react#1135 #1139: jsx-eslint/eslint-plugin-react#1139 #1148: jsx-eslint/eslint-plugin-react#1148 #1149: jsx-eslint/eslint-plugin-react#1149

... (truncated)

Changelog

Sourced from eslint-plugin-react's changelog.

7.37.4 - 2025.01.12

Fixed

  • [no-unknown-property]: support onBeforeToggle, popoverTarget, popoverTargetAction attributes (#3865[] @​acusti)
  • [types] fix types of flat configs (#3874[] @​ljharb)

#3874: jsx-eslint/eslint-plugin-react#3874 #3865: jsx-eslint/eslint-plugin-react#3865

Commits
  • e6b5b41 Update CHANGELOG and bump version
  • cfd5edd [Dev Deps] update @babel/eslint-parser
  • efc021f [types] fix types of flat configs
  • 82a196a [Fix] no-unknown-property: support onBeforeToggle, popoverTarget, `popo...
  • 5c816ed [actions] publish action: allow additional URL
  • See full diff in compare view

Updates eslint-plugin-react-refresh from 0.4.16 to 0.4.19

Release notes

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

v0.4.19

Add name to configs for ESLint Config Inspector

v0.4.18

ESM/CJS interop is the worse that happened to this ecosystem, this is all I have to say.

v0.4.17

  • Fix detection of local components to not generate warning on for variable inside JSX files that follow React component naming (fixes #75)
  • Update types to not require extra unnecessary .default property access under TS node16 module resolution (fixes #70)
Changelog

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

0.4.19

Add name to configs for ESLint Config Inspector

0.4.18

ESM/CJS interop is the worse that happened to this ecosystem, this is all I have to say.

0.4.17

  • Fix detection of local components to not generate warning on for variable inside JSX files that follow React component naming (fixes #75)
  • Update types to not require extra unnecessary .default property access under TS node16 module resolution (fixes #70)
Commits
  • b054ab4 0.4.19 [publish]
  • f36623b fix: added name attribute for eslint config inspector (#77)
  • 826d8c9 Create SECURITY.md
  • 3d6251d Fix types [publish]
  • 47f25f0 Update types to not require extra unnecessary .default property access unde...
  • 639e772 Fix detection of local components to not generate warning on for variable ins...
  • See full diff in compare view

Updates less from 4.2.1 to 4.2.2

Release notes

Sourced from less's releases.

v4.2.2

less/less.js#4290 Fix less/less.js#4268 nested pseudo-selector parsing (@​puckowski) less/less.js#4291 Enhance Less.js test environment setup (#4291) (@​iChenLei) less/less.js#4295 Fix less/less.js#4252 container queries created via mixin evaluating variables incorrectly (@​puckowski) less/less.js#4294 Fix less/less.js#3737 allow blank variable declarationd (@​puckowski) less/less.js#4292 Fix less/less.js#4258 variable interpolation after math (@​puckowski) less/less.js#4293 Fix less/less.js#4264 strip line comment from expression (@​puckowski) less/less.js#4302 Fix less/less.js#4301 at-rule declarations missing (@​puckowski)

Bumps the js-patch group with 15 updates in the /ui directory:

| Package | From | To |
| --- | --- | --- |
| [@connectrpc/connect](https://github.com/connectrpc/connect-es/tree/HEAD/packages/connect) | `2.0.0` | `2.0.1` |
| [@connectrpc/connect-query](https://github.com/connectrpc/connect-query-es/tree/HEAD/packages/connect-query) | `2.0.0` | `2.0.1` |
| [@connectrpc/connect-web](https://github.com/connectrpc/connect-es/tree/HEAD/packages/connect-web) | `2.0.0` | `2.0.1` |
| [antd](https://github.com/ant-design/ant-design) | `5.23.0` | `5.23.4` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `7.1.1` | `7.1.5` |
| [recharts](https://github.com/recharts/recharts) | `2.15.0` | `2.15.1` |
| [@eslint/compat](https://github.com/eslint/rewrite) | `1.2.4` | `1.2.6` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.0.3` | `19.0.8` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.0.2` | `19.0.3` |
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | `5.2.1` | `5.2.3` |
| [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) | `7.37.3` | `7.37.4` |
| [eslint-plugin-react-refresh](https://github.com/ArnaudBarre/eslint-plugin-react-refresh) | `0.4.16` | `0.4.19` |
| [less](https://github.com/less/less.js) | `4.2.1` | `4.2.2` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.7.2` | `5.7.3` |
| [zx](https://github.com/google/zx) | `8.3.0` | `8.3.2` |



Updates `@connectrpc/connect` from 2.0.0 to 2.0.1
- [Release notes](https://github.com/connectrpc/connect-es/releases)
- [Commits](https://github.com/connectrpc/connect-es/commits/v2.0.1/packages/connect)

Updates `@connectrpc/connect-query` from 2.0.0 to 2.0.1
- [Release notes](https://github.com/connectrpc/connect-query-es/releases)
- [Commits](https://github.com/connectrpc/connect-query-es/commits/v2.0.1/packages/connect-query)

Updates `@connectrpc/connect-web` from 2.0.0 to 2.0.1
- [Release notes](https://github.com/connectrpc/connect-es/releases)
- [Commits](https://github.com/connectrpc/connect-es/commits/v2.0.1/packages/connect-web)

Updates `antd` from 5.23.0 to 5.23.4
- [Release notes](https://github.com/ant-design/ant-design/releases)
- [Changelog](https://github.com/ant-design/ant-design/blob/master/CHANGELOG.en-US.md)
- [Commits](ant-design/ant-design@5.23.0...5.23.4)

Updates `react-router-dom` from 7.1.1 to 7.1.5
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/[email protected]/packages/react-router-dom)

Updates `recharts` from 2.15.0 to 2.15.1
- [Release notes](https://github.com/recharts/recharts/releases)
- [Changelog](https://github.com/recharts/recharts/blob/3.x/CHANGELOG.md)
- [Commits](recharts/recharts@v2.15.0...v2.15.1)

Updates `@eslint/compat` from 1.2.4 to 1.2.6
- [Release notes](https://github.com/eslint/rewrite/releases)
- [Changelog](https://github.com/eslint/rewrite/blob/main/release-please-config.json)
- [Commits](eslint/rewrite@compat-v1.2.4...compat-v1.2.6)

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

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

Updates `eslint-plugin-prettier` from 5.2.1 to 5.2.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.2.1...v5.2.3)

Updates `eslint-plugin-react` from 7.37.3 to 7.37.4
- [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.37.3...v7.37.4)

Updates `eslint-plugin-react-refresh` from 0.4.16 to 0.4.19
- [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.16...v0.4.19)

Updates `less` from 4.2.1 to 4.2.2
- [Release notes](https://github.com/less/less.js/releases)
- [Changelog](https://github.com/less/less.js/blob/master/CHANGELOG.md)
- [Commits](less/less.js@v4.2.1...v4.2.2)

Updates `typescript` from 5.7.2 to 5.7.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.7.2...v5.7.3)

Updates `zx` from 8.3.0 to 8.3.2
- [Release notes](https://github.com/google/zx/releases)
- [Commits](google/zx@8.3.0...8.3.2)

---
updated-dependencies:
- dependency-name: "@connectrpc/connect"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: js-patch
- dependency-name: "@connectrpc/connect-query"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: js-patch
- dependency-name: "@connectrpc/connect-web"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: js-patch
- dependency-name: antd
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: js-patch
- dependency-name: react-router-dom
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: js-patch
- dependency-name: recharts
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: js-patch
- dependency-name: "@eslint/compat"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-patch
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-patch
- dependency-name: "@types/react-dom"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-patch
- dependency-name: eslint-plugin-prettier
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-patch
- dependency-name: eslint-plugin-react
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-patch
- dependency-name: eslint-plugin-react-refresh
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-patch
- dependency-name: less
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-patch
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-patch
- dependency-name: zx
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner February 9, 2025 05:42
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Feb 9, 2025
Copy link

netlify bot commented Feb 9, 2025

Deploy Preview for docs-kargo-io ready!

Name Link
🔨 Latest commit 71dceff
🔍 Latest deploy log https://app.netlify.com/sites/docs-kargo-io/deploys/67a8404740d7dc0008320d13
😎 Deploy Preview https://deploy-preview-3476.docs.kargo.io
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

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.

1 participant