dependabot[bot] opened a new pull request, #1395: URL: https://github.com/apache/airflow-site/pull/1395
Bumps the npm-dependencies group with 11 updates in the /landing-pages directory: | Package | From | To | | --- | --- | --- | | [p5](https://github.com/processing/p5.js) | `2.1.2` | `2.2.0` | | [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.28.5` | `7.28.6` | | [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) | `7.28.5` | `7.28.6` | | [@babel/register](https://github.com/babel/babel/tree/HEAD/packages/babel-register) | `7.28.3` | `7.28.6` | | [mini-css-extract-plugin](https://github.com/webpack/mini-css-extract-plugin) | `2.9.4` | `2.10.0` | | [postcss-preset-env](https://github.com/csstools/postcss-plugins/tree/HEAD/plugin-packs/postcss-preset-env) | `10.6.1` | `11.1.1` | | [stylelint](https://github.com/stylelint/stylelint) | `16.26.1` | `17.0.0` | | [stylelint-config-recommended](https://github.com/stylelint/stylelint-config-recommended) | `17.0.0` | `18.0.0` | | [stylelint-config-standard-scss](https://github.com/stylelint-scss/stylelint-config-standard-scss) | `16.0.0` | `17.0.0` | | [stylelint-scss](https://github.com/stylelint-scss/stylelint-scss) | `6.14.0` | `7.0.0` | | [webpack-dev-server](https://github.com/webpack/webpack-dev-server) | `5.2.2` | `5.2.3` | Updates `p5` from 2.1.2 to 2.2.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/processing/p5.js/releases">p5's releases</a>.</em></p> <blockquote> <h2>v2.2.0</h2> <!-- raw HTML omitted --> <h2>2.2: WebGPU and bugfixes</h2> <p>The <code>2.2</code> minor release contains work on WebGPU rendering that has been going on over the past year! WebGPU mode is included in a core add-on now. This release also contains a number of improvements in documentation and p5.strands bugfixes.</p> <p>To load both p5.js and WebGPU mode, add these two script tags to your sketch:</p> <pre lang="html"><code><script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/p5.js"></script> <script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/p5.webgpu.js"></script> </code></pre> <p>Then load WebGPU mode in <code>createCanvas</code>:</p> <pre lang="js"><code>async function setup() { await createCanvas(400, 400, WEBGPU); } </code></pre> <p>Read more about how it works and where we plan on taking it <a href="https://github.com/processing/p5.js/blob/dev-2.0/contributor_docs/webgpu.md">here</a>! You're also welcome to come by the Discord #webgpu channel 🌱</p> <h3>What's Changed 🎊</h3> <ul> <li>Ported the stroke shader to WebGPU renderer by <a href="https://github.com/lukeplowden"><code>@​lukeplowden</code></a> in <a href="https://redirect.github.com/processing/p5.js/pull/7915">processing/p5.js#7915</a></li> <li>Framebuffer support on WebGPU renderer by <a href="https://github.com/davepagurek"><code>@​davepagurek</code></a> in <a href="https://redirect.github.com/processing/p5.js/pull/8008">processing/p5.js#8008</a></li> <li>webgpu ci test by <a href="https://github.com/tychedelia"><code>@​tychedelia</code></a> in <a href="https://redirect.github.com/processing/p5.js/pull/8023">processing/p5.js#8023</a></li> <li>Add WIP WebGPU mode by <a href="https://github.com/davepagurek"><code>@​davepagurek</code></a> in <a href="https://redirect.github.com/processing/p5.js/pull/8179">processing/p5.js#8179</a></li> <li>Update release action to omit WebGPU tests, add TS tests by <a href="https://github.com/davepagurek"><code>@​davepagurek</code></a> in <a href="https://redirect.github.com/processing/p5.js/pull/8337">processing/p5.js#8337</a></li> <li>FES parameter validation decoration use <code>.apply()</code> for faster function invocation by <a href="https://github.com/limzykenneth"><code>@​limzykenneth</code></a> in <a href="https://redirect.github.com/processing/p5.js/pull/8332">processing/p5.js#8332</a></li> <li>Add WebGPU built files to npm releases by <a href="https://github.com/davepagurek"><code>@​davepagurek</code></a> in <a href="https://redirect.github.com/processing/p5.js/pull/8338">processing/p5.js#8338</a></li> <li>Make sure bytes are aligned in p5.Geometry by <a href="https://github.com/davepagurek"><code>@​davepagurek</code></a> in <a href="https://redirect.github.com/processing/p5.js/pull/8340">processing/p5.js#8340</a></li> <li>Fix WebGPU buffer memory leaks by <a href="https://github.com/davepagurek"><code>@​davepagurek</code></a> in <a href="https://redirect.github.com/processing/p5.js/pull/8342">processing/p5.js#8342</a></li> <li>Fix JSDoc return type for p5.Vector.cross (2.0) by <a href="https://github.com/Geethegreat"><code>@​Geethegreat</code></a> in <a href="https://redirect.github.com/processing/p5.js/pull/8346">processing/p5.js#8346</a></li> <li>Add support for instanceID() in WebGPU mode by <a href="https://github.com/davepagurek"><code>@​davepagurek</code></a> in <a href="https://redirect.github.com/processing/p5.js/pull/8348">processing/p5.js#8348</a></li> <li>Fix WebGPU filters in CDN builds using duck typing for nodes (closes … by <a href="https://github.com/Piyushrathoree"><code>@​Piyushrathoree</code></a> in <a href="https://redirect.github.com/processing/p5.js/pull/8349">processing/p5.js#8349</a></li> <li>Fix Camera.slerp for ortho by cloning projMatrix into uPMatrix when active by <a href="https://github.com/nakednous"><code>@​nakednous</code></a> in <a href="https://redirect.github.com/processing/p5.js/pull/8351">processing/p5.js#8351</a></li> <li>fixed the issue with alpha blending - fixing blur remaining by <a href="https://github.com/Piyushrathoree"><code>@​Piyushrathoree</code></a> in <a href="https://redirect.github.com/processing/p5.js/pull/8354">processing/p5.js#8354</a></li> <li>Support background(image) in WEBGL Renderer3D by <a href="https://github.com/reshma045"><code>@​reshma045</code></a> in <a href="https://redirect.github.com/processing/p5.js/pull/8352">processing/p5.js#8352</a></li> <li>Fix LogicalExpression (&&, ||) handling in p5.strands by <a href="https://github.com/Aayushdev18"><code>@​Aayushdev18</code></a> in <a href="https://redirect.github.com/processing/p5.js/pull/8359">processing/p5.js#8359</a></li> <li>Fix p5.strands filters not working on minified code by <a href="https://github.com/davepagurek"><code>@​davepagurek</code></a> in <a href="https://redirect.github.com/processing/p5.js/pull/8367">processing/p5.js#8367</a></li> <li>More fixes for minified filters by <a href="https://github.com/davepagurek"><code>@​davepagurek</code></a> in <a href="https://redirect.github.com/processing/p5.js/pull/8372">processing/p5.js#8372</a></li> <li>Fix transforms in clip() by using shape system for primitives using manual method by <a href="https://github.com/VANSH3104"><code>@​VANSH3104</code></a> in <a href="https://redirect.github.com/processing/p5.js/pull/8236">processing/p5.js#8236</a></li> <li>Make sure text binds an index buffer by <a href="https://github.com/davepagurek"><code>@​davepagurek</code></a> in <a href="https://redirect.github.com/processing/p5.js/pull/8393">processing/p5.js#8393</a></li> <li>Fix font measurement with font families containing special characters by <a href="https://github.com/davepagurek"><code>@​davepagurek</code></a> in <a href="https://redirect.github.com/processing/p5.js/pull/8391">processing/p5.js#8391</a></li> <li>Fix for strands branching by <a href="https://github.com/davepagurek"><code>@​davepagurek</code></a> in <a href="https://redirect.github.com/processing/p5.js/pull/8394">processing/p5.js#8394</a></li> <li>Fix assignments to properties of <code>inputs</code> in branches in p5.strands by <a href="https://github.com/davepagurek"><code>@​davepagurek</code></a> in <a href="https://redirect.github.com/processing/p5.js/pull/8397">processing/p5.js#8397</a></li> <li>Fix set() to support p5.Graphics objects by <a href="https://github.com/VANSH3104"><code>@​VANSH3104</code></a> in <a href="https://redirect.github.com/processing/p5.js/pull/8326">processing/p5.js#8326</a></li> <li>Fix type for shuffle() and add type test. by <a href="https://github.com/nbogie"><code>@​nbogie</code></a> in <a href="https://redirect.github.com/processing/p5.js/pull/8410">processing/p5.js#8410</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/processing/p5.js/commit/615684bbf5a7a20007d4cbcc4c7c13109fc69564"><code>615684b</code></a> 2.2.0</li> <li><a href="https://github.com/processing/p5.js/commit/f8a43b0794f3d4885ab909c24da94f4a30b380c8"><code>f8a43b0</code></a> 2.2.0-rc.6</li> <li><a href="https://github.com/processing/p5.js/commit/efa358b624a9b6fe1fa4dc46a0f3cd43cf31b252"><code>efa358b</code></a> Merge pull request <a href="https://redirect.github.com/processing/p5.js/issues/8414">#8414</a> from processing/fix/strands-named-function</li> <li><a href="https://github.com/processing/p5.js/commit/9584786142343f95692bd8faa521c2afd91dfba2"><code>9584786</code></a> Fix p5.strands parsing of named function callbacks</li> <li><a href="https://github.com/processing/p5.js/commit/e5566ec9c0eaba545bf2b3033ac2733280341be8"><code>e5566ec</code></a> Merge pull request <a href="https://redirect.github.com/processing/p5.js/issues/8410">#8410</a> from nbogie/fix-types-for-shuffle</li> <li><a href="https://github.com/processing/p5.js/commit/923418fdd5d0513d894e398bebcb7139d61e1c81"><code>923418f</code></a> rename shuffle's 2nd arg to "modify" in code and jsdoc types</li> <li><a href="https://github.com/processing/p5.js/commit/aeeba87b3c13bb3cc07a8470995ea12a3239e82a"><code>aeeba87</code></a> replace type for shuffle (and test it)</li> <li><a href="https://github.com/processing/p5.js/commit/62e26510a88d9f430dd7e889ae89837307963f54"><code>62e2651</code></a> Merge pull request <a href="https://redirect.github.com/processing/p5.js/issues/8326">#8326</a> from VANSH3104/setSupport</li> <li><a href="https://github.com/processing/p5.js/commit/7b68cbf1607c2b3e8d8dffb195e81543bc779cb4"><code>7b68cbf</code></a> Merge branch 'dev-2.0' into setSupport</li> <li><a href="https://github.com/processing/p5.js/commit/b4f23ee16db22a144cb44b5f59feedc2c2987aad"><code>b4f23ee</code></a> Merge pull request <a href="https://redirect.github.com/processing/p5.js/issues/8397">#8397</a> from processing/fix/assign-inputs-branching</li> <li>Additional commits viewable in <a href="https://github.com/processing/p5.js/compare/v2.1.2...v2.2.0">compare view</a></li> </ul> </details> <br /> Updates `@babel/core` from 7.28.5 to 7.28.6 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/babel/babel/releases"><code>@​babel/core</code>'s releases</a>.</em></p> <blockquote> <h2>v7.28.6 (2026-01-12)</h2> <p>Thanks <a href="https://github.com/kadhirash"><code>@​kadhirash</code></a> and <a href="https://github.com/kolvian"><code>@​kolvian</code></a> for your first PRs!</p> <h4>:bug: Bug Fix</h4> <ul> <li><code>babel-cli</code>, <code>babel-code-frame</code>, <code>babel-core</code>, <code>babel-helper-check-duplicate-nodes</code>, <code>babel-helper-fixtures</code>, <code>babel-helper-plugin-utils</code>, <code>babel-node</code>, <code>babel-plugin-transform-flow-comments</code>, <code>babel-plugin-transform-modules-commonjs</code>, <code>babel-plugin-transform-property-mutators</code>, <code>babel-preset-env</code>, <code>babel-traverse</code>, <code>babel-types</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17589">#17589</a> Improve Unicode handling in code-frame tokenizer (<a href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li> </ul> </li> <li><code>babel-plugin-transform-regenerator</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17556">#17556</a> fix: <code>transform-regenerator</code> correctly handles scope (<a href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li> </ul> </li> <li><code>babel-plugin-transform-react-jsx</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17538">#17538</a> fix: Keep jsx comments (<a href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li> </ul> </li> </ul> <h4>:nail_care: Polish</h4> <ul> <li><code>babel-core</code>, <code>babel-standalone</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17606">#17606</a> Polish(standalone): improve message on invalid preset/plugin (<a href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li> </ul> </li> </ul> <h4>:house: Internal</h4> <ul> <li><code>babel-plugin-bugfix-v8-static-class-fields-redefine-readonly</code>, <code>babel-plugin-proposal-decorators</code>, <code>babel-plugin-proposal-import-attributes-to-assertions</code>, <code>babel-plugin-proposal-import-wasm-source</code>, <code>babel-plugin-syntax-async-do-expressions</code>, <code>babel-plugin-syntax-decorators</code>, <code>babel-plugin-syntax-destructuring-private</code>, <code>babel-plugin-syntax-do-expressions</code>, <code>babel-plugin-syntax-explicit-resource-management</code>, <code>babel-plugin-syntax-export-default-from</code>, <code>babel-plugin-syntax-flow</code>, <code>babel-plugin-syntax-function-bind</code>, <code>babel-plugin-syntax-function-sent</code>, <code>babel-plugin-syntax-import-assertions</code>, <code>babel-plugin-syntax-import-attributes</code>, <code>babel-plugin-syntax-import-defer</code>, <code>babel-plugin-syntax-import-source</code>, <code>babel-plugin-syntax-jsx</code>, <code>babel-plugin-syntax-module-blocks</code>, <cod e>babel-plugin-syntax-optional-chaining-assign</code>, <code>babel-plugin-syntax-partial-application</code>, <code>babel-plugin-syntax-pipeline-operator</code>, <code>babel-plugin-syntax-throw-expressions</code>, <code>babel-plugin-syntax-typescript</code>, <code>babel-plugin-transform-async-generator-functions</code>, <code>babel-plugin-transform-async-to-generator</code>, <code>babel-plugin-transform-class-properties</code>, <code>babel-plugin-transform-class-static-block</code>, <code>babel-plugin-transform-dotall-regex</code>, <code>babel-plugin-transform-duplicate-named-capturing-groups-regex</code>, <code>babel-plugin-transform-explicit-resource-management</code>, <code>babel-plugin-transform-exponentiation-operator</code>, <code>babel-plugin-transform-json-strings</code>, <code>babel-plugin-transform-logical-assignment-operators</code>, <code>babel-plugin-transform-nullish-coalescing-operator</code>, <code>babel-plugin-transform-numeric-separator</code>, <code>babel-plugin-tr ansform-object-rest-spread</code>, <code>babel-plugin-transform-optional-catch-binding</code>, <code>babel-plugin-transform-optional-chaining</code>, <code>babel-plugin-transform-private-methods</code>, <code>babel-plugin-transform-private-property-in-object</code>, <code>babel-plugin-transform-regexp-modifiers</code>, <code>babel-plugin-transform-unicode-property-regex</code>, <code>babel-plugin-transform-unicode-sets-regex</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17580">#17580</a> Allow Babel 8 in compatible Babel 7 plugins (<a href="https://github.com/nicolo-ribaudo"><code>@​nicolo-ribaudo</code></a>)</li> </ul> </li> </ul> <h4>:running_woman: Performance</h4> <ul> <li><code>babel-plugin-transform-react-jsx</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17555">#17555</a> perf: Use lighter traversal for jsx <code>__source,__self</code> (<a href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li> </ul> </li> </ul> <h4>Committers: 7</h4> <ul> <li>Babel Bot (<a href="https://github.com/babel-bot"><code>@​babel-bot</code></a>)</li> <li>Eliot Pontarelli (<a href="https://github.com/kolvian"><code>@​kolvian</code></a>)</li> <li>Huáng Jùnlià ng (<a href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li> <li>Kadhirash Sivakumar (<a href="https://github.com/kadhirash"><code>@​kadhirash</code></a>)</li> <li>Nicolò Ribaudo (<a href="https://github.com/nicolo-ribaudo"><code>@​nicolo-ribaudo</code></a>)</li> <li><a href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a></li> <li>coderaiser (<a href="https://github.com/coderaiser"><code>@​coderaiser</code></a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/babel/babel/blob/main/CHANGELOG.md"><code>@​babel/core</code>'s changelog</a>.</em></p> <blockquote> <h1>Changelog</h1> <blockquote> <p><strong>Tags:</strong></p> <ul> <li>:boom: [Breaking Change]</li> <li>:eyeglasses: [Spec Compliance]</li> <li>:rocket: [New Feature]</li> <li>:bug: [Bug Fix]</li> <li>:memo: [Documentation]</li> <li>:house: [Internal]</li> <li>:nail_care: [Polish]</li> </ul> </blockquote> <p><em>Note: Gaps between patch versions are faulty, broken or test releases.</em></p> <p>This file contains the changelog starting from v7.15.0.</p> <ul> <li>See <a href="https://github.com/babel/babel/blob/main/.github/CHANGELOG-v7.0.0-v7.14.9.md">CHANGELOG - v7.0.0 to v7.14.9</a> for v7.0.0 to v7.14.9 changes.</li> <li>See <a href="https://github.com/babel/babel/blob/main/.github/CHANGELOG-v7-prereleases.md">CHANGELOG - v7 prereleases</a> for v7.0.0-alpha.1 to v7.0.0-rc.4 changes.</li> <li>See <a href="https://github.com/babel/babel/blob/main/.github/CHANGELOG-v4.md">CHANGELOG - v4</a>, <a href="https://github.com/babel/babel/blob/main/.github/CHANGELOG-v5.md">CHANGELOG - v5</a>, and <a href="https://github.com/babel/babel/blob/main/.github/CHANGELOG-v6.md">CHANGELOG - v6</a> for v4.x-v6.x changes.</li> <li>See <a href="https://github.com/babel/babel/blob/main/.github/CHANGELOG-6to5.md">CHANGELOG - 6to5</a> for the pre-4.0.0 version changelog.</li> <li>See <a href="https://github.com/babel/babel/blob/main/packages/babel-parser/CHANGELOG.md">Babylon's CHANGELOG</a> for the Babylon pre-7.0.0-beta.29 version changelog.</li> <li>See <a href="https://github.com/babel/babel-eslint/releases"><code>babel-eslint</code>'s releases</a> for the changelog before <code>@babel/eslint-parser</code> 7.8.0.</li> <li>See <a href="https://github.com/babel/eslint-plugin-babel/releases"><code>eslint-plugin-babel</code>'s releases</a> for the changelog before <code>@babel/eslint-plugin</code> 7.8.0.</li> </ul> <!-- raw HTML omitted --> <!-- raw HTML omitted --> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/babel/babel/commit/d7f400889567ae18ef9ac41b024b5120f6060e17"><code>d7f4008</code></a> v7.28.6</li> <li><a href="https://github.com/babel/babel/commit/e130225028e93e106135586f344cfa44c4aac847"><code>e130225</code></a> Polish(standalone): improve message on invalid preset/plugin (<a href="https://github.com/babel/babel/tree/HEAD/packages/babel-core/issues/17606">#17606</a>)</li> <li><a href="https://github.com/babel/babel/commit/99dcba5e71de3bd81ce14077cfa5b6df58e9b177"><code>99dcba5</code></a> chore: enable some ts-eslint rules (<a href="https://github.com/babel/babel/tree/HEAD/packages/babel-core/issues/17592">#17592</a>)</li> <li><a href="https://github.com/babel/babel/commit/c92c4919771105140015167f25f7bacac77c90d9"><code>c92c491</code></a> Improve Unicode handling in code-frame tokenizer (<a href="https://github.com/babel/babel/tree/HEAD/packages/babel-core/issues/17589">#17589</a>)</li> <li><a href="https://github.com/babel/babel/commit/d725e399fd6a4da463cff4918cf71aa03b8beb14"><code>d725e39</code></a> Add <code>BABEL_7_TO_8_DANGEROUSLY_DISABLE_VERSION_CHECK</code> (<a href="https://github.com/babel/babel/tree/HEAD/packages/babel-core/issues/17569">#17569</a>)</li> <li><a href="https://github.com/babel/babel/commit/c1b55f6ad56523ccc96fa68721de0bed2f2cdb23"><code>c1b55f6</code></a> Use <code>eslint.config.mts</code> (<a href="https://github.com/babel/babel/tree/HEAD/packages/babel-core/issues/17573">#17573</a>)</li> <li>See full diff in <a href="https://github.com/babel/babel/commits/v7.28.6/packages/babel-core">compare view</a></li> </ul> </details> <br /> Updates `@babel/preset-env` from 7.28.5 to 7.28.6 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/babel/babel/releases"><code>@​babel/preset-env</code>'s releases</a>.</em></p> <blockquote> <h2>v7.28.6 (2026-01-12)</h2> <p>Thanks <a href="https://github.com/kadhirash"><code>@​kadhirash</code></a> and <a href="https://github.com/kolvian"><code>@​kolvian</code></a> for your first PRs!</p> <h4>:bug: Bug Fix</h4> <ul> <li><code>babel-cli</code>, <code>babel-code-frame</code>, <code>babel-core</code>, <code>babel-helper-check-duplicate-nodes</code>, <code>babel-helper-fixtures</code>, <code>babel-helper-plugin-utils</code>, <code>babel-node</code>, <code>babel-plugin-transform-flow-comments</code>, <code>babel-plugin-transform-modules-commonjs</code>, <code>babel-plugin-transform-property-mutators</code>, <code>babel-preset-env</code>, <code>babel-traverse</code>, <code>babel-types</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17589">#17589</a> Improve Unicode handling in code-frame tokenizer (<a href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li> </ul> </li> <li><code>babel-plugin-transform-regenerator</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17556">#17556</a> fix: <code>transform-regenerator</code> correctly handles scope (<a href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li> </ul> </li> <li><code>babel-plugin-transform-react-jsx</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17538">#17538</a> fix: Keep jsx comments (<a href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li> </ul> </li> </ul> <h4>:nail_care: Polish</h4> <ul> <li><code>babel-core</code>, <code>babel-standalone</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17606">#17606</a> Polish(standalone): improve message on invalid preset/plugin (<a href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li> </ul> </li> </ul> <h4>:house: Internal</h4> <ul> <li><code>babel-plugin-bugfix-v8-static-class-fields-redefine-readonly</code>, <code>babel-plugin-proposal-decorators</code>, <code>babel-plugin-proposal-import-attributes-to-assertions</code>, <code>babel-plugin-proposal-import-wasm-source</code>, <code>babel-plugin-syntax-async-do-expressions</code>, <code>babel-plugin-syntax-decorators</code>, <code>babel-plugin-syntax-destructuring-private</code>, <code>babel-plugin-syntax-do-expressions</code>, <code>babel-plugin-syntax-explicit-resource-management</code>, <code>babel-plugin-syntax-export-default-from</code>, <code>babel-plugin-syntax-flow</code>, <code>babel-plugin-syntax-function-bind</code>, <code>babel-plugin-syntax-function-sent</code>, <code>babel-plugin-syntax-import-assertions</code>, <code>babel-plugin-syntax-import-attributes</code>, <code>babel-plugin-syntax-import-defer</code>, <code>babel-plugin-syntax-import-source</code>, <code>babel-plugin-syntax-jsx</code>, <code>babel-plugin-syntax-module-blocks</code>, <cod e>babel-plugin-syntax-optional-chaining-assign</code>, <code>babel-plugin-syntax-partial-application</code>, <code>babel-plugin-syntax-pipeline-operator</code>, <code>babel-plugin-syntax-throw-expressions</code>, <code>babel-plugin-syntax-typescript</code>, <code>babel-plugin-transform-async-generator-functions</code>, <code>babel-plugin-transform-async-to-generator</code>, <code>babel-plugin-transform-class-properties</code>, <code>babel-plugin-transform-class-static-block</code>, <code>babel-plugin-transform-dotall-regex</code>, <code>babel-plugin-transform-duplicate-named-capturing-groups-regex</code>, <code>babel-plugin-transform-explicit-resource-management</code>, <code>babel-plugin-transform-exponentiation-operator</code>, <code>babel-plugin-transform-json-strings</code>, <code>babel-plugin-transform-logical-assignment-operators</code>, <code>babel-plugin-transform-nullish-coalescing-operator</code>, <code>babel-plugin-transform-numeric-separator</code>, <code>babel-plugin-tr ansform-object-rest-spread</code>, <code>babel-plugin-transform-optional-catch-binding</code>, <code>babel-plugin-transform-optional-chaining</code>, <code>babel-plugin-transform-private-methods</code>, <code>babel-plugin-transform-private-property-in-object</code>, <code>babel-plugin-transform-regexp-modifiers</code>, <code>babel-plugin-transform-unicode-property-regex</code>, <code>babel-plugin-transform-unicode-sets-regex</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17580">#17580</a> Allow Babel 8 in compatible Babel 7 plugins (<a href="https://github.com/nicolo-ribaudo"><code>@​nicolo-ribaudo</code></a>)</li> </ul> </li> </ul> <h4>:running_woman: Performance</h4> <ul> <li><code>babel-plugin-transform-react-jsx</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17555">#17555</a> perf: Use lighter traversal for jsx <code>__source,__self</code> (<a href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li> </ul> </li> </ul> <h4>Committers: 7</h4> <ul> <li>Babel Bot (<a href="https://github.com/babel-bot"><code>@​babel-bot</code></a>)</li> <li>Eliot Pontarelli (<a href="https://github.com/kolvian"><code>@​kolvian</code></a>)</li> <li>Huáng Jùnlià ng (<a href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li> <li>Kadhirash Sivakumar (<a href="https://github.com/kadhirash"><code>@​kadhirash</code></a>)</li> <li>Nicolò Ribaudo (<a href="https://github.com/nicolo-ribaudo"><code>@​nicolo-ribaudo</code></a>)</li> <li><a href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a></li> <li>coderaiser (<a href="https://github.com/coderaiser"><code>@​coderaiser</code></a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/babel/babel/blob/main/CHANGELOG.md"><code>@​babel/preset-env</code>'s changelog</a>.</em></p> <blockquote> <h1>Changelog</h1> <blockquote> <p><strong>Tags:</strong></p> <ul> <li>:boom: [Breaking Change]</li> <li>:eyeglasses: [Spec Compliance]</li> <li>:rocket: [New Feature]</li> <li>:bug: [Bug Fix]</li> <li>:memo: [Documentation]</li> <li>:house: [Internal]</li> <li>:nail_care: [Polish]</li> </ul> </blockquote> <p><em>Note: Gaps between patch versions are faulty, broken or test releases.</em></p> <p>This file contains the changelog starting from v7.15.0.</p> <ul> <li>See <a href="https://github.com/babel/babel/blob/main/.github/CHANGELOG-v7.0.0-v7.14.9.md">CHANGELOG - v7.0.0 to v7.14.9</a> for v7.0.0 to v7.14.9 changes.</li> <li>See <a href="https://github.com/babel/babel/blob/main/.github/CHANGELOG-v7-prereleases.md">CHANGELOG - v7 prereleases</a> for v7.0.0-alpha.1 to v7.0.0-rc.4 changes.</li> <li>See <a href="https://github.com/babel/babel/blob/main/.github/CHANGELOG-v4.md">CHANGELOG - v4</a>, <a href="https://github.com/babel/babel/blob/main/.github/CHANGELOG-v5.md">CHANGELOG - v5</a>, and <a href="https://github.com/babel/babel/blob/main/.github/CHANGELOG-v6.md">CHANGELOG - v6</a> for v4.x-v6.x changes.</li> <li>See <a href="https://github.com/babel/babel/blob/main/.github/CHANGELOG-6to5.md">CHANGELOG - 6to5</a> for the pre-4.0.0 version changelog.</li> <li>See <a href="https://github.com/babel/babel/blob/main/packages/babel-parser/CHANGELOG.md">Babylon's CHANGELOG</a> for the Babylon pre-7.0.0-beta.29 version changelog.</li> <li>See <a href="https://github.com/babel/babel-eslint/releases"><code>babel-eslint</code>'s releases</a> for the changelog before <code>@babel/eslint-parser</code> 7.8.0.</li> <li>See <a href="https://github.com/babel/eslint-plugin-babel/releases"><code>eslint-plugin-babel</code>'s releases</a> for the changelog before <code>@babel/eslint-plugin</code> 7.8.0.</li> </ul> <!-- raw HTML omitted --> <!-- raw HTML omitted --> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/babel/babel/commit/d7f400889567ae18ef9ac41b024b5120f6060e17"><code>d7f4008</code></a> v7.28.6</li> <li><a href="https://github.com/babel/babel/commit/99dcba5e71de3bd81ce14077cfa5b6df58e9b177"><code>99dcba5</code></a> chore: enable some ts-eslint rules (<a href="https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env/issues/17592">#17592</a>)</li> <li><a href="https://github.com/babel/babel/commit/c92c4919771105140015167f25f7bacac77c90d9"><code>c92c491</code></a> Improve Unicode handling in code-frame tokenizer (<a href="https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env/issues/17589">#17589</a>)</li> <li>See full diff in <a href="https://github.com/babel/babel/commits/v7.28.6/packages/babel-preset-env">compare view</a></li> </ul> </details> <br /> Updates `@babel/register` from 7.28.3 to 7.28.6 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/babel/babel/releases"><code>@​babel/register</code>'s releases</a>.</em></p> <blockquote> <h2>v7.28.6 (2026-01-12)</h2> <p>Thanks <a href="https://github.com/kadhirash"><code>@​kadhirash</code></a> and <a href="https://github.com/kolvian"><code>@​kolvian</code></a> for your first PRs!</p> <h4>:bug: Bug Fix</h4> <ul> <li><code>babel-cli</code>, <code>babel-code-frame</code>, <code>babel-core</code>, <code>babel-helper-check-duplicate-nodes</code>, <code>babel-helper-fixtures</code>, <code>babel-helper-plugin-utils</code>, <code>babel-node</code>, <code>babel-plugin-transform-flow-comments</code>, <code>babel-plugin-transform-modules-commonjs</code>, <code>babel-plugin-transform-property-mutators</code>, <code>babel-preset-env</code>, <code>babel-traverse</code>, <code>babel-types</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17589">#17589</a> Improve Unicode handling in code-frame tokenizer (<a href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li> </ul> </li> <li><code>babel-plugin-transform-regenerator</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17556">#17556</a> fix: <code>transform-regenerator</code> correctly handles scope (<a href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li> </ul> </li> <li><code>babel-plugin-transform-react-jsx</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17538">#17538</a> fix: Keep jsx comments (<a href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li> </ul> </li> </ul> <h4>:nail_care: Polish</h4> <ul> <li><code>babel-core</code>, <code>babel-standalone</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17606">#17606</a> Polish(standalone): improve message on invalid preset/plugin (<a href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li> </ul> </li> </ul> <h4>:house: Internal</h4> <ul> <li><code>babel-plugin-bugfix-v8-static-class-fields-redefine-readonly</code>, <code>babel-plugin-proposal-decorators</code>, <code>babel-plugin-proposal-import-attributes-to-assertions</code>, <code>babel-plugin-proposal-import-wasm-source</code>, <code>babel-plugin-syntax-async-do-expressions</code>, <code>babel-plugin-syntax-decorators</code>, <code>babel-plugin-syntax-destructuring-private</code>, <code>babel-plugin-syntax-do-expressions</code>, <code>babel-plugin-syntax-explicit-resource-management</code>, <code>babel-plugin-syntax-export-default-from</code>, <code>babel-plugin-syntax-flow</code>, <code>babel-plugin-syntax-function-bind</code>, <code>babel-plugin-syntax-function-sent</code>, <code>babel-plugin-syntax-import-assertions</code>, <code>babel-plugin-syntax-import-attributes</code>, <code>babel-plugin-syntax-import-defer</code>, <code>babel-plugin-syntax-import-source</code>, <code>babel-plugin-syntax-jsx</code>, <code>babel-plugin-syntax-module-blocks</code>, <cod e>babel-plugin-syntax-optional-chaining-assign</code>, <code>babel-plugin-syntax-partial-application</code>, <code>babel-plugin-syntax-pipeline-operator</code>, <code>babel-plugin-syntax-throw-expressions</code>, <code>babel-plugin-syntax-typescript</code>, <code>babel-plugin-transform-async-generator-functions</code>, <code>babel-plugin-transform-async-to-generator</code>, <code>babel-plugin-transform-class-properties</code>, <code>babel-plugin-transform-class-static-block</code>, <code>babel-plugin-transform-dotall-regex</code>, <code>babel-plugin-transform-duplicate-named-capturing-groups-regex</code>, <code>babel-plugin-transform-explicit-resource-management</code>, <code>babel-plugin-transform-exponentiation-operator</code>, <code>babel-plugin-transform-json-strings</code>, <code>babel-plugin-transform-logical-assignment-operators</code>, <code>babel-plugin-transform-nullish-coalescing-operator</code>, <code>babel-plugin-transform-numeric-separator</code>, <code>babel-plugin-tr ansform-object-rest-spread</code>, <code>babel-plugin-transform-optional-catch-binding</code>, <code>babel-plugin-transform-optional-chaining</code>, <code>babel-plugin-transform-private-methods</code>, <code>babel-plugin-transform-private-property-in-object</code>, <code>babel-plugin-transform-regexp-modifiers</code>, <code>babel-plugin-transform-unicode-property-regex</code>, <code>babel-plugin-transform-unicode-sets-regex</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17580">#17580</a> Allow Babel 8 in compatible Babel 7 plugins (<a href="https://github.com/nicolo-ribaudo"><code>@​nicolo-ribaudo</code></a>)</li> </ul> </li> </ul> <h4>:running_woman: Performance</h4> <ul> <li><code>babel-plugin-transform-react-jsx</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17555">#17555</a> perf: Use lighter traversal for jsx <code>__source,__self</code> (<a href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li> </ul> </li> </ul> <h4>Committers: 7</h4> <ul> <li>Babel Bot (<a href="https://github.com/babel-bot"><code>@​babel-bot</code></a>)</li> <li>Eliot Pontarelli (<a href="https://github.com/kolvian"><code>@​kolvian</code></a>)</li> <li>Huáng Jùnlià ng (<a href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li> <li>Kadhirash Sivakumar (<a href="https://github.com/kadhirash"><code>@​kadhirash</code></a>)</li> <li>Nicolò Ribaudo (<a href="https://github.com/nicolo-ribaudo"><code>@​nicolo-ribaudo</code></a>)</li> <li><a href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a></li> <li>coderaiser (<a href="https://github.com/coderaiser"><code>@​coderaiser</code></a>)</li> </ul> <h2>v7.28.5 (2025-10-23)</h2> <p>Thank you <a href="https://github.com/CO0Ki3"><code>@​CO0Ki3</code></a>, <a href="https://github.com/Olexandr88"><code>@​Olexandr88</code></a>, and <a href="https://github.com/youthfulhps"><code>@​youthfulhps</code></a> for your first PRs!</p> <h4>:eyeglasses: Spec Compliance</h4> <ul> <li><code>babel-parser</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17446">#17446</a> Allow <code>Runtime Errors for Function Call Assignment Targets</code> (<a href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li> </ul> </li> <li><code>babel-helper-validator-identifier</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17501">#17501</a> fix: update identifier to unicode 17 (<a href="https://github.com/fisker"><code>@​fisker</code></a>)</li> </ul> </li> </ul> <h4>:bug: Bug Fix</h4> <ul> <li><code>babel-plugin-proposal-destructuring-private</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17534">#17534</a> Allow mixing private destructuring and rest (<a href="https://github.com/CO0Ki3"><code>@​CO0Ki3</code></a>)</li> </ul> </li> <li><code>babel-parser</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17521">#17521</a> Improve <code>@babel/parser</code> error typing (<a href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li> <li><a href="https://redirect.github.com/babel/babel/pull/17491">#17491</a> fix: improve ts-only declaration parsing (<a href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li> </ul> </li> <li><code>babel-plugin-proposal-discard-binding</code>, <code>babel-plugin-transform-destructuring</code></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/babel/babel/blob/main/CHANGELOG.md"><code>@​babel/register</code>'s changelog</a>.</em></p> <blockquote> <h1>Changelog</h1> <blockquote> <p><strong>Tags:</strong></p> <ul> <li>:boom: [Breaking Change]</li> <li>:eyeglasses: [Spec Compliance]</li> <li>:rocket: [New Feature]</li> <li>:bug: [Bug Fix]</li> <li>:memo: [Documentation]</li> <li>:house: [Internal]</li> <li>:nail_care: [Polish]</li> </ul> </blockquote> <p><em>Note: Gaps between patch versions are faulty, broken or test releases.</em></p> <p>This file contains the changelog starting from v7.15.0.</p> <ul> <li>See <a href="https://github.com/babel/babel/blob/main/.github/CHANGELOG-v7.0.0-v7.14.9.md">CHANGELOG - v7.0.0 to v7.14.9</a> for v7.0.0 to v7.14.9 changes.</li> <li>See <a href="https://github.com/babel/babel/blob/main/.github/CHANGELOG-v7-prereleases.md">CHANGELOG - v7 prereleases</a> for v7.0.0-alpha.1 to v7.0.0-rc.4 changes.</li> <li>See <a href="https://github.com/babel/babel/blob/main/.github/CHANGELOG-v4.md">CHANGELOG - v4</a>, <a href="https://github.com/babel/babel/blob/main/.github/CHANGELOG-v5.md">CHANGELOG - v5</a>, and <a href="https://github.com/babel/babel/blob/main/.github/CHANGELOG-v6.md">CHANGELOG - v6</a> for v4.x-v6.x changes.</li> <li>See <a href="https://github.com/babel/babel/blob/main/.github/CHANGELOG-6to5.md">CHANGELOG - 6to5</a> for the pre-4.0.0 version changelog.</li> <li>See <a href="https://github.com/babel/babel/blob/main/packages/babel-parser/CHANGELOG.md">Babylon's CHANGELOG</a> for the Babylon pre-7.0.0-beta.29 version changelog.</li> <li>See <a href="https://github.com/babel/babel-eslint/releases"><code>babel-eslint</code>'s releases</a> for the changelog before <code>@babel/eslint-parser</code> 7.8.0.</li> <li>See <a href="https://github.com/babel/eslint-plugin-babel/releases"><code>eslint-plugin-babel</code>'s releases</a> for the changelog before <code>@babel/eslint-plugin</code> 7.8.0.</li> </ul> <!-- raw HTML omitted --> <!-- raw HTML omitted --> <h2>v7.28.5 (2025-10-23)</h2> <h4>:eyeglasses: Spec Compliance</h4> <ul> <li><code>babel-parser</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17446">#17446</a> Allow <code>Runtime Errors for Function Call Assignment Targets</code> (<a href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li> </ul> </li> <li><code>babel-helper-validator-identifier</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17501">#17501</a> fix: update identifier to unicode 17 (<a href="https://github.com/fisker"><code>@​fisker</code></a>)</li> </ul> </li> </ul> <h4>:bug: Bug Fix</h4> <ul> <li><code>babel-plugin-proposal-destructuring-private</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17534">#17534</a> Allow mixing private destructuring and rest (<a href="https://github.com/CO0Ki3"><code>@​CO0Ki3</code></a>)</li> </ul> </li> <li><code>babel-parser</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17521">#17521</a> Improve <code>@babel/parser</code> error typing (<a href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li> <li><a href="https://redirect.github.com/babel/babel/pull/17491">#17491</a> fix: improve ts-only declaration parsing (<a href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li> </ul> </li> <li><code>babel-plugin-proposal-discard-binding</code>, <code>babel-plugin-transform-destructuring</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17519">#17519</a> fix: <code>rest</code> correctly returns plain array (<a href="https://github.com/liuxingbaoyu"><code>@​liuxingbaoyu</code></a>)</li> </ul> </li> <li><code>babel-helper-create-class-features-plugin</code>, <code>babel-helper-member-expression-to-functions</code>, <code>babel-plugin-transform-block-scoping</code>, <code>babel-plugin-transform-optional-chaining</code>, <code>babel-traverse</code>, <code>babel-types</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17503">#17503</a> Fix <code>JSXIdentifier</code> handling in <code>isReferencedIdentifier</code> (<a href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li> </ul> </li> <li><code>babel-traverse</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17504">#17504</a> fix: ensure scope.push register in anonymous fn (<a href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li> </ul> </li> </ul> <h4>:house: Internal</h4> <ul> <li><code>babel-types</code> <ul> <li><a href="https://redirect.github.com/babel/babel/pull/17494">#17494</a> Type checking babel-types scripts (<a href="https://github.com/JLHwung"><code>@​JLHwung</code></a>)</li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/babel/babel/commit/d7f400889567ae18ef9ac41b024b5120f6060e17"><code>d7f4008</code></a> v7.28.6</li> <li><a href="https://github.com/babel/babel/commit/c1b55f6ad56523ccc96fa68721de0bed2f2cdb23"><code>c1b55f6</code></a> Use <code>eslint.config.mts</code> (<a href="https://github.com/babel/babel/tree/HEAD/packages/babel-register/issues/17573">#17573</a>)</li> <li>See full diff in <a href="https://github.com/babel/babel/commits/v7.28.6/packages/babel-register">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by [GitHub Actions](<a href="https://www.npmjs.com/~GitHub">https://www.npmjs.com/~GitHub</a> Actions), a new releaser for <code>@​babel/register</code> since your current version.</p> </details> <br /> Updates `mini-css-extract-plugin` from 2.9.4 to 2.10.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/webpack/mini-css-extract-plugin/releases">mini-css-extract-plugin's releases</a>.</em></p> <blockquote> <h2>v2.10.0</h2> <h2><a href="https://github.com/webpack/mini-css-extract-plugin/compare/v2.9.4...v2.10.0">2.10.0</a> (2026-01-16)</h2> <h3>Features</h3> <ul> <li>respect <code>output.cssFilename</code> and <code>output.cssChunkFilename</code> (<a href="https://redirect.github.com/webpack/mini-css-extract-plugin/issues/1151">#1151</a>) (<a href="https://github.com/webpack/mini-css-extract-plugin/commit/54f775ddac6ea365b9023ab0624f8219695371b3">54f775d</a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li>prevent generation of a contentHash for a chunk when the set of css modules is of size 0 (<a href="https://redirect.github.com/webpack/mini-css-extract-plugin/issues/1154">#1154</a>) (<a href="https://github.com/webpack/mini-css-extract-plugin/commit/4e4a95d16431bca442b7ac5d90c887142e3ce117">4e4a95d</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/webpack/mini-css-extract-plugin/blob/main/CHANGELOG.md">mini-css-extract-plugin's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/webpack/mini-css-extract-plugin/compare/v2.9.4...v2.10.0">2.10.0</a> (2026-01-16)</h2> <h3>Features</h3> <ul> <li>respect <code>output.cssFilename</code> and <code>output.cssChunkFilename</code> (<a href="https://redirect.github.com/webpack/mini-css-extract-plugin/issues/1151">#1151</a>) (<a href="https://github.com/webpack/mini-css-extract-plugin/commit/54f775ddac6ea365b9023ab0624f8219695371b3">54f775d</a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li>prevent generation of a contentHash for a chunk when the set of css modules is of size 0 (<a href="https://redirect.github.com/webpack/mini-css-extract-plugin/issues/1154">#1154</a>) (<a href="https://github.com/webpack/mini-css-extract-plugin/commit/4e4a95d16431bca442b7ac5d90c887142e3ce117">4e4a95d</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/webpack/mini-css-extract-plugin/commit/24ab26b3335049308c02ff212f63a68c142207df"><code>24ab26b</code></a> chore(release): 2.10.0</li> <li><a href="https://github.com/webpack/mini-css-extract-plugin/commit/144de0456bb012eac0ce78023a0bc8cbfa9a4ca0"><code>144de04</code></a> test: fix (<a href="https://redirect.github.com/webpack/mini-css-extract-plugin/issues/1155">#1155</a>)</li> <li><a href="https://github.com/webpack/mini-css-extract-plugin/commit/4e4a95d16431bca442b7ac5d90c887142e3ce117"><code>4e4a95d</code></a> fix: prevent generation of a contentHash for a chunk when the set of css modu...</li> <li><a href="https://github.com/webpack/mini-css-extract-plugin/commit/54f775ddac6ea365b9023ab0624f8219695371b3"><code>54f775d</code></a> feat: respect <code>output.cssFilename</code> and <code>output.cssChunkFilename</code> (<a href="https://redirect.github.com/webpack/mini-css-extract-plugin/issues/1151">#1151</a>)</li> <li><a href="https://github.com/webpack/mini-css-extract-plugin/commit/bed1799c9b3ee7268de38bae3340f0db84e6aabc"><code>bed1799</code></a> test: fix (<a href="https://redirect.github.com/webpack/mini-css-extract-plugin/issues/1145">#1145</a>)</li> <li><a href="https://github.com/webpack/mini-css-extract-plugin/commit/220225c54cd6846c838cc3983b337e8fc335cb76"><code>220225c</code></a> chore: use correctl ink for css-minimizer (<a href="https://redirect.github.com/webpack/mini-css-extract-plugin/issues/1144">#1144</a>)</li> <li><a href="https://github.com/webpack/mini-css-extract-plugin/commit/8021d3d9f6b0287fa04f5e9a70f8ae844430b0c6"><code>8021d3d</code></a> chore: migrate branches and contrib to org (<a href="https://redirect.github.com/webpack/mini-css-extract-plugin/issues/1143">#1143</a>)</li> <li>See full diff in <a href="https://github.com/webpack/mini-css-extract-plugin/compare/v2.9.4...v2.10.0">compare view</a></li> </ul> </details> <br /> Updates `postcss-preset-env` from 10.6.1 to 11.1.1 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/csstools/postcss-plugins/blob/main/plugin-packs/postcss-preset-env/CHANGELOG.md">postcss-preset-env's changelog</a>.</em></p> <blockquote> <h3>11.1.1</h3> <p><em>January 15, 2026</em></p> <ul> <li>Updated <a href="https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-alpha-function"><code>@csstools/postcss-alpha-function</code></a> to <a href="https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-alpha-function/CHANGELOG.md#201"><code>2.0.1</code></a> (patch)</li> </ul> <h3>11.1.0</h3> <p><em>January 14, 2026</em></p> <ul> <li>Added <code>@csstools/postcss-mixins</code> <a href="https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-mixins#readme">Check the plugin README</a> for usage details.</li> <li>Updated <a href="https://github.com/csstools/cssdb"><code>cssdb</code></a> to <a href="https://github.com/csstools/cssdb/blob/main/CHANGELOG.md#870-january-14-2026"><code>8.7.0</code></a></li> </ul> <h3>11.0.1</h3> <p><em>January 14, 2026</em></p> <ul> <li>Updated <a href="https://github.com/csstools/postcss-plugins/tree/main/plugins/css-blank-pseudo"><code>css-blank-pseudo</code></a> to <a href="https://github.com/csstools/postcss-plugins/tree/main/plugins/css-blank-pseudo/CHANGELOG.md#801"><code>8.0.1</code></a> (patch)</li> </ul> <h3>11.0.0</h3> <p><em>January 14, 2026</em></p> <ul> <li>Updated: Support for Node <code>20.19.0</code> or later (major).</li> <li>Removed: <code>commonjs</code> API. In supported Node versions <code>require(esm)</code> will work without needing to make code changes.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/csstools/postcss-plugins/commits/HEAD/plugin-packs/postcss-preset-env">compare view</a></li> </ul> </details> <br /> Updates `stylelint` from 16.26.1 to 17.0.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/stylelint/stylelint/releases">stylelint's releases</a>.</em></p> <blockquote> <h2>17.0.0</h2> <p>It contains 14 breaking changes, which we've detailed in the <a href="https://github.com/stylelint/stylelint/blob/main/docs/migration-guide/to-17.md">migrating to <code>17.0.0</code> guide</a>. Additionally, it adds 3 options to the rules and fixes 9 bugs. We've also released compatible versions of our <a href="https://www.npmjs.com/package/stylelint-config-standard">shared config</a>, <a href="https://marketplace.visualstudio.com/items?itemName=stylelint.vscode-stylelint">Visual Studio Code extension</a>, <a href="https://www.npmjs.com/package/stylelint-test-rule-node">Node.js Rule Tester</a> and <a href="https://www.npmjs.com/package/jest-preset-stylelint">Jest preset</a>.</p> <ul> <li>Removed: CommonJS Node.js API (<a href="https://redirect.github.com/stylelint/stylelint/issues/8859">#8859</a>) (<a href="https://github.com/jeddy3"><code>@​jeddy3</code></a>).</li> <li>Removed: <code>output</code> property in the Node.js API returned resolved object (<a href="https://redirect.github.com/stylelint/stylelint/issues/8878">#8878</a>) (<a href="https://github.com/jeddy3"><code>@​jeddy3</code></a>).</li> <li>Removed: support for Node.js less than 20.19.0 (<a href="https://redirect.github.com/stylelint/stylelint/issues/8867">#8867</a>) (<a href="https://github.com/jeddy3"><code>@​jeddy3</code></a>).</li> <li>Removed: GitHub formatter (<a href="https://redirect.github.com/stylelint/stylelint/issues/8888">#8888</a>) (<a href="https://github.com/jeddy3"><code>@​jeddy3</code></a>).</li> <li>Removed: <code>resolveNestedSelectors</code> option from <code>selector-class-pattern</code> (<a href="https://redirect.github.com/stylelint/stylelint/issues/8931">#8931</a>) (<a href="https://github.com/jeddy3"><code>@​jeddy3</code></a>).</li> <li>Removed: <code>checkContextFunctionalPseudoClasses</code> option from <code>selector-max-id</code> (<a href="https://redirect.github.com/stylelint/stylelint/issues/8913">#8913</a>) (<a href="https://github.com/jeddy3"><code>@​jeddy3</code></a>).</li> <li>Changed: default <code>fix</code> mode to <code>strict</code> (<a href="https://redirect.github.com/stylelint/stylelint/issues/8889">#8889</a>) (<a href="https://github.com/jeddy3"><code>@​jeddy3</code></a>).</li> <li>Changed: <code>report</code> to be consistent and predictable in how it handles the provided position arguments (<a href="https://redirect.github.com/stylelint/stylelint/issues/8217">#8217</a>) (<a href="https://github.com/romainmenke"><code>@​romainmenke</code></a>).</li> <li>Changed: <code>selector-max-*</code> syntax rules for standard CSS nesting and modern functional pseudo-classes (<a href="https://redirect.github.com/stylelint/stylelint/issues/8913">#8913</a>) (<a href="https://github.com/jeddy3"><code>@​jeddy3</code></a>).</li> <li>Changed: <code>*-specificity</code> semantic rules for standard CSS nesting (<a href="https://redirect.github.com/stylelint/stylelint/issues/8913">#8913</a>) (<a href="https://github.com/jeddy3"><code>@​jeddy3</code></a>).</li> <li>Changed: <code>no-duplicate-selectors</code> and <code>selector-no-qualifying-type</code> for standard CSS nesting (<a href="https://redirect.github.com/stylelint/stylelint/issues/8913">#8913</a>) (<a href="https://github.com/jeddy3"><code>@​jeddy3</code></a>).</li> <li>Changed: <code>*-list</code> rules to have consistent behaviour for vendor prefixes and case (<a href="https://redirect.github.com/stylelint/stylelint/issues/8912">#8912</a>) (<a href="https://github.com/jeddy3"><code>@​jeddy3</code></a>).</li> <li>Changed: <code>*-no-vendor-prefix</code> rules to have consistent behaviour for their <code>ignore*: []</code> secondary options (<a href="https://redirect.github.com/stylelint/stylelint/issues/8924">#8924</a>) (<a href="https://github.com/jeddy3"><code>@​jeddy3</code></a>).</li> <li>Changed: <code>declaration-property-max-values</code> rule to have consistent behaviour for vendor prefixes (<a href="https://redirect.github.com/stylelint/stylelint/issues/8926">#8926</a>) (<a href="https://github.com/jeddy3"><code>@​jeddy3</code></a>).</li> <li>Added: <code>except: ["after-block"]</code> to <code>custom-property-empty-line-before</code> (<a href="https://redirect.github.com/stylelint/stylelint/issues/8921">#8921</a>) (<a href="https://github.com/kovsu"><code>@​kovsu</code></a>).</li> <li>Added: <code>except: ["after-block"]</code> to <code>declaration-empty-line-before</code> (<a href="https://redirect.github.com/stylelint/stylelint/issues/8910">#8910</a>) (<a href="https://github.com/kovsu"><code>@​kovsu</code></a>).</li> <li>Added: <code>ignoreSelectors: []</code> to <code>no-duplicate-selectors</code> (<a href="https://redirect.github.com/stylelint/stylelint/issues/8883">#8883</a>) (<a href="https://github.com/kovsu"><code>@​kovsu</code></a>).</li> <li>Fixed: Windows drive letter casing inconsistencies when matching patterns against file paths (<a href="https://redirect.github.com/stylelint/stylelint/issues/8941">#8941</a>) (<a href="https://github.com/adalinesimonian"><code>@​adalinesimonian</code></a>).</li> <li>Fixed: CLI help to include TypeScript config files (<a href="https://redirect.github.com/stylelint/stylelint/issues/8908">#8908</a>) (<a href="https://github.com/kovsu"><code>@​kovsu</code></a>).</li> <li>Fixed: <code>at-rule-descriptor-no-unknown</code> false positives for declarations within feature-value-blocks (<a href="https://redirect.github.com/stylelint/stylelint/issues/8868">#8868</a>) (<a href="https://github.com/kovsu"><code>@​kovsu</code></a>).</li> <li>Fixed: <code>declaration-block-no-redundant-longhand-properties</code> false negatives for short and long combinations (<a href="https://redirect.github.com/stylelint/stylelint/issues/8892">#8892</a>) (<a href="https://github.com/nathannewyen"><code>@​nathannewyen</code></a>).</li> <li>Fixed: <code>media-feature-name-no-unknown</code> false positives for namespaced dollar variables and range context queries (<a href="https://redirect.github.com/stylelint/stylelint/issues/8890">#8890</a>) (<a href="https://github.com/kovsu"><code>@​kovsu</code></a>).</li> <li>Fixed: <code>nesting-selector-no-missing-scoping-root</code> false positives for CSS-in-JS (<a href="https://redirect.github.com/stylelint/stylelint/issues/8905">#8905</a>) (<a href="https://github.com/kovsu"><code>@​kovsu</code></a>).</li> <li>Fixed: <code>no-invalid-position-declaration</code> false negatives for embedded blocks (<a href="https://redirect.github.com/stylelint/stylelint/issues/8907">#8907</a>) (<a href="https://github.com/kovsu"><code>@​kovsu</code></a>).</li> <li>Fixed: <code>selector-no-qualifying-type</code> false negatives for <code>:is/where()</code> (<a href="https://redirect.github.com/stylelint/stylelint/issues/8940">#8940</a>) (<a href="https://github.com/romainmenke"><code>@​romainmenke</code></a>).</li> <li>Fixed: <code>selector-type-no-unknown</code> false positives for MathML 4 tags (<a href="https://redirect.github.com/stylelint/stylelint/issues/8874">#8874</a>) (<a href="https://github.com/jeddy3"><code>@​jeddy3</code></a>).</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md">stylelint's changelog</a>.</em></p> <blockquote> <h2>17.0.0 - 2026-01-15</h2> <p>It contains 14 breaking changes, which we've detailed in the <a href="https://github.com/stylelint/stylelint/blob/main/docs/migration-guide/to-17.md">migrating to <code>17.0.0</code> guide</a>. Additionally, it adds 3 options to the rules and fixes 9 bugs. We've also released compatible versions of our <a href="https://www.npmjs.com/package/stylelint-config-standard">shared config</a>, <a href="https://marketplace.visualstudio.com/items?itemName=stylelint.vscode-stylelint">Visual Studio Code extension</a>, <a href="https://www.npmjs.com/package/stylelint-test-rule-node">Node.js Rule Tester</a> and <a href="https://www.npmjs.com/package/jest-preset-stylelint">Jest preset</a>.</p> <ul> <li>Removed: CommonJS Node.js API (<a href="https://redirect.github.com/stylelint/stylelint/pull/8859">#8859</a>) (<a href="https://github.com/jeddy3"><code>@​jeddy3</code></a>).</li> <li>Removed: <code>output</code> property in the Node.js API returned resolved object (<a href="https://redirect.github.com/stylelint/stylelint/pull/8878">#8878</a>) (<a href="https://github.com/jeddy3"><code>@​jeddy3</code></a>).</li> <li>Removed: support for Node.js less than 20.19.0 (<a href="https://redirect.github.com/stylelint/stylelint/pull/8867">#8867</a>) (<a href="https://github.com/jeddy3"><code>@​jeddy3</code></a>).</li> <li>Removed: GitHub formatter (<a href="https://redirect.github.com/stylelint/stylelint/pull/8888">#8888</a>) (<a href="https://github.com/jeddy3"><code>@​jeddy3</code></a>).</li> <li>Removed: <code>resolveNestedSelectors</code> option from <code>selector-class-pattern</code> (<a href="https://redirect.github.com/stylelint/stylelint/pull/8931">#8931</a>) (<a href="https://github.com/jeddy3"><code>@​jeddy3</code></a>).</li> <li>Removed: <code>checkContextFunctionalPseudoClasses</code> option from <code>selector-max-id</code> (<a href="https://redirect.github.com/stylelint/stylelint/pull/8913">#8913</a>) (<a href="https://github.com/jeddy3"><code>@​jeddy3</code></a>).</li> <li>Changed: default <code>fix</code> mode to <code>strict</code> (<a href="https://redirect.github.com/stylelint/stylelint/pull/8889">#8889</a>) (<a href="https://github.com/jeddy3"><code>@​jeddy3</code></a>).</li> <li>Changed: <code>report</code> to be consistent and predictable in how it handles the provided position arguments (<a href="https://redirect.github.com/stylelint/stylelint/pull/8217">#8217</a>) (<a href="https://github.com/romainmenke"><code>@​romainmenke</code></a>).</li> <li>Changed: <code>selector-max-*</code> syntax rules for standard CSS nesting and modern functional pseudo-classes (<a href="https://redirect.github.com/stylelint/stylelint/pull/8913">#8913</a>) (<a href="https://github.com/jeddy3"><code>@​jeddy3</code></a>).</li> <li>Changed: <code>*-specificity</code> semantic rules for standard CSS nesting (<a href="https://redirect.github.com/stylelint/stylelint/pull/8913">#8913</a>) (<a href="https://github.com/jeddy3"><code>@​jeddy3</code></a>).</li> <li>Changed: <code>no-duplicate-selectors</code> and <code>selector-no-qualifying-type</code> for standard CSS nesting (<a href="https://redirect.github.com/stylelint/stylelint/pull/8913">#8913</a>) (<a href="https://github.com/jeddy3"><code>@​jeddy3</code></a>).</li> <li>Changed: <code>*-list</code> rules to have consistent behaviour for vendor prefixes and case (<a href="https://redirect.github.com/stylelint/stylelint/pull/8912">#8912</a>) (<a href="https://github.com/jeddy3"><code>@​jeddy3</code></a>).</li> <li>Changed: <code>*-no-vendor-prefix</code> rules to have consistent behaviour for their <code>ignore*: []</code> secondary options (<a href="https://redirect.github.com/stylelint/stylelint/pull/8924">#8924</a>) (<a href="https://github.com/jeddy3"><code>@​jeddy3</code></a>).</li> <li>Changed: <code>declaration-property-max-values</code> rule to have consistent behaviour for vendor prefixes (<a href="https://redirect.github.com/stylelint/stylelint/pull/8926">#8926</a>) (<a href="https://github.com/jeddy3"><code>@​jeddy3</code></a>).</li> <li>Added: <code>except: ["after-block"]</code> to <code>custom-property-empty-line-before</code> (<a href="https://redirect.github.com/stylelint/stylelint/pull/8921">#8921</a>) (<a href="https://github.com/kovsu"><code>@​kovsu</code></a>).</li> <li>Added: <code>except: ["after-block"]</code> to <code>declaration-empty-line-before</code> (<a href="https://redirect.github.com/stylelint/stylelint/pull/8910">#8910</a>) (<a href="https://github.com/kovsu"><code>@​kovsu</code></a>).</li> <li>Added: <code>ignoreSelectors: []</code> to <code>no-duplicate-selectors</code> (<a href="https://redirect.github.com/stylelint/stylelint/pull/8883">#8883</a>) (<a href="https://github.com/kovsu"><code>@​kovsu</code></a>).</li> <li>Fixed: Windows drive letter casing inconsistencies when matching patterns against file paths (<a href="https://redirect.github.com/stylelint/stylelint/pull/8941">#8941</a>) (<a href="https://github.com/adalinesimonian"><code>@​adalinesimonian</code></a>).</li> <li>Fixed: CLI help to include TypeScript config files (<a href="https://redirect.github.com/stylelint/stylelint/pull/8908">#8908</a>) (<a href="https://github.com/kovsu"><code>@​kovsu</code></a>).</li> <li>Fixed: <code>at-rule-descriptor-no-unknown</code> false positives for declarations within feature-value-blocks (<a href="https://redirect.github.com/stylelint/stylelint/pull/8868">#8868</a>) (<a href="https://github.com/kovsu"><code>@​kovsu</code></a>).</li> <li>Fixed: <code>declaration-block-no-redundant-longhand-properties</code> false negatives for short and long combinations (<a href="https://redirect.github.com/stylelint/stylelint/pull/8892">#8892</a>) (<a href="https://github.com/nathannewyen"><code>@​nathannewyen</code></a>).</li> <li>Fixed: <code>media-feature-name-no-unknown</code> false positives for namespaced dollar variables and range context queries (<a href="https://redirect.github.com/stylelint/stylelint/pull/8890">#8890</a>) (<a href="https://github.com/kovsu"><code>@​kovsu</code></a>).</li> <li>Fixed: <code>nesting-selector-no-missing-scoping-root</code> false positives for CSS-in-JS (<a href="https://redirect.github.com/stylelint/stylelint/pull/8905">#8905</a>) (<a href="https://github.com/kovsu"><code>@​kovsu</code></a>).</li> <li>Fixed: <code>no-invalid-position-declaration</code> false negatives for embedded blocks (<a href="https://redirect.github.com/stylelint/stylelint/pull/8907">#8907</a>) (<a href="https://github.com/kovsu"><code>@​kovsu</code></a>).</li> <li>Fixed: <code>selector-no-qualifying-type</code> false negatives for <code>:is/where()</code> (<a href="https://redirect.github.com/stylelint/stylelint/pull/8940">#8940</a>) (<a href="https://github.com/romainmenke"><code>@​romainmenke</code></a>).</li> <li>Fixed: <code>selector-type-no-unknown</code> false positives for MathML 4 tags (<a href="https://redirect.github.com/stylelint/stylelint/pull/8874">#8874</a>) (<a href="https://github.com/jeddy3"><code>@​jeddy3</code></a>).</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/stylelint/stylelint/commit/a3e96bd1bd679fc0c70a87955a9e7f633c40b0ca"><code>a3e96bd</code></a> Release 17.0.0 (<a href="https://redirect.github.com/stylelint/stylelint/issues/8969">#8969</a>)</li> <li><a href="https://github.com/stylelint/stylelint/commit/4587f265ae5bdf04b702a38c42e92bdd3b73ea98"><code>4587f26</code></a> Revert "Add v17 branch to CI workflow" (<a href="https://redirect.github.com/stylelint/stylelint/issues/8952">#8952</a>)</li> <li><a href="https://github.com/stylelint/stylelint/commit/0eb7972faeac3d87e4cb4ca511a693e374c31d3c"><code>0eb7972</code></a> Revert "Change <code>target-branch</code> to <code>v17</code> in Dependabot config" (<a href="https://redirect.github.com/stylelint/stylelint/issues/8951">#8951</a>)</li> <li><a href="https://github.com/stylelint/stylelint/commit/44362b1ecfad69f3a3b2a27f7715ce432dd19801"><code>44362b1</code></a> Merge pull request <a href="https://redirect.github.com/stylelint/stylelint/issues/8870">#8870</a> from stylelint/v17</li> <li><a href="https://github.com/stylelint/stylelint/commit/71d330357f72c7c828e26caebb4fca49b1356f63"><code>71d3303</code></a> Revert "chore: bump version to 17.0.0" (<a href="https://redirect.github.com/stylelint/stylelint/issues/8917">#8917</a>)</li> <li><a href="https://github.com/stylelint/stylelint/commit/54716094881bd1b686ca238570599a9f50f3ecd2"><code>5471609</code></a> Use special <code>'module.exports'</code> export (<a href="https://redirect.github.com/stylelint/stylelint/issues/8967">#8967</a>)</li> <li><a href="https://github.com/stylelint/stylelint/commit/022924e467d711b6d245786ed14032796dd0138b"><code>022924e</code></a> Update <code>@csstools/*</code> (<a href="https://redirect.github.com/stylelint/stylelint/issues/8968">#8968</a>)</li> <li><a href="https://github.com/stylelint/stylelint/commit/62fb7c886a639911d521e55cdc2a57b9dbc358fd"><code>62fb7c8</code></a> Document extension in bug template (<a href="https://redirect.github.com/stylelint/stylelint/issues/8965">#8965</a>)</li> <li><a href="https://github.com/stylelint/stylelint/commit/252c1485c334c8f7ae83c71c5701c2061d695a82"><code>252c148</code></a> Bump the eslint group with 2 updates (<a href="https://redirect.github.com/stylelint/stylelint/issues/8963">#8963</a>)</li> <li><a href="https://github.com/stylelint/stylelint/commit/2d165c6e4df72d5e4da5567dad520b7313e04dc4"><code>2d165c6</code></a> Bump stylelint/.github/.github/workflows/call-release.yml from 0.5.0 to 0.5.1...</li> <li>Additional commits viewable in <a href="https://github.com/stylelint/stylelint/compare/16.26.1...17.0.0">compare view</a></li> </ul> </details> <br /> Updates `stylelint-config-recommended` from 17.0.0 to 18.0.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/stylelint/stylelint-config-recommended/relea... _Description has been truncated_ -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
