Skip to content

chore(deps): update npm

BIWG Bot requested to merge renovate/npm into main

This MR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/preset-env (source) 7.22.10 -> 7.22.14 age adoption passing confidence
@mui/icons-material (source) 5.14.6 -> 5.14.7 age adoption passing confidence
@mui/lab (source) 5.0.0-alpha.141 -> 5.0.0-alpha.142 age adoption passing confidence
@mui/material (source) 5.14.6 -> 5.14.7 age adoption passing confidence
@mui/x-date-pickers (source) 6.12.0 -> 6.12.1 age adoption passing confidence
@storybook/addon-essentials (source) 7.3.2 -> 7.4.0 age adoption passing confidence
@storybook/addon-links (source) 7.3.2 -> 7.4.0 age adoption passing confidence
@storybook/addon-storyshots (source) 7.3.2 -> 7.4.0 age adoption passing confidence
@storybook/nextjs (source) 7.3.2 -> 7.4.0 age adoption passing confidence
@storybook/react (source) 7.3.2 -> 7.4.0 age adoption passing confidence
@types/node (source) 20.5.6 -> 20.5.9 age adoption passing confidence
@typescript-eslint/eslint-plugin 6.4.1 -> 6.5.0 age adoption passing confidence
@typescript-eslint/parser 6.4.1 -> 6.5.0 age adoption passing confidence
msw (source) 1.2.4 -> 1.3.0 age adoption passing confidence
prettier (source) 3.0.2 -> 3.0.3 age adoption passing confidence
react-hook-form (source) 7.45.4 -> 7.46.0 age adoption passing confidence
react-i18next 13.2.0 -> 13.2.2 age adoption passing confidence
storybook (source) 7.3.2 -> 7.4.0 age adoption passing confidence
type-coverage 2.26.1 -> 2.26.2 age adoption passing confidence
typescript (source) 5.1.6 -> 5.2.2 age adoption passing confidence

Release Notes

babel/babel (@​babel/preset-env)

v7.22.14

Compare Source

🐛 Bug Fix
🏠 Internal
  • babel-parser
  • babel-core, babel-helper-compilation-targets, babel-helper-simple-access, babel-parser, babel-plugin-syntax-decorators, babel-preset-env, babel-preset-flow, babel-preset-react, babel-preset-typescript, babel-traverse, babel-types
mui/material-ui (@​mui/icons-material)

v5.14.7

Compare Source

Aug 29, 2023

A big thanks to the 11 contributors who made this release possible. This release focuses primarily on 🐛 bug fixes, 📚 documentation, and ️ infrastructure improvements.

@mui/material@5.14.7
@mui/base@5.0.0-beta.13
@mui/zero-runtime@0.0.1-alpha.1
Docs
Core

All contributors of this release in alphabetical order: @​brijeshb42, @​danilo-leal, @​DerTimonius, @​DiegoAndai, @​Janpot, @​jaydenseric, @​mj12albert, @​oliviertassinari, @​renovate[bot], @​sai6855, @​VishruthR

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

v5.0.0-alpha.142

Compare Source

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

v6.12.1

Compare Source

Aug 31, 2023

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

Data Grid
@mui/x-data-grid@v6.12.1
@mui/x-data-grid-pro@v6.12.1 pro

Same changes as in @mui/x-data-grid@v6.12.1.

@mui/x-data-grid-premium@v6.12.1 premium

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

Date Pickers
@mui/x-date-pickers@v6.12.1
@mui/x-date-pickers-pro@v6.12.1 pro

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

Charts / @mui/x-charts@6.0.0-alpha.9
Docs
Core
storybookjs/storybook (@​storybook/addon-essentials)

v7.4.0

Compare Source

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

v6.5.0

Compare Source

Bug Fixes
  • eslint-plugin: [consistent-type-assertions] wrap object return value with parentheses (#​6885) (23ac499)

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

6.4.1 (2023-08-21)

Bug Fixes
  • eslint-plugin: [no-unnecessary-condition] false positives with branded types (#​7466) (b52658f), closes #​7293

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

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

v6.5.0

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

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

6.4.1 (2023-08-21)

Note: Version bump only for package @​typescript-eslint/parser

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

mswjs/msw (msw)

v1.3.0

Compare Source

v1.3.0 (2023-09-03)

Features

v1.2.5

Compare Source

v1.2.5 (2023-08-28)

Bug Fixes
prettier/prettier (prettier)

v3.0.3

Compare Source

diff

Add preferUnplugged: true to package.json (#​15169 by @​fisker and @​so1ve)

Prettier v3 uses dynamic imports, user will need to unplug Prettier when Yarn's PnP mode is enabled, add preferUnplugged: true to package.json, so Yarn will install Prettier as unplug by default.

Support shared config that forbids require() (#​15233 by @​fisker)

If an external shared config package is used, and the package exports don't have require or default export.

In Prettier 3.0.2 Prettier fails when attempt to require() the package, and throws an error.

Error [ERR_PACKAGE_PATH_NOT_EXPORTED]: No "exports" main defined in <packageName>/package.json
Allow argument of require() to break (#​15256 by @​fisker)
// Input
const plugin = require(
  global.STANDALONE
    ? path.join(__dirname, "../standalone.js")
    : path.join(__dirname, "..")
);

// Prettier 3.0.2
const plugin = require(global.STANDALONE
  ? path.join(__dirname, "../standalone.js")
  : path.join(__dirname, ".."));

// Prettier 3.0.3
const plugin = require(
  global.STANDALONE
    ? path.join(__dirname, "../standalone.js")
    : path.join(__dirname, "..")
);
Do not print trailing commas in arrow function type parameter lists in ts code blocks (#​15286 by @​sosukesuzuki)
<!-- Input -->
```ts
const foo = <T>() => {}
```

<!-- Prettier 3.0.2 -->
```ts
const foo = <T,>() => {}
```

<!-- Prettier 3.0.3 -->
```ts
const foo = <T>() => {}
```
Support TypeScript 5.2 using / await using declaration (#​15321 by @​sosukesuzuki)

Support for the upcoming Explicit Resource Management feature in ECMAScript. using / await using declaration

{
   using foo = new Foo();
   await using bar = new Bar();
}
react-hook-form/react-hook-form (react-hook-form)

v7.46.0

Compare Source

i18next/react-i18next (react-i18next)

v13.2.2

Compare Source

  • Fix missing TransWithoutContext type 1672

v13.2.1

Compare Source

  • types: Allow iterable ReactI18NextChildren as children 1669
plantain-00/type-coverage (type-coverage)

v2.26.2

Compare Source

  • fix: unhandled satisfied expression (1dee649)
  • chore: update dependencies (bf33237)
Microsoft/TypeScript (typescript)

v5.2.2: TypeScript 5.2

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:


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