Bump sass from 1.55.0 to 1.56.0 #602

Merged
dependabot[bot] merged 1 commit from dependabot/npm_and_yarn/develop/sass-1.56.0 into develop 2022-11-04 05:06:10 +01:00
dependabot[bot] commented 2022-11-04 05:03:21 +01:00 (Migrated from github.com)

Bumps sass from 1.55.0 to 1.56.0.

Release notes

Sourced from sass's releases.

Dart Sass 1.56.0

To install Sass 1.56.0, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • Potentially breaking change: To match the CSS spec, SassScript expressions beginning with not or ( are no longer supported at the beginning of parenthesized sections of media queries. For example,

    @media (width >= 500px) and (not (grid))
    

    will now be emitted unchanged, instead of producing

    @media (width >= 500px) and (false)
    

    See the Sass website for details.

  • Potentially breaking bug fix: Angle units like rad or turn are now properly converted to equivalent deg values for hsl(), hsla(), adjust-hue(), color.adjust(), and color.change().

    See the Sass website for details.

  • Fix indentation for selectors that span multiple lines in a @media query.

  • Emit a deprecation warning when passing $alpha values with units to color.adjust() or color.change(). This will be an error in Dart Sass 2.0.0.

    See the Sass website for details.

  • Emit a deprecation warning when passing a $weight value with no units or with units other than % to color.mix(). This will be an error in Dart Sass 2.0.0.

    See the Sass website for details.

  • Emit a deprecation warning when passing $n values with units to list.nth() or list.set-nth(). This will be an error in Dart Sass 2.0.0.

    See the Sass website for details.

  • Improve existing deprecation warnings to wrap /-as-division suggestions in calc() expressions.

  • Properly mark the warning for passing numbers with units to random() as a deprecation warning.

  • Fix a bug where @extend could behave unpredicatably when used along with meta.load-css() and shared modules that contained no CSS themselves but loaded CSS from other modules.

Dart API

  • Emit a deprecation warning when passing a sassIndex with units to Value.sassIndexToListIndex(). This will be an error in Dart Sass 2.0.0.

... (truncated)

Changelog

Sourced from sass's changelog.

1.56.0

  • Potentially breaking change: To match the CSS spec, SassScript expressions beginning with not or ( are no longer supported at the beginning of parenthesized sections of media queries. For example,

    @media (width >= 500px) and (not (grid))
    

    will now be emitted unchanged, instead of producing

    @media (width >= 500px) and (false)
    

    See the Sass website for details.

  • Potentially breaking bug fix: Angle units like rad or turn are now properly converted to equivalent deg values for hsl(), hsla(), adjust-hue(), color.adjust(), and color.change().

    See the Sass website for details.

  • Fix indentation for selectors that span multiple lines in a @media query.

  • Emit a deprecation warning when passing $alpha values with units to color.adjust() or color.change(). This will be an error in Dart Sass 2.0.0.

    See the Sass website for details.

  • Emit a deprecation warning when passing a $weight value with no units or with units other than % to color.mix(). This will be an error in Dart Sass 2.0.0.

    See the Sass website for details.

  • Emit a deprecation warning when passing $n values with units to list.nth() or list.set-nth(). This will be an error in Dart Sass 2.0.0.

    See the Sass website for details.

  • Improve existing deprecation warnings to wrap /-as-division suggestions in calc() expressions.

... (truncated)

Commits
  • f3293db JS API: Validate that importer result 'contents' is a string and improve Ar...
  • 00c3517 Make `cloneCss() clone modules that transitively contain CSS (#1824)
  • 44d6bb6 Add full support for Media Queries 4 (#1822)
  • 558640b Support all angle units in color functions (#1818)
  • dd9e3cc Implement deprecations for strict function units (#1817)
  • 655b55c Indent comma-separated multiline selectors inside @​media queries (#1814)
  • 6e670ef Insert explicit type arguments where types could not be inferred. (#1813)
  • See full diff in compare view

Dependabot compatibility score

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 will merge this PR once CI passes on it, as requested by @Serraniel.


Dependabot commands and options

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)
Bumps [sass](https://github.com/sass/dart-sass) from 1.55.0 to 1.56.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.56.0</h2> <p>To install Sass 1.56.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 change:</strong> To match the CSS spec, SassScript expressions beginning with <code>not</code> or <code>(</code> are no longer supported at the beginning of parenthesized sections of media queries. For example,</p> <pre lang="scss"><code>@media (width &gt;= 500px) and (not (grid)) </code></pre> <p>will now be emitted unchanged, instead of producing</p> <pre lang="scss"><code>@media (width &gt;= 500px) and (false) </code></pre> <p>See <a href="https://sass-lang.com/d/media-logic">the Sass website</a> for details.</p> </li> <li> <p><strong>Potentially breaking bug fix:</strong> Angle units like <code>rad</code> or <code>turn</code> are now properly converted to equivalent <code>deg</code> values for <code>hsl()</code>, <code>hsla()</code>, <code>adjust-hue()</code>, <code>color.adjust()</code>, and <code>color.change()</code>.</p> <p>See <a href="https://sass-lang.com/d/function-units#hue">the Sass website</a> for details.</p> </li> <li> <p>Fix indentation for selectors that span multiple lines in a <code>@media</code> query.</p> </li> <li> <p>Emit a deprecation warning when passing <code>$alpha</code> values with units to <code>color.adjust()</code> or <code>color.change()</code>. This will be an error in Dart Sass 2.0.0.</p> <p>See <a href="https://sass-lang.com/d/function-units#alpha">the Sass website</a> for details.</p> </li> <li> <p>Emit a deprecation warning when passing a <code>$weight</code> value with no units or with units other than <code>%</code> to <code>color.mix()</code>. This will be an error in Dart Sass 2.0.0.</p> <p>See <a href="https://sass-lang.com/d/function-units#weight">the Sass website</a> for details.</p> </li> <li> <p>Emit a deprecation warning when passing <code>$n</code> values with units to <code>list.nth()</code> or <code>list.set-nth()</code>. This will be an error in Dart Sass 2.0.0.</p> <p>See <a href="https://sass-lang.com/d/function-units#index">the Sass website</a> for details.</p> </li> <li> <p>Improve existing deprecation warnings to wrap <code>/</code>-as-division suggestions in <code>calc()</code> expressions.</p> </li> <li> <p>Properly mark the warning for passing numbers with units to <code>random()</code> as a deprecation warning.</p> </li> <li> <p>Fix a bug where <code>@extend</code> could behave unpredicatably when used along with <code>meta.load-css()</code> and shared modules that contained no CSS themselves but loaded CSS from other modules.</p> </li> </ul> <h3>Dart API</h3> <ul> <li>Emit a deprecation warning when passing a <code>sassIndex</code> with units to <code>Value.sassIndexToListIndex()</code>. This will be an error in Dart Sass 2.0.0.</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.56.0</h2> <ul> <li> <p><strong>Potentially breaking change:</strong> To match the CSS spec, SassScript expressions beginning with <code>not</code> or <code>(</code> are no longer supported at the beginning of parenthesized sections of media queries. For example,</p> <pre lang="scss"><code>@media (width &gt;= 500px) and (not (grid)) </code></pre> <p>will now be emitted unchanged, instead of producing</p> <pre lang="scss"><code>@media (width &gt;= 500px) and (false) </code></pre> <p>See <a href="https://sass-lang.com/d/media-logic">the Sass website</a> for details.</p> </li> <li> <p><strong>Potentially breaking bug fix:</strong> Angle units like <code>rad</code> or <code>turn</code> are now properly converted to equivalent <code>deg</code> values for <code>hsl()</code>, <code>hsla()</code>, <code>adjust-hue()</code>, <code>color.adjust()</code>, and <code>color.change()</code>.</p> <p>See <a href="https://sass-lang.com/d/function-units#hue">the Sass website</a> for details.</p> </li> <li> <p>Fix indentation for selectors that span multiple lines in a <code>@media</code> query.</p> </li> <li> <p>Emit a deprecation warning when passing <code>$alpha</code> values with units to <code>color.adjust()</code> or <code>color.change()</code>. This will be an error in Dart Sass 2.0.0.</p> <p>See <a href="https://sass-lang.com/d/function-units#alpha">the Sass website</a> for details.</p> </li> <li> <p>Emit a deprecation warning when passing a <code>$weight</code> value with no units or with units other than <code>%</code> to <code>color.mix()</code>. This will be an error in Dart Sass 2.0.0.</p> <p>See <a href="https://sass-lang.com/d/function-units#weight">the Sass website</a> for details.</p> </li> <li> <p>Emit a deprecation warning when passing <code>$n</code> values with units to <code>list.nth()</code> or <code>list.set-nth()</code>. This will be an error in Dart Sass 2.0.0.</p> <p>See <a href="https://sass-lang.com/d/function-units#index">the Sass website</a> for details.</p> </li> <li> <p>Improve existing deprecation warnings to wrap <code>/</code>-as-division suggestions in <code>calc()</code> expressions.</p> </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/f3293dbe0fbd3221299dc3207036dcc5223c8e18"><code>f3293db</code></a> JS API: Validate that importer result 'contents' is a <code>string</code> and improve Ar...</li> <li><a href="https://github.com/sass/dart-sass/commit/00c351746e89014d9cc2b552e093c108f4aabf49"><code>00c3517</code></a> Make `cloneCss() clone modules that transitively contain CSS (<a href="https://github-redirect.dependabot.com/sass/dart-sass/issues/1824">#1824</a>)</li> <li><a href="https://github.com/sass/dart-sass/commit/44d6bb6ac72fe6b93f5bfec371a1fffb18e6b76d"><code>44d6bb6</code></a> Add full support for Media Queries 4 (<a href="https://github-redirect.dependabot.com/sass/dart-sass/issues/1822">#1822</a>)</li> <li><a href="https://github.com/sass/dart-sass/commit/558640bda40d6e3b1a262380a7a87bcc2d57d6e6"><code>558640b</code></a> Support all angle units in color functions (<a href="https://github-redirect.dependabot.com/sass/dart-sass/issues/1818">#1818</a>)</li> <li><a href="https://github.com/sass/dart-sass/commit/dd9e3cc1dbff85786c1b96db15f3b60b9024b4ac"><code>dd9e3cc</code></a> Implement deprecations for strict function units (<a href="https://github-redirect.dependabot.com/sass/dart-sass/issues/1817">#1817</a>)</li> <li><a href="https://github.com/sass/dart-sass/commit/655b55c51dd86e1bd63ab4c71694e6613376839d"><code>655b55c</code></a> Indent comma-separated multiline selectors inside <a href="https://github.com/media"><code>@​media</code></a> queries (<a href="https://github-redirect.dependabot.com/sass/dart-sass/issues/1814">#1814</a>)</li> <li><a href="https://github.com/sass/dart-sass/commit/6e670ef6b810bd506aa96f930f49eddff2594b28"><code>6e670ef</code></a> Insert explicit type arguments where types could not be inferred. (<a href="https://github-redirect.dependabot.com/sass/dart-sass/issues/1813">#1813</a>)</li> <li>See full diff in <a href="https://github.com/sass/dart-sass/compare/1.55.0...1.56.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.55.0&new-version=1.56.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 will merge this PR once CI passes on it, as requested by @Serraniel. [//]: # (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>
Serraniel (Migrated from github.com) approved these changes 2022-11-04 05:03:39 +01:00
Serraniel (Migrated from github.com) left a comment

@dependabot merge

@dependabot merge
Sign in to join this conversation.
No reviewers
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: Serraniel/AniwatchPlus#602
No description provided.