You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@myfaces.apache.org by GitBox <gi...@apache.org> on 2022/10/01 16:01:42 UTC

[GitHub] [myfaces-tobago] dependabot[bot] opened a new pull request, #3291: build(deps-dev): bump sass from 1.54.9 to 1.55.0 in /tobago-example/tobago-example-demo

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

   Bumps [sass](https://github.com/sass/dart-sass) from 1.54.9 to 1.55.0.
   <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.55.0</h2>
   <p>To install Sass 1.55.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>
   <p><strong>Potentially breaking bug fix:</strong> Sass numbers are now universally stored as 64-bit floating-point numbers, rather than sometimes being stored as integers. This will generally make arithmetic with very large numbers more reliable and more consistent across platforms, but it does mean that numbers between nine quadrillion and nine quintillion will no longer be represented with full accuracy when compiling Sass on the Dart VM.</p>
   </li>
   <li>
   <p><strong>Potentially breaking bug fix:</strong> Sass equality is now properly <a href="https://en.wikipedia.org/wiki/Transitive_property">transitive</a>. Two numbers are now considered equal (after doing unit conversions) if they round to the same <code>1e-11</code>th. Previously, numbers were considered equal if they were within <code>1e-11</code> of one another, which led to some circumstances where <code>$a == $b</code> and <code>$b == $c</code> but <code>$a != $b</code>.</p>
   </li>
   </ul>
   <ul>
   <li>
   <p><strong>Potentially breaking bug fix:</strong> Various functions in <code>sass:math</code> no longer treat floating-point numbers that are very close (but not identical) to integers as integers. Instead, these functions now follow the floating-point specification exactly. For example, <code>math.pow(0.000000000001, -1)</code> now returns <code>1000000000000</code> instead of <code>Infinity</code>.</p>
   </li>
   <li>
   <p>Emit a deprecation warning for <code>$a -$b</code> and <code>$a +$b</code>, since these look like they could be unary operations but they're actually parsed as binary operations. Either explicitly write <code>$a - $b</code> or <code>$a (-$b)</code>. See <a href="https://sass-lang.com/d/strict-unary">https://sass-lang.com/d/strict-unary</a> for more details.</p>
   </li>
   </ul>
   <h3>Dart API</h3>
   <ul>
   <li>
   <p>Add an optional <code>argumentName</code> parameter to <code>SassScriptException()</code> to make it easier to throw exceptions associated with particular argument names.</p>
   </li>
   <li>
   <p>Most APIs that previously returned <code>num</code> now return <code>double</code>. All APIs continue to <em>accept</em> <code>num</code>, although in Dart 2.0.0 these APIs will be changed to accept only <code>double</code>.</p>
   </li>
   </ul>
   <h3>JS API</h3>
   <ul>
   <li>Fix a bug in which certain warning spans would not have their properties accessible by the JS API.</li>
   </ul>
   <p>See the <a href="https://github.com/sass/dart-sass/blob/master/CHANGELOG.md#1550">full changelog</a> for changes in earlier releases.</p>
   </blockquote>
   </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.55.0</h2>
   <ul>
   <li>
   <p><strong>Potentially breaking bug fix:</strong> Sass numbers are now universally stored as
   64-bit floating-point numbers, rather than sometimes being stored as integers.
   This will generally make arithmetic with very large numbers more reliable and
   more consistent across platforms, but it does mean that numbers between nine
   quadrillion and nine quintillion will no longer be represented with full
   accuracy when compiling Sass on the Dart VM.</p>
   </li>
   <li>
   <p><strong>Potentially breaking bug fix:</strong> Sass equality is now properly <a href="https://en.wikipedia.org/wiki/Transitive_property">transitive</a>.
   Two numbers are now considered equal (after doing unit conversions) if they
   round to the same <code>1e-11</code>th. Previously, numbers were considered equal if they
   were within <code>1e-11</code> of one another, which led to some circumstances where <code>$a == $b</code> and <code>$b == $c</code> but <code>$a != $b</code>.</p>
   </li>
   </ul>
   <ul>
   <li>
   <p><strong>Potentially breaking bug fix:</strong> Various functions in <code>sass:math</code> no longer
   treat floating-point numbers that are very close (but not identical) to
   integers as integers. Instead, these functions now follow the floating-point
   specification exactly. For example, <code>math.pow(0.000000000001, -1)</code> now returns
   <code>1000000000000</code> instead of <code>Infinity</code>.</p>
   </li>
   <li>
   <p>Emit a deprecation warning for <code>$a -$b</code> and <code>$a +$b</code>, since these look like
   they could be unary operations but they're actually parsed as binary
   operations. Either explicitly write <code>$a - $b</code> or <code>$a (-$b)</code>. See
   <a href="https://sass-lang.com/d/strict-unary">https://sass-lang.com/d/strict-unary</a> for more details.</p>
   </li>
   </ul>
   <h3>Dart API</h3>
   <ul>
   <li>
   <p>Add an optional <code>argumentName</code> parameter to <code>SassScriptException()</code> to make it
   easier to throw exceptions associated with particular argument names.</p>
   </li>
   <li>
   <p>Most APIs that previously returned <code>num</code> now return <code>double</code>. All APIs
   continue to <em>accept</em> <code>num</code>, although in Dart 2.0.0 these APIs will be changed
   to accept only <code>double</code>.</p>
   </li>
   </ul>
   <h3>JS API</h3>
   <ul>
   <li>Fix a bug in which certain warning spans would not have their properties
   accessible by the JS API.</li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a href="https://github.com/sass/dart-sass/commit/a65e504b484eeacfff5219a24ad4b89e5ee1f87f"><code>a65e504</code></a> Release 1.55.0 (<a href="https://github-redirect.dependabot.com/sass/dart-sass/issues/1806">#1806</a>)</li>
   <li><a href="https://github.com/sass/dart-sass/commit/103cb19b41a44d9df9d100d920376cb633e962bb"><code>103cb19</code></a> Consistently use floating-point numbers everywhere (<a href="https://github-redirect.dependabot.com/sass/dart-sass/issues/1802">#1802</a>)</li>
   <li><a href="https://github.com/sass/dart-sass/commit/90b6190027088dc58c9413cf1ed25550a268b1fe"><code>90b6190</code></a> Add a deprecation warning for strict unary operations (<a href="https://github-redirect.dependabot.com/sass/dart-sass/issues/1800">#1800</a>)</li>
   <li><a href="https://github.com/sass/dart-sass/commit/db1e1261bd183ec74ee4352083724c597670b658"><code>db1e126</code></a> Fix bug in JS MultiSpan (<a href="https://github-redirect.dependabot.com/sass/dart-sass/issues/1801">#1801</a>)</li>
   <li><a href="https://github.com/sass/dart-sass/commit/5466dd76a2ac2a68034de20386807ab1f60b0ecb"><code>5466dd7</code></a> Give SassScriptException a name parameter (<a href="https://github-redirect.dependabot.com/sass/dart-sass/issues/1798">#1798</a>)</li>
   <li><a href="https://github.com/sass/dart-sass/commit/e2f97055db1ca938d335f990337408a7796c48da"><code>e2f9705</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/sass/dart-sass/issues/1795">#1795</a> from stof/upgrade_dependencies</li>
   <li><a href="https://github.com/sass/dart-sass/commit/ba2971c61aed524e2982d89c50a74495cf229b1f"><code>ba2971c</code></a> Disable the prefer_interpolation_to_compose_strings rule</li>
   <li><a href="https://github.com/sass/dart-sass/commit/19ef66f510b3b006eb233b5dd1782f720a97a182"><code>19ef66f</code></a> Remove useless ignore rules</li>
   <li><a href="https://github.com/sass/dart-sass/commit/8480259d6ca29bcea85b0c04eb14af274c6bc66b"><code>8480259</code></a> Avoid using private types in public APIs</li>
   <li><a href="https://github.com/sass/dart-sass/commit/a705445f0d84871e175a5f0b617bd5f9aedb941e"><code>a705445</code></a> Avoid null check on potentially nullable type parameter</li>
   <li>Additional commits viewable in <a href="https://github.com/sass/dart-sass/compare/1.54.9...1.55.0">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.54.9&new-version=1.55.0)](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 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-unsubscribe@myfaces.apache.org

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