Skip to content

chore(deps): update npm

BIWG Bot requested to merge renovate/npm into dev

This MR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/core (source) 7.21.0 -> 7.21.3 age adoption passing confidence
@mui/lab (source) 5.0.0-alpha.122 -> 5.0.0-alpha.123 age adoption passing confidence
@mui/material (source) 5.11.12 -> 5.11.13 age adoption passing confidence
@types/node (source) 18.15.0 -> 18.15.3 age adoption passing confidence
@typescript-eslint/eslint-plugin 5.54.1 -> 5.55.0 age adoption passing confidence
@typescript-eslint/parser 5.54.1 -> 5.55.0 age adoption passing confidence
chromatic (source) 6.17.1 -> 6.17.2 age adoption passing confidence
eslint-plugin-typescript-sort-keys 2.1.0 -> 2.3.0 age adoption passing confidence
jest-fail-on-console 3.0.2 -> 3.1.0 age adoption passing confidence
msw (source) 1.1.0 -> 1.1.1 age adoption passing confidence
prettier (source) 2.8.4 -> 2.8.5 age adoption passing confidence
react-hook-form (source) 7.43.5 -> 7.43.7 age adoption passing confidence
redux-saga (source) 1.2.2 -> 1.2.3 age adoption passing confidence
type-coverage 2.24.1 -> 2.25.0 age adoption passing confidence

Release Notes

babel/babel

v7.21.3

Compare Source

👓 Spec Compliance
🐛 Bug Fix
💅 Polish
🏠 Internal
🔬 Output optimization
mui/material-ui (@​mui/lab)

v5.0.0-alpha.123

Compare Source

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

v5.11.13

Compare Source

Mar 14, 2023

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

@mui/material@5.11.13
@mui/base@5.0.0-alpha.121
Docs

All contributors of this release in alphabetical order: @​erikian, @​hbjORbj, @​HeVictor, @​hrutik7, @​joserodolfofreitas, @​m4theushw, @​michaldudak, @​oliviertassinari, @​oyar99, @​rayrw, @​sai6855, @​siriwatknp, @​skevprog

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

v5.55.0

Compare Source

Bug Fixes
  • eslint-plugin: [no-confusing-void-expression] check sequence expressions for void is in last position (#​6597) (d73d7d3)
  • eslint-plugin: [no-unnecessary-boolean-literal-compare] fixer should handle parentheses (#​6569) (2d8c196)
Features

5.54.1 (2023-03-06)

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

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

v5.55.0

Compare Source

Features

5.54.1 (2023-03-06)

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

chromaui/chromatic-cli

v6.17.2

Compare Source

  • 726 Increase timeout on Storybook Verification
  • 725 Bump webpack from 5.72.1 to 5.76.0
  • 711 Bump http-cache-semantics from 4.1.0 to 4.1.1
infctr/eslint-plugin-typescript-sort-keys

v2.3.0

Compare Source

Changed
  • Bump deps to fix security vulnerabilities

v2.2.0

Compare Source

Changed
  • Bump peer dependencies
ValentinH/jest-fail-on-console

v3.1.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/ValentinH/jest-fail-on-console/compare/v3.0.2...v3.1.0

mswjs/msw

v1.1.1

Compare Source

v1.1.1 (2023-03-20)

Bug Fixes
prettier/prettier

v2.8.5

Compare Source

diff

Support TypeScript 5.0 (#​14391 by @​fisker, #​13819 by @​fisker, @​sosukesuzuki)

TypeScript 5.0 introduces two new syntactic features:

  • const modifiers for type parameters
  • export type * declarations
Add missing parentheses for decorator (#​14393 by @​fisker)
// Input
class Person {
  @​(myDecoratorArray[0])
  greet() {}
}

// Prettier 2.8.4
class Person {
  @​myDecoratorArray[0]
  greet() {}
}

// Prettier 2.8.5
class Person {
  @​(myDecoratorArray[0])
  greet() {}
}
Add parentheses for TypeofTypeAnnotation to improve readability (#​14458 by @​fisker)
// Input
type A = (typeof node.children)[];

// Prettier 2.8.4
type A = typeof node.children[];

// Prettier 2.8.5
type A = (typeof node.children)[];
Support max_line_length=off when parsing .editorconfig (#​14516 by @​josephfrazier)

If an .editorconfig file is in your project and it sets max_line_length=off for the file you're formatting, it will be interpreted as a printWidth of Infinity rather than being ignored (which previously resulted in the default printWidth of 80 being applied, if not overridden by Prettier-specific configuration).

<!-- Input -->
<div className='HelloWorld' title={`You are visitor number ${ num }`} onMouseOver={onMouseOver}/>

<!-- Prettier 2.8.4 -->
<div
  className="HelloWorld"
  title={`You are visitor number ${num}`}
  onMouseOver={onMouseOver}
/>;

<!-- Prettier 2.8.5 -->
<div className="HelloWorld" title={`You are visitor number ${num}`} onMouseOver={onMouseOver} />;
react-hook-form/react-hook-form

v7.43.7: Version 7.43.7

Compare Source

🐞 fix #​10131 regression on NaN data type (#​10132) 🐞 fix #​10129 useFieldArray unmount fieldArray wihtout register (#​10130) 🦶 upgrade to TS 5.0.0 (#​9834)

v7.43.6: Version 7.43.6

Compare Source

🐞 fix(appendErrors): incorrect type, it can take an array of errors (#​10125) ️ close #​10096 react strict mode with mounted field value (#​10102) 🦮 fix: isLoading form state (#​10095) 📝 fix: typos in tsdoc (#​10088) 🩴 close #​10078 prevent stabled aysnc validation (#​10082) 🐞 fix #​10064 native validation when subscribe to isValid (#​10072) 📝 correct typo in field array type declaration (#​10066)

thanks to @​jorisre @​chrisbarless @​mjw-isp and @​adamtowle

redux-saga/redux-saga

v1.2.3

Compare Source

Patch Changes
plantain-00/type-coverage

v2.25.0

Compare Source


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