svrnm / DemoMonkey

Custom Demo Every Demo
http://bit.ly/demomonkey
Apache License 2.0
24 stars 10 forks source link

build(deps): bump the dependencies group with 30 updates #214

Closed dependabot[bot] closed 7 months ago

dependabot[bot] commented 7 months ago

Bumps the dependencies group with 30 updates:

Package From To
@emotion/react 11.11.3 11.11.4
@mui/icons-material 5.15.11 5.15.14
@mui/lab 5.0.0-alpha.166 5.0.0-alpha.169
@mui/material 5.15.11 5.15.14
@mui/x-tree-view 6.17.0 7.0.0
ace-builds 1.32.6 1.32.8
axios 1.6.7 1.6.8
change-case 4.1.2 5.4.3
fast-xml-parser 4.3.5 4.3.6
ini 4.1.1 4.1.2
marked 12.0.0 12.0.1
react-ace 10.1.0 11.0.1
react-redux 8.1.3 9.1.0
redux 4.2.1 5.0.1
sharp 0.33.2 0.33.3
@babel/core 7.23.9 7.24.3
@babel/eslint-parser 7.23.10 7.24.1
@babel/plugin-transform-runtime 7.23.9 7.24.3
@babel/preset-env 7.23.9 7.24.3
@babel/preset-react 7.23.3 7.24.1
@commitlint/cli 18.6.1 19.2.1
@commitlint/config-conventional 18.6.2 19.1.0
chai 4.4.1 5.1.0
chromedriver 122.0.3 123.0.0
eslint-plugin-react 7.33.2 7.34.1
markdownlint 0.33.0 0.34.0
mini-css-extract-plugin 2.8.0 2.8.1
postcss 8.4.35 8.4.38
stylelint 16.2.1 16.3.0
webpack 5.90.3 5.91.0

Updates @emotion/react from 11.11.3 to 11.11.4

Release notes

Sourced from @​emotion/react's releases.

@​emotion/react@​11.11.4

Patch Changes

  • #3159 5b82631d Thanks @​iegik! - Renamed an internal hasOwnProperty to hasOwn. This avoids problems in CommonJS environments when the consumer tries to prevent prototype pollution with Object.freeze(Object.prototype).
Commits


Updates @mui/icons-material from 5.15.11 to 5.15.14

Release notes

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

v5.15.14

Mar 19, 2024

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

@mui/material@5.15.14

@pigment-css/react@0.0.3

pigment-css/nextjs-plugin@0.0.3

Docs

Core

... (truncated)

Changelog

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

v5.15.14

Mar 18, 2024

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

@mui/material@5.15.13

@pigment-css/react@0.0.3

pigment-css/nextjs-plugin@0.0.3

Docs

Core

... (truncated)

Commits


Updates @mui/lab from 5.0.0-alpha.166 to 5.0.0-alpha.169

Commits


Updates @mui/material from 5.15.11 to 5.15.14

Release notes

Sourced from @​mui/material's releases.

v5.15.14

Mar 19, 2024

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

@mui/material@5.15.14

@pigment-css/react@0.0.3

pigment-css/nextjs-plugin@0.0.3

Docs

Core

... (truncated)

Changelog

Sourced from @​mui/material's changelog.

v5.15.14

Mar 18, 2024

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

@mui/material@5.15.13

@pigment-css/react@0.0.3

pigment-css/nextjs-plugin@0.0.3

Docs

Core

... (truncated)

Commits


Updates @mui/x-tree-view from 6.17.0 to 7.0.0

Release notes

Sourced from @​mui/x-tree-view's releases.

v7.0.0

We're excited to announce the first v7 stable release! 🎉🚀

This is now the officially supported major version, where we'll keep rolling out new features, bug fixes, and improvements. Migration guides are available with a complete list of the breaking changes:

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

Data Grid

Breaking changes

  • The density is a controlled prop now, if you were previously passing the density prop to the Data Grid, you will need to do one of the following:

    1. Move it to the initialState.density to initialize it.
     <DataGrid
    -  density="compact"
    +  initialState={{ density: "compact" }}
     />
    
    1. Move it to the state and use onDensityChange callback to update the density prop accordingly for it to work as expected.
    + const [density, setDensity] = React.useState<GridDensity>('compact');
     <DataGrid
    -  density="compact"
    +  density={density}
    +  onDensityChange={(newDensity) => setDensity(newDensity)}
     />
    
  • The selector gridDensityValueSelector was removed, use the gridDensitySelector instead.

  • The props rowBuffer and columnBuffer were renamed to rowBufferPx and columnBufferPx. Their value is now a pixel value rather than a number of items. Their default value is now 150.

... (truncated)

Changelog

Sourced from @​mui/x-tree-view's changelog.

v7.0.0

Mar 22, 2024

We're excited to announce the first v7 stable release! 🎉🚀

This is now the officially supported major version, where we'll keep rolling out new features, bug fixes, and improvements. Migration guides are available with a complete list of the breaking changes:

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

Data Grid

Breaking changes

  • The density is a controlled prop now, if you were previously passing the density prop to the Data Grid, you will need to do one of the following:

    1. Move it to the initialState.density to initialize it.
     <DataGrid
    -  density="compact"
    +  initialState={{ density: "compact" }}
     />
    
    1. Move it to the state and use onDensityChange callback to update the density prop accordingly for it to work as expected.
    + const [density, setDensity] = React.useState<GridDensity>('compact');
     <DataGrid
    -  density="compact"
    +  density={density}
    +  onDensityChange={(newDensity) => setDensity(newDensity)}
     />
    
  • The selector gridDensityValueSelector was removed, use the gridDensitySelector instead.

... (truncated)

Commits
  • 2e5fbb3 v7.0.0 (#12523)
  • 2ec11b7 [core] Bump @mui/material peer dependency for all packages (#12516)
  • aea5ef7 [docs] Update links to v7 docs (#12500)
  • 22c774e Bump core (#12499)
  • eeb9603 [TreeView] Set focus on the focused Tree Item instead of the Tree View (#12226)
  • b438784 [TreeView] Update JSDoc of the ContentComponent prop to avoid using the wor...
  • a518d0a [TreeView] Rename nodeId to itemId (#12418)
  • e5e95f3 v7.0.0-beta.7 (#12445)
  • 684fca7 [DataGridPro] Render pinned and non-pinned column headers in one row (#12376)
  • 3d604b0 [TreeView] Clean the usage of the term "item" and "node" in API introduced du...
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by noraleonte, a new releaser for @​mui/x-tree-view since your current version.


Updates ace-builds from 1.32.6 to 1.32.8

Changelog

Sourced from ace-builds's changelog.

1.32.8 (2024-03-22)

Bug Fixes

  • allow completers to trigger on newline characters (#5519) (6e870fd)
  • don't detach completion popup while typing when prefix is empty (#5517) (7937e53)
  • scroll cursor line to top editor for long inline preview (#5514) (
    dependabot[bot] commented 7 months ago

    Looks like these dependencies are updatable in another way, so this is no longer needed.