Bump code-infra:devDependencies
This PR contains the following updates:
Release Notes
istanbuljs/babel-plugin-istanbul (babel-plugin-istanbul)
v7.0.1
⚠ BREAKING CHANGES
- deps: update to latest version of test-exclude (#301)
Features
7.0.1 (2025-09-05)
Bug Fixes
open-cli-tools/concurrently (concurrently)
v9.2.1
What's Changed
- chore: update eslint-plugin-simple-import-sort from v10 to v12 by @noritaka1166 in #551
- chore: update eslint-config-prettier from v9 to v10 by @noritaka1166 in #552
- Remove lodash by @gustavohenke in #555
- chore: update coveralls-next from v4 to v5 by @noritaka1166 in #557
- Replace jest with vitest by @gustavohenke in #554
- Upgrade to pnpm v10 by @paescuj in #558
- chore: remove unused eslint-plugin-jest by @noritaka1166 in #559
- Minor dependency updates by @paescuj in #560
- Migrate to ESLint v9 by @paescuj in #561
- Update shell-quote to 1.8.3 by @paescuj in #562
- Full coverage by @paescuj in #563
- Update GH actions/workflows, enable NPM provenance by @paescuj in #564
Full Changelog: https://github.com/open-cli-tools/concurrently/compare/v9.2.0...v9.2.1
DavidAnson/markdownlint-cli2 (markdownlint-cli2)
v0.20.0
- Update dependencies
v0.19.1
- Update
--formatto avoid trailing newline - Update dependencies
v0.19.0
- Add
--formatparameter for editor integration - Update output formatters for severity
warning - Explicitly version Docker containers for
pre-commit - Update dependencies (including
markdownlint)
prettier/prettier (prettier)
v3.7.4
LWC: Avoid quote around interpolations (#18383 by @kovsu)
<!-- Input -->
<div foo={bar}> </div>
<!-- Prettier 3.7.3 (--embedded-language-formatting off) -->
<div foo="{bar}"></div>
<!-- Prettier 3.7.4 (--embedded-language-formatting off) -->
<div foo={bar}></div>
TypeScript: Fix comment inside union type gets duplicated (#18393 by @fisker)
// Input
type Foo = (/** comment */ a | b) | c;
// Prettier 3.7.3
type Foo = /** comment */ (/** comment */ a | b) | c;
// Prettier 3.7.4
type Foo = /** comment */ (a | b) | c;
TypeScript: Fix unstable comment print in union type comments (#18395 by @fisker)
// Input
type X = (A | B) & (
// comment
A | B
);
// Prettier 3.7.3 (first format)
type X = (A | B) &
(// comment
A | B);
// Prettier 3.7.3 (second format)
type X = (
| A
| B // comment
) &
(A | B);
// Prettier 3.7.4
type X = (A | B) &
// comment
(A | B);
v3.7.3
API: Fix prettier.getFileInfo() change that breaks VSCode extension (#18375 by @fisker)
An internal refactor accidentally broke the VSCode extension plugin loading.
v3.7.2
JavaScript: Fix string print when switching quotes (#18351 by @fisker)
// Input
console.log("A descriptor\\'s .kind must be \"method\" or \"field\".")
// Prettier 3.7.1
console.log('A descriptor\\'s .kind must be "method" or "field".');
// Prettier 3.7.2
console.log('A descriptor\\\'s .kind must be "method" or "field".');
JavaScript: Preserve quote for embedded HTML attribute values (#18352 by @kovsu)
// Input
const html = /* HTML */ ` <div class="${styles.banner}"></div> `;
// Prettier 3.7.1
const html = /* HTML */ ` <div class=${styles.banner}></div> `;
// Prettier 3.7.2
const html = /* HTML */ ` <div class="${styles.banner}"></div> `;
TypeScript: Fix comment in empty type literal (#18364 by @fisker)
// Input
export type XXX = {
// tbd
};
// Prettier 3.7.1
export type XXX = { // tbd };
// Prettier 3.7.2
export type XXX = {
// tbd
};
v3.7.1
API: Fix performance regression in doc printer (#18342 by @fisker)
Prettier 3.7.1 can be very slow when formatting big files, the regression has been fixed.
v3.7.0
stylelint/stylelint (stylelint)
v16.26.1
It fixes numerous false positive bugs, including many in the declaration-property-value-no-unknown rule for the latest CSS specifications.
- Fixed:
*-no-unknownfalse positives for latest specs by integrating@csstools/css-syntax-patches-for-csstree(#8850) (@romainmenke). - Fixed:
at-rule-no-unknownfalse positives for@function(#8851) (@jeddy3). - Fixed:
declaration-property-value-no-unknownfalse positives forattr(),if()and custom functions (#8853) (@jeddy3). - Fixed:
function-url-quotesfalse positives when URLs require quoting (#8804) (@taearls). - Fixed:
selector-pseudo-element-no-unknownfalse positives for::scroll-button()(#8856) (@Mouvedia).
v16.26.0
It adds 1 feature and fixes 2 bugs.
- Added: support for
customSyntaxwith function export (#8834) (@silverwind). - Fixed:
custom-property-no-missing-var-functionfalse positives for style query inif()function (#8813) (@sajdakabir). - Fixed:
media-feature-range-notationfalse positives for multiple queries andexcept: exact-value(#8832) (@jeddy3).
v16.25.0
It adds 3 new features, including experimental support for bulk suppressions. It's also our first immutable release, with the package published to npm using trusted publishing and our dependencies updated on a cool down for improved supply chain security.
- Added: support for bulk suppressions (#8564) (@ryo-manba).
- Added:
ignoreAtRules: []tono-invalid-position-declaration(#8781) (@jrmlt). - Added: rule name to custom messages (#8774) (@jhae-de).
v16.24.0
It adds 1 new rule, adds 1 option to a rule and fixes 2 bugs.
- Added:
rule-nesting-at-rule-required-listrule (#8680) (@sw1tch3roo). - Added:
ignoreAtRules: []tonesting-selector-no-missing-scoping-root(#8743) (@karlhorky). - Fixed:
function-no-unknownfalse positives forcontrast-color()andsibling-*()(#8729) (@Mouvedia). - Fixed:
selector-pseudo-class-no-unknownfalse positives for:heading(#8749) (@Mouvedia).
privatenumber/tsx (tsx)
v4.21.0
v4.20.6
Bug Fixes
This release is also available on:
v4.20.5
Bug Fixes
- handle ambiguous packages (796053a)
This release is also available on:
webpack/webpack (webpack)
v5.103.0
Features
- Added
DotenvPluginand top leveldotenvoption to enable this plugin - Added
WebpackManifestPlugin - Added support the
ignoreListoption in devtool plugins - Allow to use custom javascript parse function
- Added
import.meta.envsupport for environment variables - Added support for
import.meta.dirnameandimport.meta.filename - Added support
import.defer()for statistical path - Handle import.meta.main
- Added suport to setup named exports for JSON modules and disable usage named export for
import file from "./file.json" with { type: "json" } - Added support
__dirname/__filename/import.meta.dirname/import.meta.filenamefor universal target - [CSS] Added the
exportTypeoption withlink(by default), "text" andcss-style-sheetvalues - [CSS] Added support for
composesproperties
Fixes
- The
dependOnchunk must be loaded before the common chunk - Return to namespace import when the external request includes a specific export
- No runtime extra runtime code for module libraries
- Delay HMR accept dependencies to preserve import attributes
- Properly handle external presets for universal target
- Fixed incorrect identifier of import binding for module externals
- Fixed when defer import and dynamic default export mixed
- Reduce generated output when
globalThissupported - Fixed loading async modules in defer import
- Reexport module for default import when no used exports for systemjs library
- Rename HarmonyExportDependencyParserPlugin exported id to CompatibilityPlugin tagged id
- Handle
__dirnameand__filenamefor ES modules - Rename single nested
__webpack_export__and__webpack_require__in already bundled code - [Types] webpack function type
- [Types] NormalModule type
- [Types] Multi compiler configuration type
- [Types] Fixed regression in custom
hashDigesttype - [CSS] No extra runtime for initial chunk
- [CSS] Fixed a lot of CSS modules bugs
v5.102.1
Fixes
- Supported
extendswithenvforbrowserslist - Supported
JSONPfragment format for web workers. - Fixed dynamic import support in workers using
browserslist. - Fixed default defer import mangling.
- Fixed default import of
commonjsexternals forSystemJSformat. - Fixed context modules to the same file with different import attributes.
- Fixed typescript types.
- Improved
import.metawarning messages to be more clear when used directly. - [CSS] Fixed CC_UPPER_U parsing (E -> U) in tokenizer.
v5.102.0
Features
- Added static analyze for dynamic imports
- Added support for
import file from "./file.ext" with { type: "bytes" }to get the content asUint8Array(look at example) - Added support for
import file from "./file.ext" with { type: "text" }to get the content as text (look at example) - Added the
snapshot.contextModuleto configure snapshots options for context modules - Added the
extractSourceMapoption to implement the capabilities of loading source maps by comment, you don't needsource-map-loader(look at example) - The
topLevelAwaitexperiment is now stable (you can removeexperiments.topLevelAwaitfrom yourwebpack.config.js) - The
layersexperiment is now stable (you can removeexperiments.layersfrom yourwebpack.config.js) - Added function matcher support in rule options
Fixes
- Fixed conflicts caused by multiple concatenate modules
- Ignore import failure during HMR update with ES modules output
- Keep render module order consistent
- Prevent inlining modules that have
thisexports - Removed unused
timeoutattribute of script tag - Supported UMD chunk format to work in web workers
- Improved CommonJs bundle to ES module library
- Use
es-lexerformjsfiles for build dependencies - Fixed support
__non_webpack_require__for ES modules - Properly handle external modules for CSS
- AssetsByChunkName included assets from
chunk.auxiliaryFiles - Use
createRequireonly when output is ES module and target is node - Typescript types
Performance Improvements
- Avoid extra calls for snapshot
- A avoid extra jobs for build dependencies
- Move import attributes to own dependencies
Configuration
📅 Schedule: Branch creation - Between 12:00 AM and 04:59 AM, only on Sunday ( * 0-4 * * 7 ) in timezone UTC, Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, 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.
Netlify deploy preview
https://deploy-preview-46873--material-ui.netlify.app/
Bundle size report
| Bundle | Parsed size | Gzip size |
|---|---|---|
| @mui/material | 0B(0.00%) | 0B(0.00%) |
| @mui/lab | 0B(0.00%) | 0B(0.00%) |
| @mui/system | 0B(0.00%) | 0B(0.00%) |
| @mui/utils | 0B(0.00%) | 0B(0.00%) |
Generated by :no_entry_sign: dangerJS against 1b204264e358e65b2f48554664e348467e2ef16e