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): update all non-major dependencies #222

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 22, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/react (source) 18.3.2 -> 18.3.18 age adoption passing confidence
@types/react-dom (source) 18.3.0 -> 18.3.5 age adoption passing confidence
@vitejs/plugin-react (source) 4.2.1 -> 4.3.4 age adoption passing confidence
eslint (source) 8.57.0 -> 8.57.1 age adoption passing confidence
eslint-plugin-react 7.34.1 -> 7.37.2 age adoption passing confidence
prettier (source) 3.2.5 -> 3.4.2 age adoption passing confidence
typescript (source) 5.4.5 -> 5.7.2 age adoption passing confidence
vite (source) 5.2.11 -> 5.4.11 age adoption passing confidence

Release Notes

vitejs/vite-plugin-react (@​vitejs/plugin-react)

v4.3.4

Compare Source

Add Vite 6 to peerDependencies range

Vite 6 is highly backward compatible, not much to add!

Force Babel to output spec compliant import attributes #​386

The default was an old spec (with type: "json"). We now enforce spec compliant (with { type: "json" })

v4.3.3

Compare Source

React Compiler runtimeModule option removed

React Compiler was updated to accept a target option and runtimeModule was removed. vite-plugin-react will still detect runtimeModule for backwards compatibility.

When using a custom runtimeModule or target !== '19', the plugin will not try to pre-optimize react/compiler-runtime dependency.

The react-compiler-runtime is now available on npm can be used instead of the local shim for people using the compiler with React < 19.

Here is the configuration to use the compiler with React 18 and correct source maps in development:

npm install babel-plugin-react-compiler react-compiler-runtime @&#8203;babel/plugin-transform-react-jsx-development
export default defineConfig(({ command }) => {
  const babelPlugins = [['babel-plugin-react-compiler', { target: '18' }]]
  if (command === 'serve') {
    babelPlugins.push(['@&#8203;babel/plugin-transform-react-jsx-development', {}])
  }

  return {
    plugins: [react({ babel: { plugins: babelPlugins } })],
  }
})

v4.3.2

Compare Source

Ignore directive sourcemap error #​369

v4.3.1

Compare Source

Fix support for React Compiler with React 18

The previous version made this assumption that the compiler was only usable with React 19, but it's possible to use it with React 18 and a custom runtimeModule: https://gist.github.com/poteto/37c076bf112a07ba39d0e5f0645fec43

When using a custom runtimeModule, the plugin will not try to pre-optimize react/compiler-runtime dependency.

Reminder: Vite expect code outside of node_modules to be ESM, so you will need to update the gist with import React from 'react'.

v4.3.0

Compare Source

Fix support for React compiler

Don't set retainLines: true when the React compiler is used. This creates whitespace issues and the compiler is modifying the JSX too much to get correct line numbers after that. If you want to use the React compiler and get back correct line numbers for tools like vite-plugin-react-click-to-component to work, you should update your config to something like:

export default defineConfig(({ command }) => {
  const babelPlugins = [['babel-plugin-react-compiler', {}]]
  if (command === 'serve') {
    babelPlugins.push(['@&#8203;babel/plugin-transform-react-jsx-development', {}])
  }

  return {
    plugins: [react({ babel: { plugins: babelPlugins } })],
  }
})
Support HMR for class components

This is a long overdue and should fix some issues people had with HMR when migrating from CRA.

eslint/eslint (eslint)

v8.57.1

Compare Source

jsx-eslint/eslint-plugin-react (eslint-plugin-react)

v7.37.2

Compare Source

Fixed
  • [destructuring-assignment]: fix false negative when using typeof props.a (#​3835 @​golopot)
Changed
  • [Refactor] [destructuring-assignment]: use getParentStatelessComponent (#​3835 @​golopot)

v7.37.1

Compare Source

Fixed
Changed

v7.37.0

Compare Source

Added
Changed

v7.36.1

Compare Source

Fixed

v7.36.0

Compare Source

Added
Fixed
  • [function-component-definition], [boolean-prop-naming], [jsx-first-prop-new-line], [jsx-props-no-multi-spaces], propTypes: use type args (#​3629 @​HenryBrown0)
  • JSX pragma: fail gracefully (#​3632 @​ljharb)
  • [jsx-props-no-spreading]: add explicitSpread option to schema (#​3799 @​ljharb)
Changed

v7.35.2

Compare Source

Fixed
  • [jsx-curly-brace-presence]: avoid autofixing attributes with double quotes to a double quoted attribute ([#​3814][] @​ljharb)

undefined
[#​1000]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1000%0A[#​1002]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1002%0A[#​1005]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1005%0A[#​100]: https://github.com/jsx-eslint/eslint-plugin-react/issues/100%0A[#​1010]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1010%0A[#​1013]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1013%0A[#​1022]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1022%0A[#​1029]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1029%0A[#​102]: https://github.com/jsx-eslint/eslint-plugin-react/issues/102%0A[#​1034]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1034%0A[#​1038]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1038%0A[#​1041]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1041%0A[#​1043]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1043%0A[#​1046]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1046%0A[#​1047]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1047%0A[#​1050]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1050%0A[#​1053]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1053%0A[#​1057]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1057%0A[#​105]: https://github.com/jsx-eslint/eslint-plugin-react/issues/105%0A[#​1061]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1061%0A[#​1062]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1062%0A[#​1070]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1070%0A[#​1071]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1071%0A[#​1073]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1073%0A[#​1076]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1076%0A[#​1079]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1079%0A[#​1088]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1088%0A[#​1098]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1098%0A[#​1101]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1101%0A[#​1103]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1103%0A[#​110]: https://github.com/jsx-eslint/eslint-plugin-react/issues/110%0A[#​1116]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1116%0A[#​1117]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1117%0A[#​1119]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1119%0A[#​1121]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1121%0A[#​1122]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1122%0A[#​1123]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1123%0A[#​1130]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1130%0A[#​1131]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1131%0A[#​1132]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1132%0A[#​1134]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1134%0A[#​1135]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1135%0A[#​1139]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1139%0A[#​1148]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1148%0A[#​1149]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1149%0A[#​114]: https://github.com/jsx-eslint/eslint-plugin-react/pull/114%0A[#​1151]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1151%0A[#​1155]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1155%0A[#​1161]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1161%0A[#​1167]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1167%0A[#​1173]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1173%0A[#​1174]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1174%0A[#​1175]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1175%0A[#​1178]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1178%0A[#​1179]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1179%0A[#​117]: https://github.com/jsx-eslint/eslint-plugin-react/pull/117%0A[#​1180]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1180%0A[#​1183]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1183%0A[#​1189]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1189%0A[#​118]: https://github.com/jsx-eslint/eslint-plugin-react/issues/118%0A[#​1192]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1192%0A[#​1195]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1195%0A[#​1199]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1199%0A[#​119]: https://github.com/jsx-eslint/eslint-plugin-react/pull/119%0A[#​11]: https://github.com/jsx-eslint/eslint-plugin-react/issues/11%0A[#​1201]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1201%0A[#​1202]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1202%0A[#​1206]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1206%0A[#​1213]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1213%0A[#​1216]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1216%0A[#​1222]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1222%0A[#​1226]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1226%0A[#​1227]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1227%0A[#​122]: https://github.com/jsx-eslint/eslint-plugin-react/issues/122%0A[#​1231]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1231%0A[#​1236]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1236%0A[#​1239]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1239%0A[#​123]: https://github.com/jsx-eslint/eslint-plugin-react/pull/123%0A[#​1241]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1241%0A[#​1242]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1242%0A[#​1246]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1246%0A[#​1249]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1249%0A[#​1253]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1253%0A[#​1257]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1257%0A[#​125]: https://github.com/jsx-eslint/eslint-plugin-react/issues/125%0A[#​1260]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1260%0A[#​1261]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1261%0A[#​1262]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1262%0A[#​1264]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1264%0A[#​1266]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1266%0A[#​1269]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1269%0A[#​1273]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1273%0A[#​1274]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1274%0A[#​1277]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1277%0A[#​127]: https://github.com/jsx-eslint/eslint-plugin-react/pull/127%0A[#​1281]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1281%0A[#​1287]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1287%0A[#​1288]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1288%0A[#​1289]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1289%0A[#​128]: https://github.com/jsx-eslint/eslint-plugin-react/issues/128%0A[#​1290]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1290%0A[#​1294]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1294%0A[#​1296]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1296%0A[#​129]: https://github.com/jsx-eslint/eslint-plugin-react/issues/129%0A[#​12]: https://github.com/jsx-eslint/eslint-plugin-react/issues/12%0A[#​1301]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1301%0A[#​1303]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1303%0A[#​1306]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1306%0A[#​1308]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1308%0A[#​1309]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1309%0A[#​130]: https://github.com/jsx-eslint/eslint-plugin-react/issues/130%0A[#​1310]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1310%0A[#​1323]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1323%0A[#​1329]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1329%0A[#​132]: https://github.com/jsx-eslint/eslint-plugin-react/issues/132%0A[#​1335]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1335%0A[#​1337]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1337%0A[#​133]: https://github.com/jsx-eslint/eslint-plugin-react/issues/133%0A[#​1344]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1344%0A[#​1352]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1352%0A[#​1353]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1353%0A[#​1354]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1354%0A[#​135]: https://github.com/jsx-eslint/eslint-plugin-react/issues/135%0A[#​1361]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1361%0A[#​1363]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1363%0A[#​1364]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1364%0A[#​1366]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1366%0A[#​1369]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1369%0A[#​136]: https://github.com/jsx-eslint/eslint-plugin-react/issues/136%0A[#​1374]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1374%0A[#​1376]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1376%0A[#​137]: https://github.com/jsx-eslint/eslint-plugin-react/issues/137%0A[#​1380]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1380%0A[#​1381]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1381%0A[#​1382]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1382%0A[#​1383]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1383%0A[#​1384]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1384%0A[#​1386]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1386%0A[#​1388]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1388%0A[#​1389]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1389%0A[#​138]: https://github.com/jsx-eslint/eslint-plugin-react/pull/138%0A[#​1392]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1392%0A[#​1395]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1395%0A[#​1396]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1396%0A[#​1398]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1398%0A[#​139]: https://github.com/jsx-eslint/eslint-plugin-react/issues/139%0A[#​13]: https://github.com/jsx-eslint/eslint-plugin-react/issues/13%0A[#​1400]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1400%0A[#​1403]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1403%0A[#​1406]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1406%0A[#​1409]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1409%0A[#​1412]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1412%0A[#​1413]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1413%0A[#​1414]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1414%0A[#​1417]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1417%0A[#​1422]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1422%0A[#​1423]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1423%0A[#​142]: https://github.com/jsx-eslint/eslint-plugin-react/issues/142%0A[#​1432]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1432%0A[#​1435]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1435%0A[#​1438]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1438%0A[#​1444]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1444%0A[#​1449]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1449%0A[#​144]: https://github.com/jsx-eslint/eslint-plugin-react/issues/144%0A[#​1450]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1450%0A[#​145]: https://github.com/jsx-eslint/eslint-plugin-react/issues/145%0A[#​1462]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1462%0A[#​1464]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1464%0A[#​1467]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1467%0A[#​1468]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1468%0A[#​146]: https://github.com/jsx-eslint/eslint-plugin-react/issues/146%0A[#​1471]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1471%0A[#​1475]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1475%0A[#​1476]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1476%0A[#​1478]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1478%0A[#​1479]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1479%0A[#​147]: https://github.com/jsx-eslint/eslint-plugin-react/pull/147%0A[#​1485]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1485%0A[#​148]: https://github.com/jsx-eslint/eslint-plugin-react/issues/148%0A[#​1493]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1493%0A[[#&#8203


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

Copy link

vercel bot commented May 22, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
signal-itman-demo-85xh ❌ Failed (Inspect) Dec 20, 2024 1:57am

Copy link

changeset-bot bot commented May 22, 2024

⚠️ No Changeset found

Latest commit: 8a1dbf8

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copy link

coderabbitai bot commented May 22, 2024

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR. (Beta)
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

sweep-ai bot commented May 22, 2024

Sweep: PR Review

Authors of pull request: @renovate[bot]

Sweep is currently reviewing your pr...

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7aed899 to bef1e1e Compare May 23, 2024 22:53
@renovate renovate bot changed the title chore(deps): update dependency @vitejs/plugin-react to v4.3.0 chore(deps): update all non-major dependencies May 23, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from bef1e1e to 3d10cbf Compare May 28, 2024 08:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3d10cbf to 87a4162 Compare May 28, 2024 13:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 87a4162 to 8e8b94d Compare June 1, 2024 19:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8e8b94d to f66b546 Compare June 5, 2024 09:48
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f66b546 to b642d8c Compare June 7, 2024 12:25
Copy link

socket-security bot commented Jun 7, 2024

👍 Dependency issues cleared. Learn more about Socket for GitHub ↗︎

This PR previously contained dependency changes with security issues that have been resolved, removed, or ignored.

View full report↗︎

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9306a9a to c9e2d6c Compare October 23, 2024 07:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c9e2d6c to 00f22ef Compare November 11, 2024 13:22
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 00f22ef to 71222c2 Compare November 22, 2024 17:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 71222c2 to e378ab8 Compare November 26, 2024 08:24
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e378ab8 to d0133fb Compare November 26, 2024 14:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d0133fb to 9f939a9 Compare December 4, 2024 09:41
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9f939a9 to 30ef409 Compare December 4, 2024 18:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 30ef409 to 577e029 Compare December 5, 2024 22:36
Copy link

vercel bot commented Dec 5, 2024

Deployment failed with the following error:

Resource is limited - try again in 51 minutes (more than 100, code: "api-deployments-free-per-day").

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants