dependabot[bot] opened a new pull request, #5461:
URL: https://github.com/apache/myfaces-tobago/pull/5461

   Bumps [sass](https://github.com/sass/dart-sass) from 1.77.8 to 1.79.3.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/sass/dart-sass/releases";>sass's releases</a>.</em></p>
   <blockquote>
   <h2>Dart Sass 1.79.3</h2>
   <p>To install Sass 1.79.3, download one of the packages below and <a 
href="https://katiek2.github.io/path-doc/";>add it to your PATH</a>, or see <a 
href="https://sass-lang.com/install";>the Sass website</a> for full installation 
instructions.</p>
   <h1>Changes</h1>
   <ul>
   <li>Update the <code>$channel</code> parameter in the suggested replacement 
for <code>color.red()</code>, <code>color.green()</code>, 
<code>color.blue()</code>, <code>color.hue()</code>, 
<code>color.saturation()</code>, <code>color.lightness()</code>, 
<code>color.whiteness()</code>, and <code>color.blackness()</code> to use a 
quoted string.</li>
   </ul>
   <p>See the <a 
href="https://github.com/sass/dart-sass/blob/master/CHANGELOG.md#1793";>full 
changelog</a> for changes in earlier releases.</p>
   <h2>Dart Sass 1.79.2</h2>
   <p>To install Sass 1.79.2, download one of the packages below and <a 
href="https://katiek2.github.io/path-doc/";>add it to your PATH</a>, or see <a 
href="https://sass-lang.com/install";>the Sass website</a> for full installation 
instructions.</p>
   <h1>Changes</h1>
   <ul>
   <li>
   <p>Add a <code>$space</code> parameter to the suggested replacement for 
<code>color.red()</code>, <code>color.green()</code>, 
<code>color.blue()</code>, <code>color.hue()</code>, 
<code>color.saturation()</code>, <code>color.lightness()</code>, 
<code>color.whiteness()</code>, and <code>color.blackness()</code>.</p>
   </li>
   <li>
   <p>Update deprecation warnings for the legacy JS API to include a link to <a 
href="https://sass-lang.com/d/legacy-js-api";>relevant documentation</a>.</p>
   </li>
   </ul>
   <p>See the <a 
href="https://github.com/sass/dart-sass/blob/master/CHANGELOG.md#1792";>full 
changelog</a> for changes in earlier releases.</p>
   <h2>Dart Sass 1.79.1</h2>
   <p>To install Sass 1.79.1, download one of the packages below and <a 
href="https://katiek2.github.io/path-doc/";>add it to your PATH</a>, or see <a 
href="https://sass-lang.com/install";>the Sass website</a> for full installation 
instructions.</p>
   <h1>Changes</h1>
   <ul>
   <li>No user-visible changes.</li>
   </ul>
   <p>See the <a 
href="https://github.com/sass/dart-sass/blob/master/CHANGELOG.md#1791";>full 
changelog</a> for changes in earlier releases.</p>
   <h2>Dart Sass 1.78.0</h2>
   <p>To install Sass 1.78.0, download one of the packages below and <a 
href="https://katiek2.github.io/path-doc/";>add it to your PATH</a>, or see <a 
href="https://sass-lang.com/install";>the Sass website</a> for full installation 
instructions.</p>
   <h1>Changes</h1>
   <ul>
   <li>The <code>meta.feature-exists</code> function is now deprecated. This 
deprecation is named <code>feature-exists</code>.</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/sass/dart-sass/blob/main/CHANGELOG.md";>sass's 
changelog</a>.</em></p>
   <blockquote>
   <h2>1.79.3</h2>
   <ul>
   <li>Update the <code>$channel</code> parameter in the suggested replacement 
for
   <code>color.red()</code>, <code>color.green()</code>, 
<code>color.blue()</code>, <code>color.hue()</code>,
   <code>color.saturation()</code>, <code>color.lightness()</code>, 
<code>color.whiteness()</code>, and
   <code>color.blackness()</code> to use a quoted string.</li>
   </ul>
   <h2>1.79.2</h2>
   <ul>
   <li>
   <p>Add a <code>$space</code> parameter to the suggested replacement for 
<code>color.red()</code>,
   <code>color.green()</code>, <code>color.blue()</code>, 
<code>color.hue()</code>, <code>color.saturation()</code>,
   <code>color.lightness()</code>, <code>color.whiteness()</code>, and 
<code>color.blackness()</code>.</p>
   </li>
   <li>
   <p>Update deprecation warnings for the legacy JS API to include a link to
   <a href="https://sass-lang.com/d/legacy-js-api";>relevant 
documentation</a>.</p>
   </li>
   </ul>
   <h2>1.79.1</h2>
   <ul>
   <li>No user-visible changes.</li>
   </ul>
   <h2>1.79.0</h2>
   <ul>
   <li>
   <p><strong>Breaking change</strong>: Passing a number with unit 
<code>%</code> to the <code>$alpha</code> parameter
   of <code>color.change()</code>, <code>color.adjust()</code>, 
<code>change-color()</code>, and <code>adjust-color()</code>
   is now interpreted as a percentage, instead of ignoring the unit. For 
example,
   <code>color.change(red, $alpha: 50%)</code> now returns <code>rgb(255 0 0 / 
0.5)</code>.</p>
   </li>
   <li>
   <p><strong>Potentially breaking compatibility fix</strong>: Sass no longer 
rounds RGB channels
   to the nearest integer. This means that, for example, <code>rgb(0 0 1) != 
rgb(0 0 0.6)</code>. This matches the latest version of the CSS spec and 
browser behavior.</p>
   </li>
   <li>
   <p><strong>Potentially breaking compatibility fix</strong>: Passing large 
positive or negative
   values to <code>color.adjust()</code> can now cause a color's channels to go 
outside that
   color's gamut. In most cases this will currently be clipped by the browser 
and
   end up showing the same color as before, but once browsers implement gamut
   mapping it may produce a different result.</p>
   </li>
   <li>
   <p>Add support for CSS Color Level 4 [color spaces]. Each color value now 
tracks
   its color space along with the values of each channel in that color space.
   There are two general principles to keep in mind when dealing with new color
   spaces:</p>
   <ol>
   <li>
   <p>With the exception of legacy color spaces (<code>rgb</code>, 
<code>hsl</code>, and <code>hwb</code>), colors
   will always be emitted in the color space they were defined in unless
   they're explicitly converted.</p>
   </li>
   <li>
   <p>The <code>color.to-space()</code> function is the only way to convert a 
color to
   another color space. Some built-in functions may do operations in a</p>
   </li>
   </ol>
   </li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/sass/dart-sass/commit/b85ef9c89f23305617dc9f63dad64c874262d63c";><code>b85ef9c</code></a>
 Quote <code>$channel</code> in channel function replacement suggestions (<a 
href="https://redirect.github.com/sass/dart-sass/issues/2361";>#2361</a>)</li>
   <li><a 
href="https://github.com/sass/dart-sass/commit/fa4827f4a42a632821211be07e45b6ac7304189b";><code>fa4827f</code></a>
 Add documentation link to legacy-js-api warning (<a 
href="https://redirect.github.com/sass/dart-sass/issues/2355";>#2355</a>)</li>
   <li><a 
href="https://github.com/sass/dart-sass/commit/7c3f5e2489598eeebe1acb4587e4c30415038f26";><code>7c3f5e2</code></a>
 Add a <code>$space</code> parameter to the channel function deprecation (<a 
href="https://redirect.github.com/sass/dart-sass/issues/2354";>#2354</a>)</li>
   <li><a 
href="https://github.com/sass/dart-sass/commit/5fa04d3dbcdbf0911506d11e1847ac64f2fc9f7d";><code>5fa04d3</code></a>
 Fix sass-parser publishing (<a 
href="https://redirect.github.com/sass/dart-sass/issues/2349";>#2349</a>)</li>
   <li><a 
href="https://github.com/sass/dart-sass/commit/d740d02e10f402f225b77781e4d946dce4c95a10";><code>d740d02</code></a>
 Emit deprecation warnings for the legacy JS API (<a 
href="https://redirect.github.com/sass/dart-sass/issues/2343";>#2343</a>)</li>
   <li><a 
href="https://github.com/sass/dart-sass/commit/a957eeadd1a8b4a2bebfd3ab4046be457d0d37a4";><code>a957eea</code></a>
 Bump chokidar to v4 (<a 
href="https://redirect.github.com/sass/dart-sass/issues/2347";>#2347</a>)</li>
   <li><a 
href="https://github.com/sass/dart-sass/commit/aa35aa20dd7b2c6f45e8f31bea18c4b3ac4f0223";><code>aa35aa2</code></a>
 Bump bufbuild/buf-setup-action in /.github/util/initialize (<a 
href="https://redirect.github.com/sass/dart-sass/issues/2346";>#2346</a>)</li>
   <li><a 
href="https://github.com/sass/dart-sass/commit/f826ed2e543bb5685a901a2ac7c89daf0414afe3";><code>f826ed2</code></a>
 Stop emitting <code>mixed-decls</code> in a bunch of unnecessary cases (<a 
href="https://redirect.github.com/sass/dart-sass/issues/2342";>#2342</a>)</li>
   <li><a 
href="https://github.com/sass/dart-sass/commit/2f0d0daaf47db275750e098c3e90818f74ec8a85";><code>2f0d0da</code></a>
 Merge pull request <a 
href="https://redirect.github.com/sass/dart-sass/issues/2341";>#2341</a> from 
sass/feature.color-4</li>
   <li><a 
href="https://github.com/sass/dart-sass/commit/de181d91922ff7bf7e05a5a474be8e67ce90c430";><code>de181d9</code></a>
 Poke CI</li>
   <li>Additional commits viewable in <a 
href="https://github.com/sass/dart-sass/compare/1.77.8...1.79.3";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=sass&package-manager=npm_and_yarn&previous-version=1.77.8&new-version=1.79.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   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 merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show <dependency name> ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   </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: dev-unsubscr...@myfaces.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to