Bump sass from 1.32.4 to 1.32.5 #163

Merged
dependabot[bot] merged 1 commit from dependabot/npm_and_yarn/develop/sass-1.32.5 into develop 2021-01-21 05:10:15 +01:00
dependabot[bot] commented 2021-01-21 05:06:20 +01:00 (Migrated from github.com)

Bumps sass from 1.32.4 to 1.32.5.

Release notes

Sourced from sass's releases.

Dart Sass 1.32.5

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

Changes

  • Potentially breaking bug fix: When using @for with numbers that have units, the iteration variable now matches the unit of the initial number. This matches the behavior of Ruby Sass and LibSass.

Node JS API

  • Fix a few infrequent errors when calling render() with fiber multiple times simultaneously.

  • Avoid possible mangled error messages when custom functions or importers throw unexpected exceptions.

  • Fix Electron support when nodeIntegration is disabled.

See the full changelog for changes in earlier releases.

Changelog

Sourced from sass's changelog.

1.32.5

  • Potentially breaking bug fix: When using @for with numbers that have units, the iteration variable now matches the unit of the initial number. This matches the behavior of Ruby Sass and LibSass.

Node JS API

  • Fix a few infrequent errors when calling render() with fiber multiple times simultaneously.

  • Avoid possible mangled error messages when custom functions or importers throw unexpected exceptions.

  • Fix Electron support when nodeIntegration is disabled.

Commits
  • d5207f8 Merge pull request #1208 from sass/node-api-bugs
  • 474956d Merge branch 'master' into node-api-bugs
  • f0720f2 Implement proper handling of units in for loops (#1200)
  • 9262326 Update node_preamble.dart (#1207)
  • 072c525 Wrap fiber.yield() calls in runZoned()
  • f93feaf Don't try to cast an error to JsError
  • 6ea8ce6 Fix the CI to use a PR version of sass-spec (#1201)
  • a2d2fe2 Wait 30 seconds for the npm package to be available for Bazel (#1202)
  • 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.32.4 to 1.32.5. <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.32.5</h2> <p>To install Sass 1.32.5, 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><strong>Potentially breaking bug fix:</strong> When using <code>@for</code> with numbers that have units, the iteration variable now matches the unit of the initial number. This matches the behavior of Ruby Sass and LibSass.</li> </ul> <h3>Node JS API</h3> <ul> <li> <p>Fix a few infrequent errors when calling <code>render()</code> with <code>fiber</code> multiple times simultaneously.</p> </li> <li> <p>Avoid possible mangled error messages when custom functions or importers throw unexpected exceptions.</p> </li> <li> <p>Fix Electron support when <code>nodeIntegration</code> is disabled.</p> </li> </ul> <p>See the <a href="https://github.com/sass/dart-sass/blob/master/CHANGELOG.md#1325">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.32.5</h2> <ul> <li><strong>Potentially breaking bug fix:</strong> When using <code>@for</code> with numbers that have units, the iteration variable now matches the unit of the initial number. This matches the behavior of Ruby Sass and LibSass.</li> </ul> <h3>Node JS API</h3> <ul> <li> <p>Fix a few infrequent errors when calling <code>render()</code> with <code>fiber</code> multiple times simultaneously.</p> </li> <li> <p>Avoid possible mangled error messages when custom functions or importers throw unexpected exceptions.</p> </li> <li> <p>Fix Electron support when <code>nodeIntegration</code> is disabled.</p> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sass/dart-sass/commit/d5207f8fb61cbb25b0ad2af3ee8a4e51dc54dd08"><code>d5207f8</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/sass/dart-sass/issues/1208">#1208</a> from sass/node-api-bugs</li> <li><a href="https://github.com/sass/dart-sass/commit/474956d9a868754f9a3a10b978c92abe7bac5e05"><code>474956d</code></a> Merge branch 'master' into node-api-bugs</li> <li><a href="https://github.com/sass/dart-sass/commit/f0720f204da9e653b5e7db2f9448ea06f1f8269b"><code>f0720f2</code></a> Implement proper handling of units in for loops (<a href="https://github-redirect.dependabot.com/sass/dart-sass/issues/1200">#1200</a>)</li> <li><a href="https://github.com/sass/dart-sass/commit/9262326e765420ca4b69c93f9e651457d00e26eb"><code>9262326</code></a> Update node_preamble.dart (<a href="https://github-redirect.dependabot.com/sass/dart-sass/issues/1207">#1207</a>)</li> <li><a href="https://github.com/sass/dart-sass/commit/072c5252cad0c8e18cdacc4c553f39158ba8658c"><code>072c525</code></a> Wrap fiber.yield() calls in runZoned()</li> <li><a href="https://github.com/sass/dart-sass/commit/f93feaf59205b349fe418363f545f3076265ee35"><code>f93feaf</code></a> Don't try to cast an error to JsError</li> <li><a href="https://github.com/sass/dart-sass/commit/6ea8ce6cf9c45a33f0735a4a8486b08af4c551d6"><code>6ea8ce6</code></a> Fix the CI to use a PR version of sass-spec (<a href="https://github-redirect.dependabot.com/sass/dart-sass/issues/1201">#1201</a>)</li> <li><a href="https://github.com/sass/dart-sass/commit/a2d2fe20fdb8af5383f8d059a052c7b2d11d35ce"><code>a2d2fe2</code></a> Wait 30 seconds for the npm package to be available for Bazel (<a href="https://github-redirect.dependabot.com/sass/dart-sass/issues/1202">#1202</a>)</li> <li>See full diff in <a href="https://github.com/sass/dart-sass/compare/1.32.4...1.32.5">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.4&new-version=1.32.5)](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-01-21 05:06:42 +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#163
No description provided.