Bump sass from 1.32.13 to 1.33.0 #272

Merged
dependabot[bot] merged 1 commit from dependabot/npm_and_yarn/develop/sass-1.33.0 into develop 2021-05-21 06:16:06 +02:00
dependabot[bot] commented 2021-05-21 06:12:08 +02:00 (Migrated from github.com)

Bumps sass from 1.32.13 to 1.33.0.

Release notes

Sourced from sass's releases.

Dart Sass 1.33.0

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

Changes

  • Deprecate the use of / for division. The new math.div() function should be used instead. See this page for details.
  • Add a list.slash() function that returns a slash-separated list.

  • Potentially breaking bug fix: The heuristics around when potentially slash-separated numbers are converted to slash-free numbers—for example, when 1/2 will be printed as 0.5 rather than 1/2—have been slightly expanded. Previously, a number would be made slash-free if it was passed as an argument to a user-defined function, but not to a built-in function. Now it will be made slash-free in both cases. This is a behavioral change, but it's unlikely to affect any real-world stylesheets.

  • :is() now behaves identically to :matches().

  • Fix a bug where non-integer numbers that were very close to integer values would be incorrectly formatted in CSS.

  • Fix a bug where very small number and very large negative numbers would be incorrectly formatted in CSS.

JS API

  • The this context for importers now has a fromImport field, which is true if the importer is being invoked from an @import and false otherwise. Importers should only use this to determine whether to load import-only files.

Dart API

  • Add an Importer.fromImport getter, which is true if the current Importer.canonicalize() call comes from an @import rule and false otherwise. Importers should only use this to determine whether to load import-only files.

See the full changelog for changes in earlier releases.

Changelog

Sourced from sass's changelog.

1.33.0

  • Deprecate the use of / for division. The new math.div() function should be used instead. See this page for details.
  • Add a list.slash() function that returns a slash-separated list.

  • Potentially breaking bug fix: The heuristics around when potentially slash-separated numbers are converted to slash-free numbers—for example, when 1/2 will be printed as 0.5 rather than 1/2—have been slightly expanded. Previously, a number would be made slash-free if it was passed as an argument to a user-defined function, but not to a built-in function. Now it will be made slash-free in both cases. This is a behavioral change, but it's unlikely to affect any real-world stylesheets.

  • :is() now behaves identically to :matches().

  • Fix a bug where non-integer numbers that were very close to integer values would be incorrectly formatted in CSS.

  • Fix a bug where very small number and very large negative numbers would be incorrectly formatted in CSS.

JS API

  • The this context for importers now has a fromImport field, which is true if the importer is being invoked from an @import and false otherwise. Importers should only use this to determine whether to load import-only files.

Dart API

  • Add an Importer.fromImport getter, which is true if the current Importer.canonicalize() call comes from an @import rule and false otherwise. Importers should only use this to determine whether to load import-only files.
Commits

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.32.13 to 1.33.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.33.0</h2> <p>To install Sass 1.33.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>Deprecate the use of <code>/</code> for division. The new <code>math.div()</code> function should be used instead. See <a href="https://sass-lang.com/documentation/breaking-changes/slash-div">this page</a> for details.</li> </ul> <ul> <li> <p>Add a <code>list.slash()</code> function that returns a slash-separated list.</p> </li> <li> <p><strong>Potentially breaking bug fix:</strong> The heuristics around when potentially slash-separated numbers are converted to slash-free numbers—for example, when <code>1/2</code> will be printed as <code>0.5</code> rather than <code>1/2</code>—have been slightly expanded. Previously, a number would be made slash-free if it was passed as an argument to a <em>user-defined function</em>, but not to a <em>built-in function</em>. Now it will be made slash-free in both cases. This is a behavioral change, but it's unlikely to affect any real-world stylesheets.</p> </li> <li> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/:is"><code>:is()</code></a> now behaves identically to <code>:matches()</code>.</p> </li> </ul> <ul> <li> <p>Fix a bug where non-integer numbers that were very close to integer values would be incorrectly formatted in CSS.</p> </li> <li> <p>Fix a bug where very small number and very large negative numbers would be incorrectly formatted in CSS.</p> </li> </ul> <h3>JS API</h3> <ul> <li>The <code>this</code> context for importers now has a <code>fromImport</code> field, which is <code>true</code> if the importer is being invoked from an <code>@import</code> and <code>false</code> otherwise. Importers should only use this to determine whether to load <a href="https://sass-lang.com/documentation/at-rules/import#import-only-files">import-only files</a>.</li> </ul> <h3>Dart API</h3> <ul> <li>Add an <code>Importer.fromImport</code> getter, which is <code>true</code> if the current <code>Importer.canonicalize()</code> call comes from an <code>@import</code> rule and <code>false</code> otherwise. Importers should only use this to determine whether to load <a href="https://sass-lang.com/documentation/at-rules/import#import-only-files">import-only files</a>.</li> </ul> <p>See the <a href="https://github.com/sass/dart-sass/blob/master/CHANGELOG.md#1330">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/master/CHANGELOG.md">sass's changelog</a>.</em></p> <blockquote> <h2>1.33.0</h2> <ul> <li>Deprecate the use of <code>/</code> for division. The new <code>math.div()</code> function should be used instead. See <a href="https://sass-lang.com/documentation/breaking-changes/slash-div">this page</a> for details.</li> </ul> <ul> <li> <p>Add a <code>list.slash()</code> function that returns a slash-separated list.</p> </li> <li> <p><strong>Potentially breaking bug fix:</strong> The heuristics around when potentially slash-separated numbers are converted to slash-free numbers—for example, when <code>1/2</code> will be printed as <code>0.5</code> rather than <code>1/2</code>—have been slightly expanded. Previously, a number would be made slash-free if it was passed as an argument to a <em>user-defined function</em>, but not to a <em>built-in function</em>. Now it will be made slash-free in both cases. This is a behavioral change, but it's unlikely to affect any real-world stylesheets.</p> </li> <li> <p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/:is"><code>:is()</code></a> now behaves identically to <code>:matches()</code>.</p> </li> </ul> <ul> <li> <p>Fix a bug where non-integer numbers that were very close to integer values would be incorrectly formatted in CSS.</p> </li> <li> <p>Fix a bug where very small number and very large negative numbers would be incorrectly formatted in CSS.</p> </li> </ul> <h3>JS API</h3> <ul> <li>The <code>this</code> context for importers now has a <code>fromImport</code> field, which is <code>true</code> if the importer is being invoked from an <code>@import</code> and <code>false</code> otherwise. Importers should only use this to determine whether to load <a href="https://sass-lang.com/documentation/at-rules/import#import-only-files">import-only files</a>.</li> </ul> <h3>Dart API</h3> <ul> <li>Add an <code>Importer.fromImport</code> getter, which is <code>true</code> if the current <code>Importer.canonicalize()</code> call comes from an <code>@import</code> rule and <code>false</code> otherwise. Importers should only use this to determine whether to load <a href="https://sass-lang.com/documentation/at-rules/import#import-only-files">import-only files</a>.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sass/dart-sass/commit/112aaa6aefa0bad9fd94b7e506e6af4925d0f42c"><code>112aaa6</code></a> Fix the broken CI (<a href="https://github-redirect.dependabot.com/sass/dart-sass/issues/1317">#1317</a>)</li> <li><a href="https://github.com/sass/dart-sass/commit/ba805f1039c24110bb65eea14c80f423098a9b95"><code>ba805f1</code></a> Release 1.33.0 (<a href="https://github-redirect.dependabot.com/sass/dart-sass/issues/1316">#1316</a>)</li> <li><a href="https://github.com/sass/dart-sass/commit/efe680e74ba67dbf5d5e858fb0287da8c1b362b7"><code>efe680e</code></a> Make :is() behave like :matches() (<a href="https://github-redirect.dependabot.com/sass/dart-sass/issues/1315">#1315</a>)</li> <li><a href="https://github.com/sass/dart-sass/commit/c24789072d2a37f41b4af1776f2774e13013b068"><code>c247890</code></a> Re-enable Node tests for Dart dev (<a href="https://github-redirect.dependabot.com/sass/dart-sass/issues/1313">#1313</a>)</li> <li><a href="https://github.com/sass/dart-sass/commit/f33b934fe4ef1d7d14436ce1da2300389a0a5fe9"><code>f33b934</code></a> Fix some edge cases when serializing edge-case numbers (<a href="https://github-redirect.dependabot.com/sass/dart-sass/issues/1312">#1312</a>)</li> <li><a href="https://github.com/sass/dart-sass/commit/384916587103aad83ad465293e9b07135fe3def9"><code>3849165</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/sass/dart-sass/issues/1306">#1306</a> from sass/slash-separator</li> <li><a href="https://github.com/sass/dart-sass/commit/3a5d28f3d6e827ac13a1c62f3dc9f9de84b42965"><code>3a5d28f</code></a> Mark this as a dev version</li> <li><a href="https://github.com/sass/dart-sass/commit/47920ad032fbe0a9a05dc3998ed980ed103b02da"><code>47920ad</code></a> Merge branch 'master' into slash-separator</li> <li><a href="https://github.com/sass/dart-sass/commit/9caa0f3aeba926910bd9cc3a65af3aabb96e4ed9"><code>9caa0f3</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/sass/dart-sass/issues/1309">#1309</a> from sass/fromImport</li> <li><a href="https://github.com/sass/dart-sass/commit/818d0d1e442acd5fafe8dc66bbba75f8867de276"><code>818d0d1</code></a> Fix context.options.context</li> <li>Additional commits viewable in <a href="https://github.com/sass/dart-sass/compare/1.32.13...1.33.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.32.13&new-version=1.33.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 2021-05-21 06:12:29 +02: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#272
No description provided.