eclipse-tractusx / portal-frontend

Portal Frontend
Apache License 2.0
4 stars 25 forks source link

build(deps): bump the production-dependencies group across 1 directory with 15 updates #863

Closed dependabot[bot] closed 3 weeks ago

dependabot[bot] commented 4 weeks ago

Bumps the production-dependencies group with 13 updates in the / directory:

Package From To
@catena-x/portal-shared-components 3.0.17 3.0.18
@emotion/styled 11.11.0 11.11.5
@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.44
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 @catena-x/portal-shared-components from 3.0.17 to 3.0.18

Changelog

Sourced from @​catena-x/portal-shared-components's changelog.

3.0.18

  • Add new Scroll to top button component
Commits
  • 5aa112d feat(scroll): add scroll to top button
  • cb8ed2b fix(chor): fix sonar cloud issue
  • c7ca009 Merge branch 'main' into fix/issues-675-scroll-to-top
  • 2ceceab fix(scroll to top): add version info
  • a326eeb feat(scroll): add scroll to top button component
  • See full diff in compare view


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

Release notes

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

v5.15.15

A big thanks to the 7 contributors who made this release possible. Here are some highlights ✨: This release was mostly about 🐛 bug fixes and 📚 documentation improvements.

@mui/material@5.15.15

@mui/system@5.15.15

Docs

Core

All contributors of this release in alphabetical order: @​aarongarciah, @​bharatkashyap, @​cherniavskii, @​danilo-leal, @​mnajdova, @​oliviertassinari, @​ZeeshanTamboli

Changelog

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

v5.15.15

Apr 4, 2024

A big thanks to the 7 contributors who made this release possible. Here are some highlights ✨: This release was mostly about 🐛 bug fixes and 📚 documentation improvements.

@mui/material@5.15.15

@mui/system@5.15.15

Docs

Core

All contributors of this release in alphabetical order: @​aarongarciah, @​bharatkashyap, @​cherniavskii, @​danilo-leal, @​mnajdova, @​oliviertassinari, @​ZeeshanTamboli

Commits


Updates @mui/material from 5.15.14 to 5.15.15

Release notes

Sourced from @​mui/material's releases.

v5.15.15

A big thanks to the 7 contributors who made this release possible. Here are some highlights ✨: This release was mostly about 🐛 bug fixes and 📚 documentation improvements.

@mui/material@5.15.15

@mui/system@5.15.15

Docs

Core

All contributors of this release in alphabetical order: @​aarongarciah, @​bharatkashyap, @​cherniavskii, @​danilo-leal, @​mnajdova, @​oliviertassinari, @​ZeeshanTamboli

Changelog

Sourced from @​mui/material's changelog.

v5.15.15

Apr 4, 2024

A big thanks to the 7 contributors who made this release possible. Here are some highlights ✨: This release was mostly about 🐛 bug fixes and 📚 documentation improvements.

@mui/material@5.15.15

@mui/system@5.15.15

Docs

Core

All contributors of this release in alphabetical order: @​aarongarciah, @​bharatkashyap, @​cherniavskii, @​danilo-leal, @​mnajdova, @​oliviertassinari, @​ZeeshanTamboli

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


Updates phone from 3.1.42 to 3.1.44

Release notes

Sourced from phone's releases.

3.1.44

3.1.43

Commits


Updates qs from 6.12.0 to 6.12.1

Changelog

Sourced from qs's changelog.

6.12.1

  • [Fix] parse: Disable decodeDotInKeys by default to restore previous behavior (#501)
  • [Performance] utils: Optimize performance under large data volumes, reduce memory usage, and speed up processing (#502)
  • [Refactor] utils: use +=
  • [Tests] increase coverage
Commits
  • 29dda21 v6.12.1
  • 7e18298 [Fix] parse: Disable decodeDotInKeys by default to restore previous behavior
  • fd3cd7a [Tests] increase coverage
  • 6d7df02 [Performance] utils: Optimize performance under large data volumes, reduce ...
  • 572533c [Refactor] utils: use +=
  • c4d29f3 [meta] add tea.yaml
  • See full diff in compare view


Updates @types/qs from 6.9.13 to 6.9.15

Commits


Updates react-hook-form from 7.51.1 to 7.51.5

Release notes

Sourced from react-hook-form's releases.

v7.51.5

📖 fix broken link to examples in README.md (#11805) ⌨️ close: correct type of error field in getFieldState return object (#11831) 🐞 fix #11842 radio buttons not disabled when multiple share a name (#11873) 🐞 fix #11821 set value with disabled false before mount (#11880) 🐞 fix setError to preserve existing errors elsewhere in the object (#11888) ⌨️ fix: add info.value type to WatchObserver (#11872) 🫡 fix issue with internal set api (#11915)

thanks to @​mjr2595 @​erashu212 @​SimonJTurner and @​peinguin

Version 7.51.4

👹 close #11778 improve unregister omit key with getValues method (#11779) 🐞 fix #11794 issue: Fields dirty state is not updated when passing values to useForm

Version 7.51.3

🐞 fix #11773 regression on dirty check with reset (#11775)

Version 7.51.2

🐞 fix #11719 validation stuck on true state (#11723)

Commits


Updates react-i18next from 14.1.0 to 14.1.2

Changelog

Sourced from react-i18next's changelog.

14.1.2

  • bring back internal interpolationOverride handling for Trans component (if there are childrens), fixes 1754

14.1.1

  • do not modify passed tOptions context property to address 1745
Commits


Updates react-redux from 9.1.0 to 9.1.2

Release notes

Sourced from react-redux's releases.

v9.1.2

This bugfix release removes the no-longer-necessary peer dependency on react-native, and tweaks a few TS types for compat with the upcoming React 19 release.

Changes

React Native Peer Dependency Removed

We've always had an awkward peer dependency on both ReactDOM and React Native, because of the need to import the unstable_batchedUpdates API directly from each reconciler. That's part of what led to the sequence of 9.x patch releases to deal with RN compat.

As of 9.0.3, we dropped the batching imports completely, since React 18 now batches by default. That means we didn't even have any remaining imports from react-native.

Meanwhile, React 18.3 just came out, but so did React Native 0.74. RN 0.74 still requires React 18.2.

This caused NPM users to have installation failures when trying to use React-Redux:

  • React-Redux has a peer dep on RN
  • RN has a peer dep on React 18.2
  • But the latest React, 18.3 would get installed in the app
  • NPM errors with a peer dep mismatch

We no longer need to list RN as a peer dep, and dropping that also fixes the NPM installation issues as well.

What's Changed

Full Changelog: https://github.com/reduxjs/react-redux/compare/v9.1.1...v9.1.2

v9.1.1

This bugfix release fixes an issue with connect and React Native caused by changes to our bundling setup in v9. Nested connect calls should work correctly now.

What's Changed

Full Changelog: https://github.com/reduxjs/react-redux/compare/v9.1.0...v9.1.1

Commits
  • 1af75b3 Release 9.1.2
  • eec5f9b Merge pull request #2168 from reduxjs/feature/react-19-types
  • a752cc6 Fix remaining React 19 types compat issues
  • 23c0c22 Add explicit @​types/prop-types dep
  • bfa3c36 Merge pull request #2167 from reduxjs/bugfix/remove-rn-peerdep
  • 427791b Drop now-unneeded RN peer dep
  • f404f82 Replace usage of deprecated JSX global namespace with React.JSX (#2163)
  • 5ec7970 Fix useRef usages to be called with an explicit argument of undefined. (#...
  • d44ff74 Release 9.1.1
  • 0396da3 Merge pull request #2156 from aryaemami59/fix-RN-useIsomorphicLayoutEffect-issue
  • Additional commits viewable in compare view


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.


Dependabo... _Description has been truncated_
sonarcloud[bot] commented 4 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 3 weeks ago

Superseded by #870.