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

Merged
merged 1 commit into from
Jan 25, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 31, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@changesets/cli (source) 2.26.2 -> 2.27.1 age adoption passing confidence devDependencies minor
@emotion/react (source) 11.11.1 -> 11.11.3 age adoption passing confidence dependencies patch
@mui/icons-material (source) 5.14.16 -> 5.15.6 age adoption passing confidence dependencies minor
@mui/lab (source) 5.0.0-alpha.150 -> 5.0.0-alpha.162 age adoption passing confidence dependencies patch
@mui/material (source) 5.14.15 -> 5.15.6 age adoption passing confidence dependencies minor
@playwright/test (source) 1.40.1 -> 1.41.1 age adoption passing confidence devDependencies minor
@scalprum/core 0.6.1 -> 0.7.0 age adoption passing confidence dependencies minor
@scalprum/react-core 0.6.1 -> 0.7.0 age adoption passing confidence dependencies minor
@scalprum/react-test-utils 0.0.5 -> 0.1.0 age adoption passing confidence devDependencies minor
@smithy/util-utf8 (source) 2.0.2 -> 2.1.1 age adoption passing confidence devDependencies minor
@types/express (source) 4.17.20 -> 4.17.21 age adoption passing confidence dependencies patch
@types/express (source) 4.17.20 -> 4.17.21 age adoption passing confidence devDependencies patch
@types/node (source) 18.18.7 -> 18.19.9 age adoption passing confidence devDependencies minor
@types/node (source) 20.10.5 -> 20.11.6 age adoption passing confidence devDependencies minor
better-sqlite3 9.0.0 -> 9.3.0 age adoption passing confidence dependencies minor
express-rate-limit 7.1.3 -> 7.1.5 age adoption passing confidence dependencies patch
isolated-vm 4.6.0 -> 4.7.2 age adoption passing confidence dependencies minor
lint-staged 15.0.2 -> 15.2.0 age adoption passing confidence devDependencies minor
node 18.18.2 -> 18.19.0 age adoption passing confidence minor
prom-client 15.0.0 -> 15.1.0 age adoption passing confidence dependencies minor
react-router-dom (source) 6.17.0 -> 6.21.3 age adoption passing confidence dependencies minor
react-use 17.4.0 -> 17.5.0 age adoption passing confidence dependencies minor
registry.access.redhat.com/ubi9/nodejs-18 1-80 -> 1-84 age adoption passing confidence final patch
registry.access.redhat.com/ubi9/nodejs-18 1-80 -> 1-84 age adoption passing confidence stage patch
registry.access.redhat.com/ubi9/nodejs-18-minimal 1-85 -> 1-89 age adoption passing confidence final patch
turbo (source) 1.10.16 -> 1.11.3 age adoption passing confidence devDependencies minor
typescript (source) 5.2.2 -> 5.3.3 age adoption passing confidence devDependencies minor
typescript (source) 5.0.4 -> 5.3.3 age adoption passing confidence devDependencies minor
undici (source) 5.26.5 -> 5.28.2 age adoption passing confidence devDependencies minor
yarn 1.22.19 -> 1.22.21 age adoption passing confidence packageManager patch

Release Notes

changesets/changesets (@​changesets/cli)

v2.27.1

Compare Source

Patch Changes
  • #​1267 86cfff1 Thanks @​Andarist! - Make ./bin.js available through package.json#exports to fix compatibility with changesets/action.

v2.27.0

Compare Source

Minor Changes
Patch Changes
emotion-js/emotion (@​emotion/react)

v11.11.3

Compare Source

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

v5.15.6

Compare Source

Jan 22, 2024

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

@mui/[email protected]
@mui/[email protected]
@mui/[email protected]
@mui/[email protected]
Docs
Core

All contributors of this release in alphabetical order: @​alexfauquette, @​anle9650, @​ANUGLYPLUGIN, @​brijeshb42, @​danilo-leal, @​devhik0, @​DiegoAndai, @​DonikaV, @​joserodolfofreitas, @​michaldudak, @​mj12albert, @​mnajdova, @​mohamedsaiedd, @​oliviertassinari, @​pcorpet, @​sai6855, @​zanivan

v5.15.5

Compare Source

Jan 17, 2024

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

  • Base UI's CSS class prefix is now base- (#​40205) @​michaldudak
  • Bug fixes, and a lot of improvements to code and docs infra
@mui/[email protected]
@mui/[email protected]
@mui/[email protected]
Breaking changes

The class prefix of Base UI components have been changed from Mui- to base-. This only affects codebases that uses class names verbatim, i.e. not exposed by JS objects such as buttonClasses, but as plain strings or in CSS stylesheets (.MuiButton.root)

To adapt your code to the new pattern:

  • replace all occurrences of the regex .Mui([A-Z][A-Za-z]*)- with .base-$1- (so MuiButton-root becomes base-Button-root, etc.),
  • replace all occurrences of the regex .Mui-([a-z]*) with .base--$1 (so Mui-disabled becomes base--disabled, etc.).
Changes
@mui/[email protected]
@mui/[email protected]
@mui/[email protected]
@mui/[email protected]
@mui/[email protected]
Docs
Core

All contributors of this release in alphabetical order: @​2metres, @​aacevski, @​brijeshb42, @​danilo-leal, @​DiegoAndai, @​josh-feldman, @​Kamino0, @​lhilgert9, @​maakcode, @​michaldudak, @​oliviertassinari, @​petrovmiroslav, @​sai6855, @​samuelsycamore, @​siriwatknp, @​zanivan, @​ZeeshanTamboli, @​zinoroman

v5.15.4

Compare Source

Jan 10, 2024

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

@mui/[email protected]
@mui/[email protected]
@mui/[email protected]
@mui/[email protected]
@mui/[email protected]
@mui/[email protected]
  • [base-ui][NumberInput] Remove inputId and inputRef types from NumberInput component (#​40425) @​sai6855
@mui/[email protected]
Docs
Core

All contributors of this release in alphabetical order: @​aacevski, @​alexfauquette, @​anle9650, @​brijeshb42, @​danilo-leal, @​DiegoAndai, @​iamsaumya, @​illume, @​Janpot, @​LukasTy, @​Methuselah96, @​michaldudak, @​mj12albert, @​nicegamer7, @​oliviertassinari, @​renovate[bot], @​RiceCrisp, @​sai6855, @​samuelsycamore, @​savalaram-redkar, @​siriwatknp, @​zanivan

v5.15.3

Compare Source

Jan 3, 2024

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

@mui/[email protected]
@mui/[email protected]
@mui/[email protected]
@mui/[email protected]

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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.

@renovate renovate bot requested a review from a team as a code owner October 31, 2023 21:06
Copy link

changeset-bot bot commented Oct 31, 2023

🦋 Changeset detected

Latest commit: 0c9601b

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 4 packages
Name Type
app Patch
backend Patch
@internal/plugin-dynamic-plugins-info-backend Patch
@internal/plugin-scalprum-backend Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@christophe-f christophe-f force-pushed the renovate/all-minor-patch branch from a03edcc to caa5e53 Compare October 31, 2023 21:06
Copy link
Contributor

The image is available at: quay.io/janus-idp/backstage-showcase:pr-693!

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from caa5e53 to 8d0dbf5 Compare November 1, 2023 11:01
@renovate renovate bot changed the title chore(deps): update dependency cypress to v13.4.0 fix(deps): update all non-major dependencies Nov 1, 2023
@christophe-f christophe-f force-pushed the renovate/all-minor-patch branch from 8d0dbf5 to a7fde20 Compare November 1, 2023 11:01
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a7fde20 to 8a26bf9 Compare November 1, 2023 12:47
@christophe-f christophe-f force-pushed the renovate/all-minor-patch branch from 8a26bf9 to 2a1400f Compare November 1, 2023 12:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2a1400f to 76cc0e1 Compare November 1, 2023 13:08
@christophe-f christophe-f force-pushed the renovate/all-minor-patch branch from 76cc0e1 to 467f270 Compare November 1, 2023 13:08
Copy link
Contributor

github-actions bot commented Nov 1, 2023

The image is available at: quay.io/janus-idp/backstage-showcase:pr-693!

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 467f270 to ef181fc Compare November 1, 2023 15:57
@christophe-f christophe-f force-pushed the renovate/all-minor-patch branch from ef181fc to 3c83cf0 Compare November 1, 2023 15:57
Copy link
Contributor

github-actions bot commented Nov 1, 2023

The image is available at: quay.io/janus-idp/backstage-showcase:pr-693!

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3c83cf0 to 0835c9f Compare November 1, 2023 17:14
@christophe-f christophe-f force-pushed the renovate/all-minor-patch branch from 0835c9f to 5afed46 Compare November 1, 2023 17:15
Copy link
Contributor

github-actions bot commented Nov 1, 2023

The image is available at: quay.io/janus-idp/backstage-showcase:pr-693!

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5afed46 to b463efc Compare November 2, 2023 07:09
@christophe-f christophe-f force-pushed the renovate/all-minor-patch branch from b463efc to b3b4a79 Compare November 2, 2023 07:10
Copy link
Contributor

github-actions bot commented Nov 2, 2023

The image is available at: quay.io/janus-idp/backstage-showcase:pr-693!

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b3b4a79 to 7ecf7d7 Compare November 2, 2023 08:54
@christophe-f christophe-f force-pushed the renovate/all-minor-patch branch from 7ecf7d7 to 6f0714f Compare November 2, 2023 08:54
Copy link
Contributor

github-actions bot commented Nov 2, 2023

The image is available at: quay.io/janus-idp/backstage-showcase:pr-693!

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6f0714f to 10daf3f Compare November 2, 2023 09:29
@christophe-f christophe-f force-pushed the renovate/all-minor-patch branch from 10daf3f to edf6a4b Compare November 2, 2023 09:29
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from edf6a4b to 0c89c6a Compare November 2, 2023 15:47
@christophe-f christophe-f force-pushed the renovate/all-minor-patch branch from 0c89c6a to 1eae407 Compare November 2, 2023 15:48
Copy link
Contributor

github-actions bot commented Nov 2, 2023

The image is available at: quay.io/janus-idp/backstage-showcase:pr-693!

Copy link
Contributor

The image is available at: quay.io/janus-idp/backstage-showcase:pr-693!

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f56648f to 6e2dcc7 Compare January 23, 2024 12:01
@christophe-f christophe-f force-pushed the renovate/all-minor-patch branch from 6e2dcc7 to e85b9b5 Compare January 23, 2024 12:01
Copy link
Contributor

The image is available at: quay.io/janus-idp/backstage-showcase:pr-693!

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e85b9b5 to 3f1cea1 Compare January 23, 2024 20:04
@christophe-f christophe-f force-pushed the renovate/all-minor-patch branch from 3f1cea1 to 419482b Compare January 23, 2024 20:04
Copy link
Contributor

The image is available at: quay.io/janus-idp/backstage-showcase:pr-693!

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 419482b to ae1c364 Compare January 24, 2024 13:17
@christophe-f christophe-f force-pushed the renovate/all-minor-patch branch from ae1c364 to 800de2e Compare January 24, 2024 13:17
Copy link
Contributor

The image is available at: quay.io/janus-idp/backstage-showcase:pr-693!

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 800de2e to 13db921 Compare January 24, 2024 22:24
@christophe-f christophe-f force-pushed the renovate/all-minor-patch branch from 13db921 to 1c3f916 Compare January 24, 2024 22:24
Copy link
Contributor

The image is available at: quay.io/janus-idp/backstage-showcase:pr-693!

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1c3f916 to 129e1f6 Compare January 25, 2024 10:50
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@christophe-f christophe-f force-pushed the renovate/all-minor-patch branch from 129e1f6 to 0c9601b Compare January 25, 2024 10:51
Copy link

Quality Gate Passed Quality Gate passed

Kudos, no new issues were introduced!

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

See analysis details on SonarCloud

Copy link
Contributor

The image is available at: quay.io/janus-idp/backstage-showcase:pr-693!

Copy link
Collaborator

@schultzp2020 schultzp2020 left a comment

Choose a reason for hiding this comment

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

/lgtm

Copy link

openshift-ci bot commented Jan 25, 2024

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: schultzp2020

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant