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

fix(deps): update all minor dependencies #590

Merged
merged 1 commit into from
Jul 26, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 20, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@emotion/react (source) 11.11.4 -> 11.12.0 age adoption passing confidence
@emotion/styled (source) 11.11.5 -> 11.12.0 age adoption passing confidence
@mui/icons-material (source) 5.15.20 -> 5.16.4 age adoption passing confidence
@mui/material (source) 5.15.20 -> 5.16.4 age adoption passing confidence
@mui/x-date-pickers (source) 7.7.0 -> 7.11.0 age adoption passing confidence
google-api-python-client ==2.136.0 -> ==2.137.0 age adoption passing confidence
google-auth ==2.31.0 -> ==2.32.0 age adoption passing confidence
react-router-dom (source) 6.23.1 -> 6.25.1 age adoption passing confidence
setuptools (changelog) ==70.2.0 -> ==70.3.0 age adoption passing confidence

Review

  • Updates have been tested and work
  • If updates are AWS related, versions match the infrastructure (e.g. Lambda runtime, database, etc.)

Release Notes

emotion-js/emotion (@​emotion/react)

v11.12.0

Compare Source

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

v5.16.4

Compare Source

Jul 16, 2024

A big thanks to the one contributor who made this release possible.

@mui/[email protected]

All contributors of this release in alphabetical order: @​mnajdova

v5.16.3

Compare Source

Jul 16, 2024

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

@mui/[email protected]
Docs

All contributors of this release in alphabetical order: @​HoFa1997, @​mnajdova, @​oliviertassinari

v5.16.2

Compare Source

Jul 16, 2024

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

@mui/[email protected]
Core

All contributors of this release in alphabetical order: @​mnajdova, @​oliviertassinari

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/[email protected]
@mui/[email protected]
Docs
Core

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

v5.16.0

Compare Source

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

@mui/[email protected]
Docs
Core

All contributors of this release in alphabetical order: @​aarongarciah, @​alexey-kozlenkov, @​jxdp, @​oliviertassinari, @​siriwatknp

v5.15.21

Compare Source

Jun 28, 2024

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

@mui/[email protected]
Docs
Core

All contributors of this release in alphabetical order: @​alexfauquette, @​alexismo, @​arminmeh, @​Danielkhakbaz, @​DiegoAndai, @​mnajdova, @​oliviertassinari

mui/mui-x (@​mui/x-date-pickers)

v7.11.0

Compare Source

Jul 18, 2024

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

  • 🎨 Add color legend for charts (#​13700) @​alexfauquette
  • 🌍 Improve Korean (ko-KR) locale on the Date and Time Pickers
  • 🌍 Improve Russian (ru-RU) locale on the Date and Time Pickers and Data Grid
  • 🐞 Bugfixes
  • 📚 Documentation improvements
Data Grid
@mui/[email protected]
@mui/[email protected] pro

Same changes as in @mui/[email protected].

@mui/[email protected] premium

Same changes as in @mui/[email protected].

Date and Time Pickers
@mui/[email protected]
@mui/[email protected] pro

Same changes as in @mui/[email protected], plus:

Charts
@mui/[email protected]
Tree View
@mui/[email protected]
Docs
Core

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/[email protected]
@mui/[email protected] pro

Same changes as in @mui/[email protected], plus:

@mui/[email protected] premium

Same changes as in @mui/[email protected].

Date and Time Pickers
@mui/[email protected]
@mui/[email protected] pro

Same changes as in @mui/[email protected], plus:

Charts
@mui/[email protected]
Tree View
@mui/[email protected]
Docs
Core

v7.9.0

Compare Source

Jul 5, 2024

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

  • 🔄 Add loading overlay variants, including a skeleton loader option to the Data Grid component. See Loading overlay docs for more details.
  • 🌳 Add selectItem and getItemDOMElement methods to the TreeView component public API
  • ⛏️ Make the usePickersTranslations hook public in the pickers component
  • 🐞 Bugfixes
Data Grid
@mui/[email protected]
@mui/[email protected] pro

Same changes as in @mui/[email protected].

@mui/[email protected] premium

Same changes as in @mui/[email protected].

Date and Time Pickers
@mui/[email protected]
@mui/[email protected] pro

Same changes as in @mui/[email protected].

Charts
@mui/[email protected]
Tree View
@mui/[email protected]
Docs
Core

v7.8.0

Compare Source

Jun 28, 2024

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

  • 🛰 Introduce server-side data source for improved server integration in the Data Grid.

    Supports server-side pagination, sorting and filtering on plain and tree data, and automatic caching.

    To enable, provide a getRows function to the unstable_dataSource prop on the Data Grid component.

    const dataSource = {
      getRows: async (params: GridServerGetRowsParams) => {
        const data = await fetch(
          `https://api.example.com/data?${new URLSearchParams({
            page: params.page,
            pageSize: params.pageSize,
            sortModel: JSON.stringify(params.sortModel),
            filterModel: JSON.stringify(params.filterModel),
          }).toString()}`,
        );
        return {
          rows: data.rows,
          totalRows: data.totalRows,
        };
      },
    }
    <DataGridPro
      unstable_dataSource={dataSource}
      {...otherProps}
    />

    See server-side data documentation for more details.

  • 📈 Support Date data on the BarChart component

  • ↕️ Support custom column sort icons on the Data Grid

  • 🖱️ Support modifying the expansion trigger on the Tree View components

Data Grid
@mui/[email protected]
@mui/[email protected] pro

Same changes as in @mui/[email protected], plus:

@mui/[email protected] premium

Same changes as in @mui/[email protected].

Date and Time Pickers
@mui/[email protected]
@mui/[email protected] pro

Same changes as in @mui/[email protected].

Charts
@mui/[email protected]
Tree View
@mui/[email protected]
Docs
Core

v7.7.1

Compare Source

Jun 21, 2024

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

  • 🌍 Improve Portuguese (pt-PT) locale on the Data Grid
  • 🌍 Improve Danish (da-DK) locale on the Date and Time Pickers
  • 🐞 Bugfixes
  • 📚 Documentation improvements
Data Grid
@mui/[email protected]
@mui/[email protected] pro

Same changes as in @mui/[email protected], plus:

@mui/[email protected] premium

Same changes as in @mui/[email protected].

Date and Time Pickers
@mui/[email protected]
@mui/[email protected] pro

Same changes as in @mui/[email protected], plus:

Charts
@mui/[email protected]
Tree View
@mui/[email protected]
Docs
Core
googleapis/google-api-python-client (google-api-python-client)

v2.137.0

Compare Source

Features
Bug Fixes
googleapis/google-auth-library-python (google-auth)

v2.32.0

Compare Source

Features
remix-run/react-router (react-router-dom)

v6.25.1

Compare Source

Patch Changes

v6.25.0

Compare Source

Minor Changes
  • Stabilize future.unstable_skipActionErrorRevalidation as future.v7_skipActionErrorRevalidation (#​11769)

    • When this flag is enabled, actions will not automatically trigger a revalidation if they return/throw a Response with a 4xx/5xx status code
    • You may still opt-into revalidation via shouldRevalidate
    • This also changes shouldRevalidate's unstable_actionStatus parameter to actionStatus
Patch Changes

v6.24.1

Compare Source

Patch Changes

v6.24.0

Compare Source

Minor Changes
Patch Changes
  • Fix fetcher.submit types - remove incorrect navigate/fetcherKey/unstable_viewTransition options because they are only relevant for useSubmit (#​11631)
  • Allow falsy location.state values passed to <StaticRouter> (#​11495)
  • Updated dependencies:
pypa/setuptools (setuptools)

v70.3.0

Compare Source


Configuration

📅 Schedule: Branch creation - "every weekend" in timezone America/Montreal, 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 was generated by Mend Renovate. View the repository job log.

Copy link

github-actions bot commented Jul 20, 2024

GitHub Action status on ea4c730 generated by comment-failure-action

Lint, format and test code

job url
null https://github.com/cds-snc/sre-bot/actions/runs/10017879200/job/27692592097

Build containers CI

No jobs failed 👍

@renovate renovate bot force-pushed the renovate/all-minor branch from ea4c730 to 30b61d1 Compare July 23, 2024 12:10
Copy link

github-actions bot commented Jul 23, 2024

GitHub Action status on 30b61d1 generated by comment-failure-action

Lint, format and test code

job url
null https://github.com/cds-snc/sre-bot/actions/runs/10058623543/job/27802122220

Build containers CI

No jobs failed 👍

@renovate renovate bot force-pushed the renovate/all-minor branch from 30b61d1 to 6d9b29d Compare July 23, 2024 18:08
Copy link

github-actions bot commented Jul 23, 2024

GitHub Action status on 6d9b29d generated by comment-failure-action

Lint, format and test code

job url
null https://github.com/cds-snc/sre-bot/actions/runs/10064059971/job/27820192188

Build containers CI

No jobs failed 👍

@renovate renovate bot force-pushed the renovate/all-minor branch from 6d9b29d to c2f8de8 Compare July 24, 2024 20:05
Copy link

github-actions bot commented Jul 24, 2024

GitHub Action status on c2f8de8 generated by comment-failure-action

Lint, format and test code

job url
null https://github.com/cds-snc/sre-bot/actions/runs/10083271217/job/27879467837

Build containers CI

No jobs failed 👍

@renovate renovate bot force-pushed the renovate/all-minor branch 2 times, most recently from 4e2355f to 96110ff Compare July 25, 2024 16:39
@renovate renovate bot force-pushed the renovate/all-minor branch from 96110ff to ae48a29 Compare July 26, 2024 09:51
@gcharest gcharest enabled auto-merge (squash) July 26, 2024 14:43
@gcharest gcharest merged commit 6423b55 into main Jul 26, 2024
7 checks passed
@gcharest gcharest deleted the renovate/all-minor branch July 26, 2024 14:43
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