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

Merged
merged 2 commits into from
May 14, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 1, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@commitlint/cli (source) 17.6.1 -> 17.6.3 age adoption passing confidence
@commitlint/config-conventional (source) 17.6.1 -> 17.6.3 age adoption passing confidence
@emotion/cache (source) 11.10.7 -> 11.11.0 age adoption passing confidence
@emotion/react (source) 11.10.6 -> 11.11.0 age adoption passing confidence
@emotion/server (source) 11.10.0 -> 11.11.0 age adoption passing confidence
@emotion/styled (source) 11.10.6 -> 11.11.0 age adoption passing confidence
@mui/lab (source) 5.0.0-alpha.126 -> 5.0.0-alpha.129 age adoption passing confidence
@mui/material (source) 5.12.0 -> 5.13.0 age adoption passing confidence
@playwright/test (source) 1.32.3 -> 1.33.0 age adoption passing confidence
@reduxjs/toolkit (source) 1.9.3 -> 1.9.5 age adoption passing confidence
@types/jest (source) 29.5.0 -> 29.5.1 age adoption passing confidence
@types/node (source) 18.15.11 -> 18.16.9 age adoption passing confidence
@types/react (source) 18.0.35 -> 18.2.6 age adoption passing confidence
@types/react-dom (source) 18.0.11 -> 18.2.4 age adoption passing confidence
@typescript-eslint/eslint-plugin 5.58.0 -> 5.59.5 age adoption passing confidence
@typescript-eslint/parser 5.58.0 -> 5.59.5 age adoption passing confidence
algosdk 2.2.0 -> 2.3.0 age adoption passing confidence
axios (source) 1.3.5 -> 1.4.0 age adoption passing confidence
eslint (source) 8.38.0 -> 8.40.0 age adoption passing confidence
eslint-config-next 13.3.0 -> 13.4.2 age adoption passing confidence
lint-staged 13.2.1 -> 13.2.2 age adoption passing confidence
next (source) 13.3.0 -> 13.4.2 age adoption passing confidence
postcss (source) 8.4.21 -> 8.4.23 age adoption passing confidence
prettier (source) 2.8.7 -> 2.8.8 age adoption passing confidence
swr (source) 2.1.3 -> 2.1.5 age adoption passing confidence

Release Notes

conventional-changelog/commitlint (@​commitlint/cli)

v17.6.3

Compare Source

Note: Version bump only for package @​commitlint/cli

conventional-changelog/commitlint (@​commitlint/config-conventional)

v17.6.3

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

emotion-js/emotion

v11.11.0

Compare Source

Minor Changes
Patch Changes

v11.10.8

Compare Source

Patch Changes
mui/material-ui (@​mui/lab)

v5.0.0-alpha.129

Compare Source

v5.0.0-alpha.128

Compare Source

Breaking changes
  • The component prop is no longer supported because it can be replaced with the slots API. This is how the transformation will look like:

     <Button
    -  component="span"
    +  slots={{ root: "span" }}
     />

    If using TypeScript, the custom component type should be added as a generic on the Button component.

    -<Button
    +<Button<typeof CustomComponent>
       slots={{ root: CustomComponent }}
       customProp="foo"
     />

    There is codemod that you can run in your project to do the transformation:

    npx @&#8203;mui/codemod v5.0.0/base-remove-component-prop <path>

    The full documentation about the codemod can be found here.

    This is the list of PR related to this change:

  • ​[base] Improve API consistency (#​36970) @​michaldudak

    Brought consistency to Base UI components and hooks' parameters and return values:

    1. Whenever a hook needs a ref, it's now called <slot_name>Ref, which matches the get<slot_name>Props in the return value.
    2. All hooks that accept external refs now return merged refs, making combining multiple hooks on one element easier. This was proven necessary in several compound components (like menuItem being both a button and a list item). The type of this value is React.RefCallback as using the more general React.Ref caused variance issues.
    3. Type of accepted refs is standardized to React.Ref<Element>
    4. Naming and typing of the forwarded ref in unstyled components were standardized - it's forwardedRef: React.ForwardedRef (unless a more specific type is needed).
    5. The shape of the definition of unstyled components was standardized - it's React.forwardRef(function Component(props: Props, forwardedRef: React.Ref) { ... });. Specifically, the generic parameters of forwardRef were removed as they are specified in function arguments.
Changes

v5.0.0-alpha.127

Compare Source

Breaking changes
  • ​[base] Remove unstyled suffix from Base components + Codemod script (#​36873) @​hbjORbj

    The Unstyled suffix has been removed from all Base UI component names, including names of types and other related identifiers.

    You can use this codemod to help with the migration:

    npx @&#8203;mui/codemod v5.0.0/base-remove-unstyled-suffix <path>
Changes
mui/material-ui (@​mui/material)

v5.13.0

Compare Source

May 10, 2023

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

  • 🚀 Base UI is now in beta - all planned breaking changes are now complete!
  • 🗺 We have a new project roadmap on GitHub where you can learn about what's coming next.
  • 🐛 Various bug fixes, 📚 documentation and 🧪 testing improvements
@mui/[email protected]
@mui/[email protected]
@mui/[email protected]
Docs
Core

All contributors of this release in alphabetical order: @​akash191095, @​DanailH, @​danilo-leal, @​DerTimonius, @​gerdadesign, @​hbjORbj, @​kriskw1999, @​michaldudak, @​mnajdova, @​oliviertassinari, @​PunitSoniME, @​romgrk, @​sai6855, @​ulrichstark, @​uuxxx, @​wewakekumar, @​ZeeshanTamboli, @​zignis

v5.12.3

Compare Source

May 2, 2023

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

  • all planned breaking changes for Base UI are done. The first beta release should come next week 🎉
  • 🐛 bug fixes and 📚 documentation improvements.
@mui/[email protected]
@mui/[email protected]
@mui/[email protected]
Breaking changes
  • The component prop is no longer supported because it can be replaced with the slots API. This is how the transformation will look like:

     <Button
    -  component="span"
    +  slots={{ root: "span" }}
     />

    If using TypeScript, the custom component type should be added as a generic on the Button component.

    -<Button
    +<Button<typeof CustomComponent>
       slots={{ root: CustomComponent }}
       customProp="foo"
     />

    There is codemod that you can run in your project to do the transformation:

    npx @&#8203;mui/codemod v5.0.0/base-remove-component-prop <path>

    The full documentation about the codemod can be found here.

    This is the list of PR related to this change:

  • ​[base] Improve API consistency (#​36970) @​michaldudak

    Brought consistency to Base UI components and hooks' parameters and return values:

    1. Whenever a hook needs a ref, it's now called <slot_name>Ref, which matches the get<slot_name>Props in the return value.
    2. All hooks that accept external refs now return merged refs, making combining multiple hooks on one element easier. This was proven necessary in several compound components (like menuItem being both a button and a list item). The type of this value is React.RefCallback as using the more general React.Ref caused variance issues.
    3. Type of accepted refs is standardized to React.Ref<Element>
    4. Naming and typing of the forwarded ref in unstyled components were standardized - it's forwardedRef: React.ForwardedRef (unless a more specific type is needed).
    5. The shape of the definition of unstyled components was standardized - it's React.forwardRef(function Component(props: Props, forwardedRef: React.Ref) { ... });. Specifically, the generic parameters of forwardRef were removed as they are specified in function arguments.
Changes
Docs
Core

All contributors of this release in alphabetical order: @​cherniavskii, @​DavidBoyer11, @​hbjORbj, @​jakub-stastny, @​joserodolfofreitas, @​maxdestors, @​michaldudak, @​mj12albert, @​mnajdova, @​navedqb, @​nicolas-ot, @​oliviertassinari, @​PunitSoniME, @​sai6855, @​samuelsycamore, @​siriwatknp, @​varunmulay22, @​ZeeshanTamboli

v5.12.2

Compare Source

Apr 25, 2023

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

  • ⚠️ [BREAKING CHANGE] The Unstyled suffix has been removed from Base UI component names, including names of types and other related identifiers – a codemod script is provided to assist with the change.
  • 🐛 bug fixes and 📚 documentation improvements.
@mui/[email protected]
@mui/[email protected]
Breaking changes
  • ​[base] Remove unstyled suffix from Base components + Codemod script (#​36873) @​hbjORbj

    The Unstyled suffix has been removed from all Base UI component names, including names of types and other related identifiers.

    You can use this codemod to help with the migration:

    npx @&#8203;mui/codemod v5.0.0/base-remove-unstyled-suffix <path>
Changes
@mui/[email protected]
Docs
Core

All contributors of this release in alphabetical order: @​alexfauquette, @​cherniavskii, [@​danilo-leal](https://github.com/danil


Configuration

📅 Schedule: Branch creation - "before 3am on the first day of the month" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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.

@codecov
Copy link

codecov bot commented May 1, 2023

Codecov Report

Merging #31 (ae744e3) into main (f577377) will increase coverage by 0.42%.
The diff coverage is 28.37%.

@@            Coverage Diff             @@
##             main      #31      +/-   ##
==========================================
+ Coverage   25.39%   25.81%   +0.42%     
==========================================
  Files          85       95      +10     
  Lines        1331     1619     +288     
  Branches      109      130      +21     
==========================================
+ Hits          338      418      +80     
- Misses        989     1194     +205     
- Partials        4        7       +3     
Impacted Files Coverage Δ
src/components/ImageList/MapList.tsx 0.00% <0.00%> (ø)
src/components/Layouts/Layout.tsx 0.00% <ø> (ø)
src/components/Tables/BuildTransactionsTable.tsx 0.00% <0.00%> (ø)
src/models/AlgoWorldTransactionType.ts 0.00% <ø> (ø)
src/pages/build.page.tsx 0.00% <0.00%> (ø)
src/pages/leaderboard.page.tsx 0.00% <ø> (ø)
src/pages/my-transactions.page.tsx 0.00% <0.00%> (ø)
src/utils/transactions/createBuildNote.ts 0.00% <0.00%> (ø)
src/utils/transactions/createBuildTxns.ts 0.00% <0.00%> (ø)
src/redux/slices/applicationSlice.ts 39.79% <33.33%> (-2.86%) ⬇️
... and 7 more

📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from f3aa51e to 24c3152 Compare May 4, 2023 12:38
@renovate renovate bot changed the title fix(deps): update all non-major dependencies chore(deps): update all non-major dependencies May 4, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from fb52e81 to 25f62c8 Compare May 10, 2023 09:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 4222161 to ccf5386 Compare May 13, 2023 14:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ccf5386 to 087a43b Compare May 13, 2023 18:48
@renovate
Copy link
Contributor Author

renovate bot commented May 13, 2023

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

@aorumbayev aorumbayev merged commit 7c32db9 into main May 14, 2023
@aorumbayev aorumbayev deleted the renovate/all-minor-patch branch May 14, 2023 08:18
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.

1 participant