Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 11, 2025

Bumps @mui/x-date-pickers from 5.0.20 to 8.17.0.

Release notes

Sourced from @​mui/x-date-pickers's releases.

v8.17.0

We'd like to extend a big thank you to the 13 contributors who made this release possible. Here are some highlights ✨:

  • Add colorGetter prop to cartesian charts series

  • 🌎 Add Catalan (ca-ES) locale on the Data Grid

  • 🌎 Add Norwegian Bokmål (nb-NO) locale on the Charts

  • 🐞 Bugfixes

  • 📚 Documentation improvements

Special thanks go out to these community members for their valuable contributions: @​frncesc, @​Methuselah96, @​samuelwalk, @​htollefsen

The following team members contributed to this release: @​alexfauquette, @​bernardobelchior, @​flaviendelangle, @​Janpot, @​JCQuintas, @​mnajdova, @​rita-codes, @​arminmeh, @​brijeshb42

Data Grid

@mui/[email protected]

@mui/[email protected] pro

Same changes as in @mui/[email protected].

@mui/[email protected] premium

Same changes as in @mui/[email protected].

Date and Time Pickers

@mui/[email protected]

Internal changes.

@mui/[email protected] pro

Same changes as in @mui/[email protected].

Charts

@mui/[email protected]

... (truncated)

Changelog

Sourced from @​mui/x-date-pickers's changelog.

8.17.0

Nov 5, 2025

We'd like to extend a big thank you to the 13 contributors who made this release possible. Here are some highlights ✨:

  • Add colorGetter prop to cartesian charts series

  • 🌎 Add Catalan (ca-ES) locale on the Data Grid

  • 🌎 Add Norwegian Bokmål (nb-NO) locale on the Charts

  • 🐞 Bugfixes

  • 📚 Documentation improvements

Special thanks go out to these community members for their valuable contributions: @​frncesc, @​Methuselah96, @​samuelwalk, @​htollefsen

The following team members contributed to this release: @​alexfauquette, @​bernardobelchior, @​flaviendelangle, @​Janpot, @​JCQuintas, @​mnajdova, @​rita-codes, @​arminmeh, @​brijeshb42

Data Grid

@mui/[email protected]

@mui/[email protected] pro

Same changes as in @mui/[email protected].

@mui/[email protected] premium

Same changes as in @mui/[email protected].

Date and Time Pickers

@mui/[email protected]

Internal changes.

@mui/[email protected] pro

Same changes as in @mui/[email protected].

Charts

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​mui/x-date-pickers since your current version.


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [@mui/x-date-pickers](https://github.com/mui/mui-x/tree/HEAD/packages/x-date-pickers) from 5.0.20 to 8.17.0.
- [Release notes](https://github.com/mui/mui-x/releases)
- [Changelog](https://github.com/mui/mui-x/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mui/mui-x/commits/v8.17.0/packages/x-date-pickers)

---
updated-dependencies:
- dependency-name: "@mui/x-date-pickers"
  dependency-version: 8.17.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Nov 11, 2025
@dependabot dependabot bot requested review from a team and icatalina as code owners November 11, 2025 08:03
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Nov 11, 2025
"@mui/material": "^5.18.0",
"@mui/styles": "^5.18.0",
"@mui/x-date-pickers": "5.0.20",
"@mui/x-date-pickers": "8.17.0",
Copy link

Choose a reason for hiding this comment

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

Bug: The renderInput prop is removed in @mui/x-date-pickers v8, breaking custom TextField rendering.
Severity: CRITICAL | Confidence: 1.00

🔍 Detailed Analysis

The renderInput prop, which is used to customize the input field for date pickers, has been completely removed in @mui/x-date-pickers v8. This will cause B3ControlPicker.tsx and B3Picker.tsx to fail to render custom TextField components, leading to broken UI behavior and styling. The custom TextField configuration, including variant, error states, helper text, and onMouseDown handlers, will be ignored.

💡 Suggested Fix

Replace renderInput with slots={{textField: CustomTextField}} and slotProps={{textField: {...}}} in B3ControlPicker.tsx and B3Picker.tsx to migrate to the v8 API.

🤖 Prompt for AI Agent
Review the code at the location below. A potential bug has been identified by an AI
agent.
Verify if this is a real issue. If it is, propose a fix; if not, explain why it's not
valid.

Location: apps/storefront/package.json#L31

Potential issue: The `renderInput` prop, which is used to customize the input field for
date pickers, has been completely removed in `@mui/x-date-pickers` v8. This will cause
`B3ControlPicker.tsx` and `B3Picker.tsx` to fail to render custom `TextField`
components, leading to broken UI behavior and styling. The custom `TextField`
configuration, including variant, error states, helper text, and `onMouseDown` handlers,
will be ignored.

Did we get this right? 👍 / 👎 to inform future reviews.

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