dependabot[bot] opened a new pull request, #1543: URL: https://github.com/apache/airflow-site/pull/1543
Bumps the npm-dependencies group with 2 updates in the /landing-pages directory: [postcss](https://github.com/postcss/postcss) and [sass-loader](https://github.com/webpack/sass-loader). Updates `postcss` from 8.5.14 to 8.5.15 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/postcss/postcss/releases">postcss's releases</a>.</em></p> <blockquote> <h2>8.5.15</h2> <ul> <li>Fixed declaration parsing performance (by <a href="https://github.com/homanp"><code>@homanp</code></a>).</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/postcss/postcss/blob/main/CHANGELOG.md">postcss's changelog</a>.</em></p> <blockquote> <h2>8.5.15</h2> <ul> <li>Fixed declaration parsing performance (by <a href="https://github.com/homanp"><code>@homanp</code></a>).</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/postcss/postcss/commit/eae46db765d752cf8f40c4fa2b0b85030079c43d"><code>eae46db</code></a> Release 8.5.15 version</li> <li><a href="https://github.com/postcss/postcss/commit/79508ffa59e42c02056aca61b88bc393c8b516c4"><code>79508ff</code></a> Update CI actions</li> <li><a href="https://github.com/postcss/postcss/commit/b128e2131288a411c6e28071d0929542c49e74eb"><code>b128e21</code></a> Speed up declaration parsing by avoiding creating new array on each token</li> <li><a href="https://github.com/postcss/postcss/commit/9825dca02c33cf610e2a842be767468b67fbecf9"><code>9825dca</code></a> Fix code format</li> <li><a href="https://github.com/postcss/postcss/commit/55789c865281e2be194fa5b4e41dd046be3a2307"><code>55789c8</code></a> Update dependencies</li> <li><a href="https://github.com/postcss/postcss/commit/84fbbe9009cb3cc3bbb4cc3a9b65d468f4844d95"><code>84fbbe9</code></a> Install older pnpm action for old Node.js</li> <li><a href="https://github.com/postcss/postcss/commit/9f860bd78ec1dbc4f0ae72d693f03f956baa38cb"><code>9f860bd</code></a> Revert pnpm action for old Node.js</li> <li><a href="https://github.com/postcss/postcss/commit/08771986d47359545f502e009763e223b66bfcf6"><code>0877198</code></a> Update CI actions</li> <li><a href="https://github.com/postcss/postcss/commit/b2d1a335cea818f8b27e5cfb90147648afe3e582"><code>b2d1a33</code></a> Fix linter warnings</li> <li><a href="https://github.com/postcss/postcss/commit/0700dac92283bc259977dff2743ca74a00f58267"><code>0700dac</code></a> Merge pull request <a href="https://redirect.github.com/postcss/postcss/issues/2088">#2088</a> from rootvector2/add-oss-fuzz-harness</li> <li>Additional commits viewable in <a href="https://github.com/postcss/postcss/compare/8.5.14...8.5.15">compare view</a></li> </ul> </details> <br /> Updates `sass-loader` from 16.0.8 to 17.0.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/webpack/sass-loader/releases">sass-loader's releases</a>.</em></p> <blockquote> <h2>v17.0.0</h2> <h3>Major Changes</h3> <ul> <li> <p>Add <code>"auto"</code> to the <code>api</code> option and make it the default. When the Sass implementation supports the modern compiler, <code>"auto"</code> enables it and reuses a single long-running compiler across files, which significantly improves build performance; otherwise it falls back to the <code>modern</code> API. (by <a href="https://github.com/alexander-akait"><code>@alexander-akait</code></a> in <a href="https://redirect.github.com/webpack/sass-loader/pull/1319">#1319</a>)</p> </li> <li> <p>Remove <code>node-sass</code> support. (by <a href="https://github.com/alexander-akait"><code>@alexander-akait</code></a> in <a href="https://redirect.github.com/webpack/sass-loader/pull/1316">#1316</a>)</p> </li> <li> <p>Minimum supported NodeJS version is <code>22.11.0</code>. (by <a href="https://github.com/alexander-akait"><code>@alexander-akait</code></a> in <a href="https://redirect.github.com/webpack/sass-loader/pull/1318">#1318</a>)</p> </li> <li> <p>Convert source to native ECMAScript modules. The package now declares <code>"type": "module"</code> and exposes both an ESM and a CommonJS build via the <code>exports</code> field. CommonJS consumers continue to work via <code>require</code>, and ESM consumers can now <code>import</code> the loader directly. (by <a href="https://github.com/alexander-akait"><code>@alexander-akait</code></a> in <a href="https://redirect.github.com/webpack/sass-loader/pull/1322">#1322</a>)</p> </li> <li> <p>Remove legacy Sass JS API support. (by <a href="https://github.com/alexander-akait"><code>@alexander-akait</code></a> in <a href="https://redirect.github.com/webpack/sass-loader/pull/1316">#1316</a>)</p> </li> </ul> <h3>Minor Changes</h3> <ul> <li>Added types. (by <a href="https://github.com/alexander-akait"><code>@alexander-akait</code></a> in <a href="https://redirect.github.com/webpack/sass-loader/pull/1312">#1312</a>)</li> </ul> <p>All notable changes to this project will be documented in this file. See <a href="https://github.com/conventional-changelog/standard-version">standard-version</a> for commit guidelines.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/webpack/sass-loader/blob/main/CHANGELOG.md">sass-loader's changelog</a>.</em></p> <blockquote> <h2>17.0.0</h2> <h3>Major Changes</h3> <ul> <li> <p>Add <code>"auto"</code> to the <code>api</code> option and make it the default. When the Sass implementation supports the modern compiler, <code>"auto"</code> enables it and reuses a single long-running compiler across files, which significantly improves build performance; otherwise it falls back to the <code>modern</code> API. (by <a href="https://github.com/alexander-akait"><code>@alexander-akait</code></a> in <a href="https://redirect.github.com/webpack/sass-loader/pull/1319">#1319</a>)</p> </li> <li> <p>Remove <code>node-sass</code> support. (by <a href="https://github.com/alexander-akait"><code>@alexander-akait</code></a> in <a href="https://redirect.github.com/webpack/sass-loader/pull/1316">#1316</a>)</p> </li> <li> <p>Minimum supported NodeJS version is <code>22.11.0</code>. (by <a href="https://github.com/alexander-akait"><code>@alexander-akait</code></a> in <a href="https://redirect.github.com/webpack/sass-loader/pull/1318">#1318</a>)</p> </li> <li> <p>Convert source to native ECMAScript modules. The package now declares <code>"type": "module"</code> and exposes both an ESM and a CommonJS build via the <code>exports</code> field. CommonJS consumers continue to work via <code>require</code>, and ESM consumers can now <code>import</code> the loader directly. (by <a href="https://github.com/alexander-akait"><code>@alexander-akait</code></a> in <a href="https://redirect.github.com/webpack/sass-loader/pull/1322">#1322</a>)</p> </li> <li> <p>Remove legacy Sass JS API support. (by <a href="https://github.com/alexander-akait"><code>@alexander-akait</code></a> in <a href="https://redirect.github.com/webpack/sass-loader/pull/1316">#1316</a>)</p> </li> </ul> <h3>Minor Changes</h3> <ul> <li>Added types. (by <a href="https://github.com/alexander-akait"><code>@alexander-akait</code></a> in <a href="https://redirect.github.com/webpack/sass-loader/pull/1312">#1312</a>)</li> </ul> <p>All notable changes to this project will be documented in this file. See <a href="https://github.com/conventional-changelog/standard-version">standard-version</a> for commit guidelines.</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/webpack/sass-loader/commit/3b00be7bd3b3cba36875df98fcb43f14c028e5e8"><code>3b00be7</code></a> chore(release): new release (<a href="https://redirect.github.com/webpack/sass-loader/issues/1317">#1317</a>)</li> <li><a href="https://github.com/webpack/sass-loader/commit/8e7c6bdfd6cd22118783333f39bdd8d9e9bb6bcc"><code>8e7c6bd</code></a> chore(deps): update (<a href="https://redirect.github.com/webpack/sass-loader/issues/1323">#1323</a>)</li> <li><a href="https://github.com/webpack/sass-loader/commit/a4e28f36b7d64ce8d672a6f849ae74ae3e8e8096"><code>a4e28f3</code></a> feat: add JSDoc type-checking and declaration emission (<a href="https://redirect.github.com/webpack/sass-loader/issues/1312">#1312</a>)</li> <li><a href="https://github.com/webpack/sass-loader/commit/a3db95ba3a4e66633c10b8177083140f036c9ac6"><code>a3db95b</code></a> feat!: convert source to native ES modules with dual ESM/CJS build (<a href="https://redirect.github.com/webpack/sass-loader/issues/1322">#1322</a>)</li> <li><a href="https://github.com/webpack/sass-loader/commit/8ac53f91d50357a436b364c68bd21b55c04d04c2"><code>8ac53f9</code></a> test: migrate from jest to node:test runner (<a href="https://redirect.github.com/webpack/sass-loader/issues/1321">#1321</a>)</li> <li><a href="https://github.com/webpack/sass-loader/commit/90a91705dc8ff00faec2971c3559c1794e03186a"><code>90a9170</code></a> feat: add api "auto" and use it by default (<a href="https://redirect.github.com/webpack/sass-loader/issues/1319">#1319</a>)</li> <li><a href="https://github.com/webpack/sass-loader/commit/07c921be1b4a4b1888cb6f758f21243191ff166d"><code>07c921b</code></a> feat!: minimum supported NodeJS version is <code>22.11.0</code> (<a href="https://redirect.github.com/webpack/sass-loader/issues/1318">#1318</a>)</li> <li><a href="https://github.com/webpack/sass-loader/commit/cf34e2b87fc1960bdd8654540852e7015231d8bf"><code>cf34e2b</code></a> feat!: minimum supported NodeJS version is <code>22.11.0</code></li> <li><a href="https://github.com/webpack/sass-loader/commit/ce46d50634e86c6a87743a791ca0726f47eb2b21"><code>ce46d50</code></a> ci: add changelog release action</li> <li><a href="https://github.com/webpack/sass-loader/commit/6fddce2839d83bfc2f48caf765f897056826d7cb"><code>6fddce2</code></a> ci: lock actions (<a href="https://redirect.github.com/webpack/sass-loader/issues/1315">#1315</a>)</li> <li>Additional commits viewable in <a href="https://github.com/webpack/sass-loader/compare/v16.0.8...v17.0.0">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by <a href="https://www.npmjs.com/~GitHub%20Actions">GitHub Actions</a>, a new releaser for sass-loader since your current version.</p> </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> -- 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]
