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 material-ui monorepo #1561

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 9, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@mui/base (source) 5.0.0-alpha.126 -> 5.0.0-beta.59 age adoption passing confidence
@mui/lab (source) 5.0.0-alpha.127 -> 5.0.0-alpha.173 age adoption passing confidence
@mui/material (source) 5.12.1 -> 5.16.7 age adoption passing confidence
@mui/types (source) 7.2.4 -> 7.2.18 age adoption passing confidence

Release Notes

mui/material-ui (@​mui/base)

v5.0.0-beta.53

v5.0.0-beta.45

v5.0.0-beta.43

v5.0.0-beta.39

v5.0.0-beta.37

v5.0.0-beta.36

v5.0.0-beta.34

v5.0.0-beta.33

v5.0.0-beta.32

Breaking changes

The class prefix of Base UI components have been changed from Mui- to base-. This only affects codebases that uses class names verbatim, i.e. not exposed by JS objects such as buttonClasses, but as plain strings or in CSS stylesheets (.MuiButton.root)

To adapt your code to the new pattern:

  • replace all occurrences of the regex .Mui([A-Z][A-Za-z]*)- with .base-$1- (so MuiButton-root becomes base-Button-root, etc.),
  • replace all occurrences of the regex .Mui-([a-z]*) with .base--$1 (so Mui-disabled becomes base--disabled, etc.).
Changes

v5.0.0-beta.31

  • [base-ui][NumberInput] Remove inputId and inputRef types from NumberInput component (#​40425) @​sai6855

v5.0.0-beta.30

Compare Source

v5.0.0-beta.29

Compare Source

v5.0.0-beta.28

Compare Source

v5.0.0-beta.27

Compare Source

  • ​[base-ui] useControllableReducer warns when controlled props become uncontrolled (and vice versa) (#​39096) @​mj12albert

v5.0.0-beta.26

Compare Source

v5.0.0-beta.25

Compare Source

v5.0.0-beta.23

v5.0.0-beta.22

Compare Source

v5.0.0-beta.21

Compare Source

v5.0.0-beta.20

Compare Source

v5.0.0-beta.19

Compare Source

v5.0.0-beta.18

Compare Source

v5.0.0-beta.17

Compare Source

v5.0.0-beta.16

Compare Source

v5.0.0-beta.15

Compare Source

v5.0.0-beta.14

Compare Source

v5.0.0-beta.13

Compare Source

v5.0.0-beta.12

v5.0.0-beta.11

v5.0.0-beta.10

Compare Source

v5.0.0-beta.9

Compare Source

Breaking changes
Other changes

v5.0.0-beta.8

Compare Source

v5.0.0-beta.7

v5.0.0-beta.6

v5.0.0-beta.5

Compare Source

Aug 24, 2021

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

  • 🐛 Fixed a lot of bugs and regressions to get us closer to the v5 stable release milestone
  • 📚 Improved the docs and the migration guide for upgrading to v5
@material-ui/[email protected]
Breaking changes
  • ​ [core] Update .browserslistrc file (#​27788) @​DanailH

    The targets of the default bundle have changed:

    • Chrome 90 (up from 84)
    • Edge 91 (up from 85)
    • Safari 14 (macOS) (up from 13.1) and 12.4 (iOS) (up from 12.2)
    • Opera 76 (up from 70)
  • ​ [Autocomplete] Rename Value type to AutocompleteValue (#​27804) @​michaldudak

    The useAutocomplete hook used a type called Value. It was a very generic name for a type specific to the Autocomplete control, so it was removed to AutocompleteValue.

    -import { Value } from '@​material-ui/core/useAutocomplete';
    +import { AutocompleteValue } from '@​material-ui/core/useAutocomplete';
Changes
@material-ui/[email protected]
Breaking changes
  • ​ [system] Rename styleProps to ownerState (#​27830) @​mnajdova

    The change was done in order to better reflect what they are, not what we think they will be used for.

     <SomeSlotComponent
    -  styleProps={propsAndState}
    +  ownerState={propsAndState}
     />
Changes
@material-ui/[email protected]
@material-ui/[email protected]
@material-ui/[email protected]
@material-ui/[email protected]
Docs
Core

All contributors of this release in alphabetical order: @​aaronlademann-wf, @​alexile, @​atorenherrinton, @​benny0642, @​DanailH, @​eps1lon, @​hamidreza-nateghi, @​hbjORbj, @​jakeanq, @​JEONGJIHUN, @​LorenzHenk, @​mekouar-mehdi, @​michaldudak, @​mnajdova, @​nguyenyou, @​nolastemgarden, @​nomanoff, @​noviicee, @​oliviertassinari, @​pvdstel, @​qiweiii, @​siriwatknp, @​surajkumar016, @​teachhay, @​vedadeepta, @​will-amaral

v5.0.0-beta.4

Compare Source

Aug 13, 2021

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

@material-ui/[email protected]
Breaking changes
Changes
@material-ui/[email protected]
@material-ui/[email protected]
@material-ui/[email protected]
Docs
Core

All contributors of this release in alphabetical order: @​aaronlademann-wf, @​abriginets, @​DouglasPds, @​eps1lon, @​garronej, @​kylegach, @​LorenzHenk, @​m4theushw, @​matiasherranz, @​mnajdova, @​nikitabobers, @​oliviertassinari, @​R-Bower, @​ryancogswell, @​siriwatknp, @​tonextone, @​umidbekk, @​vedadeepta, @​YassinHussein

v5.0.0-beta.3

Compare Source

Aug 6, 2021

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

  • ​✨ jss-to-styled codemod has been improved to support createStyles and <React.Fragment> usage (#​27578) @​mnajdova
@material-ui/[email protected]
@material-ui/[email protected]
  • ​[system] Added top, left, right and bottom border color CSS properties to system (#​27580) @​R-Bower
@material-ui/[email protected]
@material-ui/[email protected]
Docs

Configuration

📅 Schedule: Branch creation - "after 10:30 before 18:00 every weekday except after 13:00 before 14:00" in timezone Asia/Tokyo, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, 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

changeset-bot bot commented Apr 9, 2024

⚠️ No Changeset found

Latest commit: cac6a5d

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.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

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

@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from e6717e3 to bae4c14 Compare May 1, 2024 15:40
Copy link

cloudflare-workers-and-pages bot commented May 1, 2024

Deploying for-ui with  Cloudflare Pages  Cloudflare Pages

Latest commit: cac6a5d
Status:🚫  Build failed.

View logs

@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from bae4c14 to ca8bff3 Compare May 8, 2024 15:41
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from ca8bff3 to 1ea1e31 Compare May 16, 2024 11:32
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 1ea1e31 to 0e21fec Compare May 29, 2024 13:53
Copy link

coderabbitai bot commented May 29, 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.

Walkthrough

この変更は、Next.jsアプリケーション、Viteアプリケーション、およびUIライブラリの依存関係を更新することに焦点を当てています。具体的には、@mui/base@mui/lab@mui/material、および@mui/typesのバージョンが変更され、より安定したリリースが反映されています。これにより、アプリケーションの機能やパフォーマンスが向上します。

Changes

ファイル 変更の概要
example/nextjs-app/package.json, example/vite-app/package.json, packages/for-ui/package.json @mui/base: 5.0.0-alpha.126 から 5.0.0-beta.40 へ、@mui/lab: 5.0.0-alpha.127 から 5.0.0-alpha.173 へ、@mui/material: 5.12.1 から 5.16.7 へ、@mui/types: 7.2.4 から 7.2.15 へバージョンが更新されました。

Sequence Diagram(s)

sequenceDiagram
    participant A as ユーザー
    participant B as アプリケーション
    participant C as ライブラリ

    A->>B: アプリを起動
    B->>C: 最新のライブラリを使用
    C-->>B: 更新された機能を返す
    B-->>A: 改良されたUIを表示
Loading

Poem

🐇
うさぎの耳で風を感じ、
新しい依存関係に心躍る。
安定したバージョン、
機能が増えて、
嬉しい変化に跳ねる!
さあ、みんなで楽しもう🎉
🐰


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

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.

@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 0e21fec to 27baa40 Compare June 12, 2024 14:13
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 27baa40 to 86a5926 Compare June 28, 2024 15:13
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 2 times, most recently from ac1dcb1 to 33732c8 Compare July 11, 2024 17:55
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 2 times, most recently from ce30c07 to 1a90eca Compare July 16, 2024 17:16
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 2 times, most recently from ae5b7c6 to 0c461d0 Compare July 30, 2024 22:25
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 0c461d0 to bfa706f Compare August 9, 2024 13:27
Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 876faaa and bfa706f.

Files ignored due to path filters (3)
  • example/nextjs-app/package-lock.json is excluded by !**/package-lock.json
  • example/vite-app/package-lock.json is excluded by !**/package-lock.json
  • package-lock.json is excluded by !**/package-lock.json
Files selected for processing (3)
  • example/nextjs-app/package.json (1 hunks)
  • example/vite-app/package.json (1 hunks)
  • packages/for-ui/package.json (1 hunks)
Additional comments not posted (3)
example/nextjs-app/package.json (1)

15-17: 依存関係の更新を確認してください。

@mui/base@mui/lab、および@mui/materialのバージョンが更新されました。これにより、アプリケーションの機能や互換性に影響を与える可能性があります。新しいバージョンのリリースノートを確認し、アプリケーションでのテストを行ってください。

example/vite-app/package.json (1)

14-16: 依存関係の更新を確認してください。

@mui/base@mui/lab、および@mui/materialのバージョンが更新されました。これにより、アプリケーションの機能や互換性に影響を与える可能性があります。新しいバージョンのリリースノートを確認し、アプリケーションでのテストを行ってください。

packages/for-ui/package.json (1)

64-67: 依存関係の更新を確認してください。

@mui/base@mui/lab@mui/material、および@mui/typesのバージョンが更新されました。これにより、ライブラリの機能や互換性に影響を与える可能性があります。新しいバージョンのリリースノートを確認し、ライブラリでのテストを行ってください。

@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from bfa706f to efd513d Compare August 27, 2024 11:21
Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between bfa706f and efd513d.

Files ignored due to path filters (3)
  • example/nextjs-app/package-lock.json is excluded by !**/package-lock.json
  • example/vite-app/package-lock.json is excluded by !**/package-lock.json
  • package-lock.json is excluded by !**/package-lock.json
Files selected for processing (3)
  • example/nextjs-app/package.json (1 hunks)
  • example/vite-app/package.json (1 hunks)
  • packages/for-ui/package.json (1 hunks)
Files skipped from review due to trivial changes (1)
  • packages/for-ui/package.json
Additional comments not posted (6)
example/nextjs-app/package.json (3)

15-15: バージョン更新の承認

@mui/baseのバージョンが5.0.0-alpha.126から5.0.0-beta.40に更新されました。これはより安定したリリースを示し、改善とバグ修正が含まれているはずです。

コード変更を承認します。


16-16: バージョン更新の承認

@mui/labのバージョンが5.0.0-alpha.127から5.0.0-alpha.173に更新されました。これは開発の進行中であり、新機能や修正が含まれている可能性があります。

コード変更を承認します。


17-17: バージョン更新の承認

@mui/materialのバージョンが5.12.1から5.16.7に更新されました。これは改善とバグ修正が含まれているはずです。

コード変更を承認します。

example/vite-app/package.json (3)

14-14: バージョン更新の承認

@mui/baseのバージョンが5.0.0-alpha.126から5.0.0-beta.40に更新されました。これはより安定したリリースを示し、改善とバグ修正が含まれているはずです。

コード変更を承認します。


15-15: バージョン更新の承認

@mui/labのバージョンが5.0.0-alpha.127から5.0.0-alpha.173に更新されました。これは開発の進行中であり、新機能や修正が含まれている可能性があります。

コード変更を承認します。


16-16: バージョン更新の承認

@mui/materialのバージョンが5.12.1から5.16.7に更新されました。これは改善とバグ修正が含まれているはずです。

コード変更を承認します。

@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 2 times, most recently from ebb50b5 to 6badf78 Compare September 19, 2024 08:37
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 6badf78 to 4e6b61c Compare October 9, 2024 14:27
Copy link

PR-Agent was enabled for this repository. To continue using it, please link your git user with your CodiumAI identity here.

CI Failure Feedback 🧐

Action: build-nextjs

Failed stage: Run npm run build [❌]

Failure summary:

The action failed due to TypeScript compilation errors:

  • Error TS2307: Cannot find module '@mui/base/ButtonUnstyled' or its corresponding type declarations
    in src/button/Button.tsx.
  • Error TS2604: JSX element type 'TextareaAutosize' does not have any construct or call signatures in
    src/textArea/TextArea.tsx.
  • Error TS2786: 'TextareaAutosize' cannot be used as a JSX component in src/textArea/TextArea.tsx. Its
    type is not a valid JSX element type.
    These errors caused the build:types lifecycle script to fail,
    resulting in the overall failure of the build process.

  • Relevant error logs:
    1:  ##[group]Operating System
    2:  Ubuntu
    ...
    
    410:  > tsc -p tsconfig.build.json
    411:  �[36mvite v4.0.4 �[32mbuilding for production...�[36m�[39m
    412:  transforming...
    413:  �[32m✓�[39m 107 modules transformed.
    414:  rendering chunks...
    415:  computing gzip size...
    416:  �[2mdist/commonjs/�[22m�[36mfor-ui.js  �[39m�[1m�[2m86.04 kB�[22m�[1m�[22m�[2m │ gzip: 25.16 kB�[22m
    417:  �[2mdist/esm/�[22m�[36mfor-ui.esm.js  �[39m�[1m�[2m148.77 kB�[22m�[1m�[22m�[2m │ gzip: 32.28 kB�[22m
    418:  ##[error]src/button/Button.tsx(2,66): error TS2307: Cannot find module '@mui/base/ButtonUnstyled' or its corresponding type declarations.
    419:  ##[error]src/textArea/TextArea.tsx(136,12): error TS2604: JSX element type 'TextareaAutosize' does not have any construct or call signatures.
    420:  ##[error]src/textArea/TextArea.tsx(136,12): error TS2786: 'TextareaAutosize' cannot be used as a JSX component.
    421:  Its type 'typeof import("/home/runner/work/for-ui/for-ui/node_modules/@mui/base/TextareaAutosize/index")' is not a valid JSX element type.
    422:  npm ERR! Lifecycle script `build:types` failed with error: 
    423:  npm ERR! Error: command failed 
    424:  npm ERR!   in workspace: @4design/[email protected] 
    425:  npm ERR!   at location: /home/runner/work/for-ui/for-ui/packages/for-ui 
    426:  ERROR: "build:types" exited with 1.
    427:  npm ERR! Lifecycle script `build` failed with error: 
    428:  npm ERR! Error: command failed 
    429:  npm ERR!   in workspace: @4design/[email protected] 
    430:  npm ERR!   at location: /home/runner/work/for-ui/for-ui/packages/for-ui 
    431:  ##[error]Process completed with exit code 1.
    

    ✨ CI feedback usage guide:

    The CI feedback tool (/checks) automatically triggers when a PR has a failed check.
    The tool analyzes the failed checks and provides several feedbacks:

    • Failed stage
    • Failed test name
    • Failure summary
    • Relevant error logs

    In addition to being automatically triggered, the tool can also be invoked manually by commenting on a PR:

    /checks "https://github.com/{repo_name}/actions/runs/{run_number}/job/{job_number}"
    

    where {repo_name} is the name of the repository, {run_number} is the run number of the failed check, and {job_number} is the job number of the failed check.

    Configuration options

    • enable_auto_checks_feedback - if set to true, the tool will automatically provide feedback when a check is failed. Default is true.
    • excluded_checks_list - a list of checks to exclude from the feedback, for example: ["check1", "check2"]. Default is an empty list.
    • enable_help_text - if set to true, the tool will provide a help message with the feedback. Default is true.
    • persistent_comment - if set to true, the tool will overwrite a previous checks comment with the new feedback. Default is true.
    • final_update_message - if persistent_comment is true and updating a previous checks message, the tool will also create a new message: "Persistent checks updated to latest commit". Default is true.

    See more information about the checks tool in the docs.

    Copy link

    PR-Agent was enabled for this repository. To continue using it, please link your git user with your CodiumAI identity here.

    CI Failure Feedback 🧐

    Action: build-vite

    Failed stage: Run npm run build [❌]

    Failure summary:

    The action failed due to TypeScript compilation errors:

  • Error TS2307: Cannot find module '@mui/base/ButtonUnstyled' or its corresponding type declarations
    in src/button/Button.tsx.
  • Error TS2604: JSX element type 'TextareaAutosize' does not have any construct or call signatures in
    src/textArea/TextArea.tsx.
  • Error TS2786: 'TextareaAutosize' cannot be used as a JSX component in src/textArea/TextArea.tsx. Its
    type is not a valid JSX element type.
    These errors caused the build:types lifecycle script to fail,
    which in turn caused the build script to fail.

  • Relevant error logs:
    1:  ##[group]Operating System
    2:  Ubuntu
    ...
    
    410:  > tsc -p tsconfig.build.json
    411:  �[36mvite v4.0.4 �[32mbuilding for production...�[36m�[39m
    412:  transforming...
    413:  �[32m✓�[39m 107 modules transformed.
    414:  rendering chunks...
    415:  computing gzip size...
    416:  �[2mdist/commonjs/�[22m�[36mfor-ui.js  �[39m�[1m�[2m86.04 kB�[22m�[1m�[22m�[2m │ gzip: 25.16 kB�[22m
    417:  �[2mdist/esm/�[22m�[36mfor-ui.esm.js  �[39m�[1m�[2m148.77 kB�[22m�[1m�[22m�[2m │ gzip: 32.28 kB�[22m
    418:  ##[error]src/button/Button.tsx(2,66): error TS2307: Cannot find module '@mui/base/ButtonUnstyled' or its corresponding type declarations.
    419:  ##[error]src/textArea/TextArea.tsx(136,12): error TS2604: JSX element type 'TextareaAutosize' does not have any construct or call signatures.
    420:  ##[error]src/textArea/TextArea.tsx(136,12): error TS2786: 'TextareaAutosize' cannot be used as a JSX component.
    421:  Its type 'typeof import("/home/runner/work/for-ui/for-ui/node_modules/@mui/base/TextareaAutosize/index")' is not a valid JSX element type.
    422:  npm ERR! Lifecycle script `build:types` failed with error: 
    423:  npm ERR! Error: command failed 
    424:  npm ERR!   in workspace: @4design/[email protected] 
    425:  npm ERR!   at location: /home/runner/work/for-ui/for-ui/packages/for-ui 
    426:  ERROR: "build:types" exited with 1.
    427:  npm ERR! Lifecycle script `build` failed with error: 
    428:  npm ERR! Error: command failed 
    429:  npm ERR!   in workspace: @4design/[email protected] 
    430:  npm ERR!   at location: /home/runner/work/for-ui/for-ui/packages/for-ui 
    431:  ##[error]Process completed with exit code 1.
    

    ✨ CI feedback usage guide:

    The CI feedback tool (/checks) automatically triggers when a PR has a failed check.
    The tool analyzes the failed checks and provides several feedbacks:

    • Failed stage
    • Failed test name
    • Failure summary
    • Relevant error logs

    In addition to being automatically triggered, the tool can also be invoked manually by commenting on a PR:

    /checks "https://github.com/{repo_name}/actions/runs/{run_number}/job/{job_number}"
    

    where {repo_name} is the name of the repository, {run_number} is the run number of the failed check, and {job_number} is the job number of the failed check.

    Configuration options

    • enable_auto_checks_feedback - if set to true, the tool will automatically provide feedback when a check is failed. Default is true.
    • excluded_checks_list - a list of checks to exclude from the feedback, for example: ["check1", "check2"]. Default is an empty list.
    • enable_help_text - if set to true, the tool will provide a help message with the feedback. Default is true.
    • persistent_comment - if set to true, the tool will overwrite a previous checks comment with the new feedback. Default is true.
    • final_update_message - if persistent_comment is true and updating a previous checks message, the tool will also create a new message: "Persistent checks updated to latest commit". Default is true.

    See more information about the checks tool in the docs.

    @renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 4e6b61c to cac6a5d Compare October 15, 2024 20:48
    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