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 #1252

Merged
merged 2 commits into from
Jul 17, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 17, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update Pending
@mui/icons-material (source) 5.16.0 -> 5.16.1 age adoption passing confidence dependencies patch 5.16.4 (+2)
@mui/lab (source) 5.0.0-alpha.171 -> 5.0.0-alpha.172 age adoption passing confidence dependencies patch
@mui/material (source) 5.16.0 -> 5.16.1 age adoption passing confidence dependencies patch 5.16.4 (+2)
@mui/x-data-grid (source) 7.9.0 -> 7.10.0 age adoption passing confidence dependencies minor
@mui/x-date-pickers (source) 7.9.0 -> 7.10.0 age adoption passing confidence dependencies minor
eslint-plugin-react 7.34.3 -> 7.34.4 age adoption passing confidence devDependencies patch
github/codeql-action v3.25.11 -> v3.25.12 age adoption passing confidence action patch
knip (source) 5.24.2 -> 5.26.0 age adoption passing confidence devDependencies minor
prettier (source) 3.3.2 -> 3.3.3 age adoption passing confidence devDependencies patch
typescript-eslint (source) 7.15.0 -> 7.16.0 age adoption passing confidence devDependencies minor 7.16.1

Release Notes

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

v5.16.1

Compare Source

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

  • ⚛️ All packages, including Material UI, are now compatible with React 18.3.1
@mui/material@5.16.1
@mui/joy@5.0.0-beta.48
Docs
Core

All contributors of this release in alphabetical order: @​aarongarciah, @​oliviertassinari, @​omahs, @​ZeeshanTamboli

mui/mui-x (@​mui/x-data-grid)

v7.10.0

Compare Source

Jul 11, 2024

We'd like to offer a big thanks to the 12 contributors who made this release possible. Here are some highlights ✨:

  • 🎁 Add selectors to support showing child row count in footer in the Data Grid
  • ✨ New APIs for retrieving current item tree and item's children IDs in the Tree View
  • 🌍 Improve Spanish (es-ES) locale on the Data Grid
  • 🐞 Bugfixes
  • 📚 Documentation improvements
Data Grid
@mui/x-data-grid@7.10.0
@mui/x-data-grid-pro@7.10.0 pro

Same changes as in @mui/x-data-grid@7.10.0, plus:

@mui/x-data-grid-premium@7.10.0 premium

Same changes as in @mui/x-data-grid-pro@7.10.0.

Date and Time Pickers
@mui/x-date-pickers@7.10.0
@mui/x-date-pickers-pro@7.10.0 pro

Same changes as in @mui/x-date-pickers@7.10.0, plus:

Charts
@mui/x-charts@7.10.0
Tree View
@mui/x-tree-view@7.10.0
Docs
Core
jsx-eslint/eslint-plugin-react (eslint-plugin-react)

v7.34.4

Compare Source

Fixed
github/codeql-action (github/codeql-action)

v3.25.12

Compare Source

webpro-nl/knip (knip)

v5.26.0

Compare Source

v5.25.2

Compare Source

  • Include additional workspaces when loading manifests (resolves #​722) (ca03fd8)
  • Move & refactor setRefs → findInternalReferences (deeb2ac)
  • Minor refactors (09fc536)
  • Always pre-set moduleResolution: bundler if tsconfig.json (3c13118)
  • No need to publish twice here (34be850)
  • Minor refactors (c1db1ec)
  • Update docs re. shared/isolated workspaces (699fd28)
  • Set moduleResolution: bundler if not set and don't share it (resolves #​719) (2c24678)
  • fix: Use parseFragment instead of text node which breaks formatting (#​720) (3201c07)

v5.25.1

Compare Source

v5.25.0

Compare Source

v5.24.4

Compare Source

  • Start using central resolveEntry from plugin helpers (#​716) (65d8098)

v5.24.3

Compare Source

  • Improve Angular plugin a bit + add fixture/test (#​717) (641b5fc)
  • Fix Cannot read properties of undefined (reading 'name') (#​718) (f0f9f5a)
prettier/prettier (prettier)

v3.3.3

Compare Source

diff

Add parentheses for nullish coalescing in ternary (#​16391 by @​cdignam-segment)

This change adds clarity to operator precedence.

// Input
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.2
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.3
foo ? (bar ?? foo) : baz;
(foo ?? bar) ? a : b;
a ? b : (foo ?? bar);
Add parentheses for decorator expressions (#​16458 by @​y-schneider)

Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5.

// Input
@​(foo`tagged template`)
class X {}

// Prettier 3.3.2
@​foo`tagged template`
class X {}

// Prettier 3.3.3
@​(foo`tagged template`)
class X {}
Support @let declaration syntax (#​16474 by @​sosukesuzuki)

Adds support for Angular v18 @let declaration syntax.

Please see the following code example. The @let declaration allows you to define local variables within the template:

@​let name = 'Frodo';

<h1>Dashboard for {{name}}</h1>
Hello, {{name}}

For more details, please refer to the excellent blog post by the Angular Team: Introducing @​let in Angular.

We also appreciate the Angular Team for kindly answering our questions to implement this feature.

typescript-eslint/typescript-eslint (typescript-eslint)

v7.16.0

Compare Source

🚀 Features
  • eslint-plugin: [no-unnecessary-parameter-property-assignment] add new rule
🩹 Fixes
❤️ Thank You
  • Abraham Guo
  • auvred
  • Josh Goldberg ✨
  • Juan Sanchez
  • Vinccool96
  • YeonJuan
  • Yukihiro Hasegawa

You can read about our versioning strategy and releases on our website.


Configuration

📅 Schedule: Branch creation - "* 0-4 * * 3" (UTC), 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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Jul 17, 2024
@renovate renovate bot requested review from tackley, IanKrieger and a team as code owners July 17, 2024 00:17
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from e6f1bf1 to 7035891 Compare July 17, 2024 16:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7035891 to 5300c53 Compare July 17, 2024 18:54
@IanKrieger IanKrieger merged commit fdb8bfd into master Jul 17, 2024
8 checks passed
@IanKrieger IanKrieger deleted the renovate/all-minor-patch branch July 17, 2024 20:06
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant