Bump sass from 1.26.12 to 1.27.0 #68

Merged
dependabot-preview[bot] merged 1 commit from dependabot/npm_and_yarn/develop/sass-1.27.0 into develop 2020-10-08 07:33:01 +02:00
dependabot-preview[bot] commented 2020-10-08 06:56:02 +02:00 (Migrated from github.com)

Bumps sass from 1.26.12 to 1.27.0.

Release notes

Sourced from sass's releases.

Dart Sass 1.27.0

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

Changes

  • Adds an overload to map.merge() that supports merging a nested map.

    map.merge($map1, $keys..., $map2): The $keys form a path to the nested map in $map1, into which $map2 gets merged.

    See the Sass documentation for more details.

  • Adds an overloaded map.set() function.

    map.set($map, $key, $value): Adds to or updates $map with the specified $key and $value.

    map.set($map, $keys..., $value): Adds to or updates a map that is nested within $map. The $keys form a path to the nested map in $map, into which $value is inserted.

    See the Sass documentation for more details.

  • Add support for nested maps to map.get(). For example, map.get((a: (b: (c: d))), a, b, c) would return d. See the documentation for more details.

  • Add support for nested maps in map.has-key. For example, map.has-key((a: (b: (c: d))), a, b, c) would return true. See the documentation for more details.

  • Add a map.deep-merge() function. This works like map.merge(), except that nested map values are also recursively merged. For example:

    map.deep-merge(
      (color: (primary: red, secondary: blue),
      (color: (secondary: teal)
    ) // => (color: (primary: red, secondary: teal))
    

    See the Sass documentation for more details.

  • Add a map.deep-remove() function. This allows you to remove keys from nested maps by passing multiple keys. For example:

Changelog

Sourced from sass's changelog.

1.27.0

  • Adds an overload to map.merge() that supports merging a nested map.

    map.merge($map1, $keys..., $map2): The $keys form a path to the nested map in $map1, into which $map2 gets merged.

    See the Sass documentation for more details.

  • Adds an overloaded map.set() function.

    map.set($map, $key, $value): Adds to or updates $map with the specified $key and $value.

    map.set($map, $keys..., $value): Adds to or updates a map that is nested within $map. The $keys form a path to the nested map in $map, into which $value is inserted.

    See the Sass documentation for more details.

  • Add support for nested maps to map.get(). For example, map.get((a: (b: (c: d))), a, b, c) would return d. See the documentation for more details.

  • Add support for nested maps in map.has-key. For example, map.has-key((a: (b: (c: d))), a, b, c) would return true. See the documentation for more details.

  • Add a map.deep-merge() function. This works like map.merge(), except that nested map values are also recursively merged. For example:

    map.deep-merge(
      (color: (primary: red, secondary: blue),
      (color: (secondary: teal)
    ) // => (color: (primary: red, secondary: teal))
    

    See the Sass documentation for more details.

Commits
  • 8e35a44 Merge pull request #1108 from sass/fix-type-check
  • 4bc4904 Add a missing word
  • f981227 Merge branch 'master' into fix-type-check
  • b5d5f95 Merge pull request #1102 from sass/feature.nested-maps
  • 1ceaec7 Fix custom property parsing in plain CSS
  • aab38fe Revert "Use Dart 2.9.3 for Node tests and releases (#1105)"
  • bdef3ac Use Dart 2.9.3 for Node tests and releases (#1105)
  • c14cb73 Merge branch 'master' into feature.nested-maps
  • 2198aa7 Merge branch 'master' into feature.nested-maps
  • 56d979d Add a map.deep-remove() function (#1091)
  • Additional commits viewable 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 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)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)
Bumps [sass](https://github.com/sass/dart-sass) from 1.26.12 to 1.27.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.27.0</h2> <p>To install Sass 1.27.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>Adds an overload to <code>map.merge()</code> that supports merging a nested map.</p> <p><code>map.merge($map1, $keys..., $map2)</code>: The <code>$keys</code> form a path to the nested map in <code>$map1</code>, into which <code>$map2</code> gets merged.</p> <p>See <a href="https://sass-lang.com/documentation/modules/map#merge">the Sass documentation</a> for more details.</p> </li> <li> <p>Adds an overloaded <code>map.set()</code> function.</p> <p><code>map.set($map, $key, $value)</code>: Adds to or updates <code>$map</code> with the specified <code>$key</code> and <code>$value</code>.</p> <p><code>map.set($map, $keys..., $value)</code>: Adds to or updates a map that is nested within <code>$map</code>. The <code>$keys</code> form a path to the nested map in <code>$map</code>, into which <code>$value</code> is inserted.</p> <p>See <a href="https://sass-lang.com/documentation/modules/map#set">the Sass documentation</a> for more details.</p> </li> <li> <p>Add support for nested maps to <code>map.get()</code>. For example, <code>map.get((a: (b: (c: d))), a, b, c)</code> would return <code>d</code>. See <a href="https://sass-lang.com/documentation/modules/map#get">the documentation</a> for more details.</p> </li> <li> <p>Add support for nested maps in <code>map.has-key</code>. For example, <code>map.has-key((a: (b: (c: d))), a, b, c)</code> would return true. See <a href="https://sass-lang.com/documentation/modules/map#has-key">the documentation</a> for more details.</p> </li> <li> <p>Add a <code>map.deep-merge()</code> function. This works like <code>map.merge()</code>, except that nested map values are <em>also</em> recursively merged. For example:</p> <pre><code>map.deep-merge( (color: (primary: red, secondary: blue), (color: (secondary: teal) ) // =&gt; (color: (primary: red, secondary: teal)) </code></pre> <p>See <a href="https://sass-lang.com/documentation/modules/map#deep-merge">the Sass documentation</a> for more details.</p> </li> <li> <p>Add a <code>map.deep-remove()</code> function. This allows you to remove keys from nested maps by passing multiple keys. For example:</p> </li> </ul> <!-- raw HTML omitted --> </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.27.0</h2> <ul> <li> <p>Adds an overload to <code>map.merge()</code> that supports merging a nested map.</p> <p><code>map.merge($map1, $keys..., $map2)</code>: The <code>$keys</code> form a path to the nested map in <code>$map1</code>, into which <code>$map2</code> gets merged.</p> <p>See <a href="https://sass-lang.com/documentation/modules/map#merge">the Sass documentation</a> for more details.</p> </li> <li> <p>Adds an overloaded <code>map.set()</code> function.</p> <p><code>map.set($map, $key, $value)</code>: Adds to or updates <code>$map</code> with the specified <code>$key</code> and <code>$value</code>.</p> <p><code>map.set($map, $keys..., $value)</code>: Adds to or updates a map that is nested within <code>$map</code>. The <code>$keys</code> form a path to the nested map in <code>$map</code>, into which <code>$value</code> is inserted.</p> <p>See <a href="https://sass-lang.com/documentation/modules/map#set">the Sass documentation</a> for more details.</p> </li> <li> <p>Add support for nested maps to <code>map.get()</code>. For example, <code>map.get((a: (b: (c: d))), a, b, c)</code> would return <code>d</code>. See <a href="https://sass-lang.com/documentation/modules/map#get">the documentation</a> for more details.</p> </li> <li> <p>Add support for nested maps in <code>map.has-key</code>. For example, <code>map.has-key((a: (b: (c: d))), a, b, c)</code> would return true. See <a href="https://sass-lang.com/documentation/modules/map#has-key">the documentation</a> for more details.</p> </li> <li> <p>Add a <code>map.deep-merge()</code> function. This works like <code>map.merge()</code>, except that nested map values are <em>also</em> recursively merged. For example:</p> <pre><code>map.deep-merge( (color: (primary: red, secondary: blue), (color: (secondary: teal) ) // =&gt; (color: (primary: red, secondary: teal)) </code></pre> <p>See <a href="https://sass-lang.com/documentation/modules/map#deep-merge">the Sass documentation</a> for more details.</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sass/dart-sass/commit/8e35a4473d84870e9c7fa3772a2d886fe18d02b9"><code>8e35a44</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/sass/dart-sass/issues/1108">#1108</a> from sass/fix-type-check</li> <li><a href="https://github.com/sass/dart-sass/commit/4bc49044c466451e31e2563487322af942bf0e63"><code>4bc4904</code></a> Add a missing word</li> <li><a href="https://github.com/sass/dart-sass/commit/f981227cc05d6268274076f4566e4cd8e781d616"><code>f981227</code></a> Merge branch 'master' into fix-type-check</li> <li><a href="https://github.com/sass/dart-sass/commit/b5d5f952586cfb50032c2d75f9d136c11ccb4447"><code>b5d5f95</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/sass/dart-sass/issues/1102">#1102</a> from sass/feature.nested-maps</li> <li><a href="https://github.com/sass/dart-sass/commit/1ceaec71ff5dc4bf5f3a3278794478913c95d979"><code>1ceaec7</code></a> Fix custom property parsing in plain CSS</li> <li><a href="https://github.com/sass/dart-sass/commit/aab38fee533bcabcd03b6da86d8059ae648fc733"><code>aab38fe</code></a> Revert &quot;Use Dart 2.9.3 for Node tests and releases (<a href="https://github-redirect.dependabot.com/sass/dart-sass/issues/1105">#1105</a>)&quot;</li> <li><a href="https://github.com/sass/dart-sass/commit/bdef3aced33141f374c3bfec4f0cdeb68722e454"><code>bdef3ac</code></a> Use Dart 2.9.3 for Node tests and releases (<a href="https://github-redirect.dependabot.com/sass/dart-sass/issues/1105">#1105</a>)</li> <li><a href="https://github.com/sass/dart-sass/commit/c14cb73b0827917a6e357ce8131ab5c9eaf5f449"><code>c14cb73</code></a> Merge branch 'master' into feature.nested-maps</li> <li><a href="https://github.com/sass/dart-sass/commit/2198aa7dab08f32435b527144369577e9291c678"><code>2198aa7</code></a> Merge branch 'master' into feature.nested-maps</li> <li><a href="https://github.com/sass/dart-sass/commit/56d979d04d6dcdb0426994cfd2ffddaa045c3aa1"><code>56d979d</code></a> Add a map.deep-remove() function (<a href="https://github-redirect.dependabot.com/sass/dart-sass/issues/1091">#1091</a>)</li> <li>Additional commits viewable in <a href="https://github.com/sass/dart-sass/compare/1.26.12...1.27.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=sass&package-manager=npm_and_yarn&previous-version=1.26.12&new-version=1.27.0)](https://dependabot.com/compatibility-score/?dependency-name=sass&package-manager=npm_and_yarn&previous-version=1.26.12&new-version=1.27.0) 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) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) </details>
Serraniel (Migrated from github.com) approved these changes 2020-10-08 07:32:53 +02:00
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#68
No description provided.