eclipse-tractusx / portal-frontend

Portal Frontend
Apache License 2.0
4 stars 25 forks source link

build(deps): bump the production-dependencies group with 14 updates #878

Closed dependabot[bot] closed 1 week ago

dependabot[bot] commented 2 weeks ago

Bumps the production-dependencies group with 14 updates:

Package From To
@emotion/styled 11.11.0 11.11.5
@mui/icons-material 5.15.14 5.15.20
@mui/material 5.15.14 5.15.20
@mui/x-data-grid 6.19.9 6.19.11
@reduxjs/toolkit 2.2.1 2.2.5
dayjs 1.11.10 1.11.11
i18next-browser-languagedetector 7.2.0 7.2.1
nanoid 5.0.6 5.0.7
phone 3.1.42 3.1.45
qs 6.12.0 6.12.1
@types/qs 6.9.13 6.9.15
react-hook-form 7.51.1 7.51.5
react-i18next 14.1.0 14.1.2
react-redux 9.1.0 9.1.2

Updates @emotion/styled from 11.11.0 to 11.11.5

Release notes

Sourced from @​emotion/styled's releases.

@​emotion/styled@​11.11.5

Patch Changes

Commits


Updates @mui/icons-material from 5.15.14 to 5.15.20

Release notes

Sourced from @​mui/icons-material's releases.

v5.15.20

Jun 12, 2024

A big thanks to the 9 contributors who made this release possible.

@mui/material@5.15.20

@mui/utils@5.15.15

Docs

Core

All contributors of this release in alphabetical order: @​aarongarciah, @​anle9650, @​DanailH, @​danilo-leal, @​erezstmn-doit, @​iammminzzy, @​oliviertassinari, @​sai6855, @​ZeeshanTamboli

v5.15.19

May 29, 2024

A big thanks to the 12 contributors who made this release possible. This release was mostly about 🐛 bug fixes and 📚 documentation improvements.

@mui/material@5.15.19

... (truncated)

Changelog

Sourced from @​mui/icons-material's changelog.

v5.15.20

Jun 12, 2024

A big thanks to the 9 contributors who made this release possible.

@mui/material@5.15.20

@mui/utils@5.15.15

Docs

Core

All contributors of this release in alphabetical order: @​aarongarciah, @​anle9650, @​DanailH, @​danilo-leal, @​erezstmn-doit, @​iammminzzy, @​oliviertassinari, @​sai6855, @​ZeeshanTamboli

v5.15.19

May 29, 2024

A big thanks to the 12 contributors who made this release possible. This release was mostly about 🐛 bug fixes and 📚 documentation improvements.

... (truncated)

Commits


Updates @mui/material from 5.15.14 to 5.15.20

Release notes

Sourced from @​mui/material's releases.

v5.15.20

Jun 12, 2024

A big thanks to the 9 contributors who made this release possible.

@mui/material@5.15.20

@mui/utils@5.15.15

Docs

Core

All contributors of this release in alphabetical order: @​aarongarciah, @​anle9650, @​DanailH, @​danilo-leal, @​erezstmn-doit, @​iammminzzy, @​oliviertassinari, @​sai6855, @​ZeeshanTamboli

v5.15.19

May 29, 2024

A big thanks to the 12 contributors who made this release possible. This release was mostly about 🐛 bug fixes and 📚 documentation improvements.

@mui/material@5.15.19

... (truncated)

Changelog

Sourced from @​mui/material's changelog.

v5.15.20

Jun 12, 2024

A big thanks to the 9 contributors who made this release possible.

@mui/material@5.15.20

@mui/utils@5.15.15

Docs

Core

All contributors of this release in alphabetical order: @​aarongarciah, @​anle9650, @​DanailH, @​danilo-leal, @​erezstmn-doit, @​iammminzzy, @​oliviertassinari, @​sai6855, @​ZeeshanTamboli

v5.15.19

May 29, 2024

A big thanks to the 12 contributors who made this release possible. This release was mostly about 🐛 bug fixes and 📚 documentation improvements.

... (truncated)

Commits


Updates @mui/x-data-grid from 6.19.9 to 6.19.11

Release notes

Sourced from @​mui/x-data-grid's releases.

v6.19.11

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

  • 🐞 Bugfixes

Data Grid

@mui/x-data-grid@6.19.11

@mui/x-data-grid-pro@6.19.11 pro

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

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

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

v6.19.10

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

  • 🐞 Bugfixes
  • 📚 Documentation improvements

Data Grid

@mui/x-data-grid@6.19.10

@mui/x-data-grid-pro@6.19.10 pro

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

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

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

Core

Commits


Updates @reduxjs/toolkit from 2.2.1 to 2.2.5

Release notes

Sourced from @​reduxjs/toolkit's releases.

v2.2.5

This bugfix release fixes an issue in the recent createEntityAdapter sorting perf improvements that could (in specific cases) cause Immer to throw an error when trying to read a plain JS value instead of a proxy-wrapped value.

What's Changed

Full Changelog: https://github.com/reduxjs/redux-toolkit/compare/v2.2.4...v2.2.5

v2.2.4

This bugfix release improves sorting performance in createEntityAdapter, shrinks the code size in matcher utilities, fixes assorted issues with query hooks, and makes several TS tweaks.

Changelog

Entity Adapter Sorting Performance

Users reported in #4252 that the sorting performance of createEntityAdapter seemed abnormally bad - the provided comparison functions were being called far more times than expected.

Upon investigation, we had a couple of problems. We were always starting from an array that was in insertion order, not the existing sorted order, and that would always require significant effort to re-sort even if there weren't any actual changes to the sorted results. Also, the sorting checks required frequent access to Immer's Proxy-wrapped values, even in cases where all we needed was the plain state values for comparison purposes.

We've reworked the internal sorting logic to always start from the existing sorted array, do reads against a plain value to avoid the Proxy getter overhead where possible, and optimized inserts into existing sorted arrays. This should significantly speed up sorted entity adapter behavior.

Matcher Code Size Optimization

We've reworked the internals of the thunk-related matchers to deduplicate some of the logic, shaving a few bytes off the final bundle size.

RTK Query Hook Updates

defaultSerializeQueryArgs can now handle BigInt values safely.

The isLoading flag logic was improved to handle errors when a query hook tries to subscribe.

TS Updates

create.asyncThunk's types were improved to avoid cases where it might infer any.

We've made several internal types changes to work correctly with React 19's upcoming types.

The retryCondition method now receives unknown as an argument, instead of always assuming the user is using fetchBaseQuery.

Other Changes

The Reselect dep has been bumped to 5.1.0 to match the expected internal usage of createSelector.withTypes().

What's Changed

... (truncated)

Commits
  • 4578c74 Release 2.2.5
  • 2e400d5 Merge pull request #4412 from reduxjs/bugfix/4411-immer-current
  • 4cc7b1f Fix Immer current usage when the value may not be a draft
  • 87e2e59 Switch vitest args to allow file filtering by name again
  • f2cc82c Merge pull request #4406 from Wase-Zahin/feature/typo
  • b0a14b2 fix: fix typo
  • 0246f78 Release 2.2.4
  • 72b3ac6 Merge pull request #3957 from reduxjs/retry-error-type
  • c892abd Merge pull request #4337 from jared-ca/undefined-type-initiate-mutation
  • 5d77624 Merge pull request #4364 from smacpherson64/master
  • Additional commits viewable in compare view


Updates dayjs from 1.11.10 to 1.11.11

Release notes

Sourced from dayjs's releases.

v1.11.11

1.11.11 (2024-04-28)

Bug Fixes

Changelog

Sourced from dayjs's changelog.

1.11.11 (2024-04-28)

Bug Fixes

Commits


Updates i18next-browser-languagedetector from 7.2.0 to 7.2.1

Changelog

Sourced from i18next-browser-languagedetector's changelog.

7.2.1

  • fix: align addDetector impementation to type definition 282
Commits


Updates nanoid from 5.0.6 to 5.0.7

Release notes

Sourced from nanoid's releases.

5.0.7

Changelog

Sourced from nanoid's changelog.

5.0.7

Commits
  • 4d0036f Release 5.0.7 version
  • 131d4d0 Sort imports
  • 596a8b2 Move to console colors from Node.js
  • df9bb34 Move to flat ESLint config
  • d40c8e6 Sort imports
  • 04727e4 Update dependencies
  • ff346fc add scoped name of urlAlphabet which is in export... _Description has been truncated_
sonarcloud[bot] commented 2 weeks ago

Quality Gate Passed Quality Gate passed

Issues
0 New issues
0 Accepted issues

Measures
0 Security Hotspots
No data about Coverage
0.0% Duplication on New Code

See analysis details on SonarCloud

dependabot[bot] commented 1 week ago

Looks like these dependencies are updatable in another way, so this is no longer needed.