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 in /ui with 15 updates #3370

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 Jan 26, 2025

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

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.2
react-router-dom 7.1.1 7.1.3
@eslint/compat 1.2.4 1.2.5
@types/node 22.10.5 22.10.10
@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.18
less 4.2.1 4.2.2
typescript 5.7.2 5.7.3
vite 6.0.7 6.0.11

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.2

Release notes

Sourced from antd's releases.

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
  • 💄 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

  • 🐞 修复 Space.Compact 抛出 Should not use more than one & in a selector 警告信息的问题。#52489
  • 💄 修复 Layout 切换侧边栏按钮样式丢失的问题。#52477
  • 💄 修复 Table 收起虚拟滚动表格第一行时滚动条高度不为 0 的问题。#52447 @​LeeSSHH
  • 💄 修复 Descriptions 最后一项未正确填充满剩余空间的问题。#52410 @​anyuxuan
  • 💄 修复 Radio.Group 最后一项多余 margin 的问题。#52433
  • 💄 修复 Input/Mentions 清除按钮 padding 不正确的问题。#52407 @​ustcfury
  • 💄 修复 Input 紧凑模式中 addonAfter 的圆角问题。#52490 @​DDDDD12138
  • 💄 修复 Menu.Item 在禁用状态下链接仍可点击且缺少禁用样式的问题。#52402 @​aojunhao123
  • TypeScript
    • 🤖 MISC: 优化 PurePanel 使用 React.ComponentType 类型。#52480
    • 🤖 修复 Skeleton 和 Rate 缺失的 token 类型。#52406 @​coding-ice

5.23.1


  • 🆕 新增 Tree 组件叶子节点的 className 用于区分节点类型。#52274 @​EmilyyyLiu
  • 🐞 修复 DatePicker superPrevIcon/superNextIcon/prevIcon/nextIcon 设置为 null 时切换按钮依旧存在的问题。#52327 @​afc163
  • 🐞 修复 Select 组件在 jest 测试中报错 not a valid selector 的问题。#51844 @​renovate
  • 🐞 修复 Layout.Sider 直接嵌套在 ConfigProvider 下时,theme 配置无效的问题。#52302 @​zombieJ
  • 🐞 修复 Splitter 二次展开时丢失上一次状态的问题。#52222 @​jjlstruggle
  • 🐞 修复 Table 树形展示且设置 checkStrictly 为 false 时,某些行被错误选中的问题。#52338 @​LeeSSHH
  • Button
    • 🐞 调整 Button 纯图标的大小从而修复按钮对齐和图标居中问题。#52353 @​afc163
    • 💄 修复 Button 丢失阴影样式的问题。#52304 @​zombieJ
  • RTL

... (truncated)

Changelog

Sourced from antd's changelog.

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

2025-01-13

Commits

Updates react-router-dom from 7.1.1 to 7.1.3

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

Changelog

Sourced from react-router-dom's changelog.

7.1.3

Patch Changes

7.1.2

Patch Changes

Commits

Updates @eslint/compat from 1.2.4 to 1.2.5

Release notes

Sourced from @​eslint/compat's releases.

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/node from 22.10.5 to 22.10.10

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.18

Release notes

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

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.18

ESM/CJS interop is the worth that happend 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
  • 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

Changelog

Sourced from less's changelog.

v4.2.2 (2025-01-04)

Commits

Updates typescript from 5.7.2 to 5.7.3

Release notes

Sourced from typescript's releases.

TypeScript 5.7.3

For release notes, check out the release announcement.

Downloads are available on npm

Commits
  • a5e123d Update LKG
  • 8bc0204 🤖 Pick PR #60828 (Fix CodeQL configuration, releases) into release-5.7 (#60923)
  • 7aa63df 🤖 Pick PR #60393 (Don't try to add an implicit undefi...) into release-5.7 (#...
  • 9df7c36 Bump version to 5.7.3 and LKG
  • e167412 🤖 Pick PR #60794 (Harden sanitizeLog against incorr...) into release-5.7 (#...
  • 9ba364c Fix coverage build on release-5.7 (#60792)
  • 4b7441a 🤖 Pick PR #60680 (Mark the inherited any-based index ...) into release-5.7 (#...
  • e844dc3 Cherry-pick #60402, #60440, #60616 into release-5.7 (#60777)
  • 21b02a1 🤖 Pick PR #60749 (Do not require import attribute on ...) into release-5.7 (#...
  • b82fd16 🤖 Pick PR #60576 (Avoid incorrectly reusing assertion...) into release-5.7 (#...
  • Additional commits viewable in compare view

Updates vite from 6.0.7 to 6.0.11

Release notes

Sourced from vite's releases.

v6.0.11

Please refer to CHANGELOG.md for details.

v6.0.10

Please refer to CHANGELOG.md for details.

v6.0.9

This version contains a breaking change due to security fixes. See GHSA-vg6x-rcgg-rjx6 for more details.

Please refer to CHANGELOG.md for details.

v6.0.8

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

6.0.11 (2025-01-21)

6.0.10 (2025-01-20)

6.0.9 (2025-01-20)

  • fix!: check host header to prevent DNS rebinding attacks and introduce server.allowedHosts (bd896fb)
  • fix!: default server.cors: false to disallow fetching from untrusted origins (b09572a)
  • fix: verify token for HMR WebSocket connection (029dcd6)

6.0.8 (2025-01-20)

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

| 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.2` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `7.1.1` | `7.1.3` |
| [@eslint/compat](https://github.com/eslint/rewrite) | `1.2.4` | `1.2.5` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.10.5` | `22.10.10` |
| [@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.18` |
| [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` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `6.0.7` | `6.0.11` |


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.2
- [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.2)

Updates `react-router-dom` from 7.1.1 to 7.1.3
- [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 `@eslint/compat` from 1.2.4 to 1.2.5
- [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.5)

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

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.18
- [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.18)

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](https://github.com/less/less.js/commits)

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 `vite` from 6.0.7 to 6.0.11
- [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/v6.0.11/packages/vite)

---
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: "@eslint/compat"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-patch
- dependency-name: "@types/node"
  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: vite
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jan 26, 2025
@dependabot dependabot bot requested a review from a team as a code owner January 26, 2025 05:34
@dependabot dependabot bot added the javascript Pull requests that update Javascript code label Jan 26, 2025
Copy link

netlify bot commented Jan 26, 2025

Deploy Preview for docs-kargo-io ready!

Name Link
🔨 Latest commit a220e13
🔍 Latest deploy log https://app.netlify.com/sites/docs-kargo-io/deploys/6795c95bf36d670008b0d51c
😎 Deploy Preview https://deploy-preview-3370.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.

0 participants