Skip to content

chore(deps): update npm

BIWG Bot requested to merge renovate/npm into main

This MR contains the following updates:

Package Type Update Change
@mui/icons-material (source) devDependencies patch 5.15.20 -> 5.15.21
@mui/material (source) devDependencies patch 5.15.20 -> 5.15.21
@mui/x-date-pickers (source) devDependencies minor 7.7.1 -> 7.8.0
@storybook/addon-essentials (source) devDependencies patch 7.6.19 -> 7.6.20
@storybook/addon-links (source) devDependencies patch 7.6.19 -> 7.6.20
@storybook/addon-storyshots (source) devDependencies patch 7.6.19 -> 7.6.20
@storybook/nextjs (source) devDependencies patch 7.6.19 -> 7.6.20
@storybook/react (source) devDependencies patch 7.6.19 -> 7.6.20
@tanstack/react-table (source) devDependencies minor 8.17.3 -> 8.19.2
@types/lodash (source) devDependencies patch 4.17.5 -> 4.17.6
@types/node (source) devDependencies patch 20.14.8 -> 20.14.9
@typescript-eslint/eslint-plugin (source) devDependencies minor 7.13.1 -> 7.14.1
@typescript-eslint/parser (source) devDependencies minor 7.13.1 -> 7.14.1
marked (source) dependencies patch 13.0.0 -> 13.0.1
storybook (source) devDependencies patch 7.6.19 -> 7.6.20

Release Notes

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

v5.15.21

Compare Source

Jun 28, 2024

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

@mui/material@5.15.21
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.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/x-data-grid@7.8.0
@mui/x-data-grid-pro@7.8.0 pro

Same changes as in @mui/x-data-grid@7.8.0, plus:

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

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

Date and Time Pickers
@mui/x-date-pickers@7.8.0
@mui/x-date-pickers-pro@7.8.0 pro

Same changes as in @mui/x-date-pickers@7.8.0.

Charts
@mui/x-charts@7.8.0
Tree View
@mui/x-tree-view@7.8.0
Docs
Core
storybookjs/storybook (@​storybook/addon-essentials)

v7.6.20

Compare Source

TanStack/table (@​tanstack/react-table)

v8.19.2

Compare Source

Version 8.19.2 - 6/30/24, 3:27 PM

Changes

Fix
Chore
  • upgrade packages except for angular and typescript (#​5635) (e585a2e) by Kevin Van Cott
Ci
Docs

Packages

v8.19.1

Compare Source

Version 8.19.1 - 6/29/24, 11:34 PM

Changes

Fix
  • angular-table: View is not updated anymore when flexRenderDirective is instantiated the first time with an empty value (#​5626) (bfa96d8) by @​riccardoperra
Ci
Docs
Tests

Packages

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v7.14.1

Compare Source

🩹 Fixes
  • eslint-plugin: [prefer-nullish-coalescing] treat enums and literals as their underlying primitive types

  • eslint-plugin: [prefer-nullish-coalescing] ensure ternary fix does not remove parens

️ Thank You
  • Jake Bailey

You can read about our versioning strategy and releases on our website.

v7.14.0

Compare Source

🚀 Features
  • support TypeScript 5.5
🩹 Fixes
  • eslint-plugin: [no-extraneous-class] handle abstract members

  • eslint-plugin: [prefer-nullish-coalescing] handle intersected primitive types

  • eslint-plugin: [no-invalid-this] support AccessorProperty

️ Thank You
  • Brad Zacher
  • cm-ayf
  • Jake Bailey
  • James Zhan
  • Joshua Chen
  • yoshi2no

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v7.14.1

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v7.14.0

Compare Source

🚀 Features
  • support TypeScript 5.5
️ Thank You
  • Brad Zacher
  • cm-ayf
  • Jake Bailey
  • James Zhan
  • Joshua Chen
  • yoshi2no

You can read about our versioning strategy and releases on our website.

markedjs/marked (marked)

v13.0.1

Compare Source

Bug Fixes

Configuration

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

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

Rebasing: Whenever MR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This MR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this MR, check this box

This MR has been generated by Renovate Bot.

Edited by BIWG Bot

Merge request reports