Skip to content
This repository was archived by the owner on Nov 20, 2020. It is now read-only.

⬆️ Update dependency sass to v1.27.0 (master) #269

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Feb 24, 2020

This PR contains the following updates:

Package Type Update Change
sass dependencies minor 1.25.0 -> 1.27.0

Release Notes

sass/dart-sass

v1.27.0

Compare Source

  • 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][map-merge] for more details.

    [map-merge]: https://sass-lang.com/documentation/modules/map#merge

  • 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][map-set] for more details.

    [map-set]: https://sass-lang.com/documentation/modules/map#set

  • 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][map-get] for more details.

    [map-get]: https://sass-lang.com/documentation/modules/map#get

  • 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][map-has-key] for more details.

    [map-has-key]: https://sass-lang.com/documentation/modules/map#has-key

  • 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][map-deep-merge] for more details.

    [map-deep-merge]: https://sass-lang.com/documentation/modules/map#deep-merge

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

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

    See [the Sass documentation][map-deep-remove] for more details.

    [map-deep-remove]: https://sass-lang.com/documentation/modules/map#deep-remove

  • Fix a bug where custom property values in plain CSS were being parsed as
    normal property values.

Dart API
  • Add a Value.tryMap() function which returns the Value as a SassMap if
    it's a valid map, or null otherwise. This allows function authors to safely
    retrieve maps even if they're internally stored as empty lists, without having
    to catch exceptions from Value.assertMap().

v1.26.12

Compare Source

  • Fix a bug where nesting properties beneath a Sass-syntax custom property
    (written as #{--foo}: ...) would crash.

v1.26.11

Compare Source

  • Potentially breaking bug fix: selector.nest() now throws an error
    if the first arguments contains the parent selector &.

  • Fixes a parsing bug with inline comments in selectors.

  • Improve some error messages for edge-case parse failures.

  • Throw a proper error when the same built-in module is @used twice.

  • Don't crash when writing Infinity in JS mode.

  • Produce a better error message for positional arguments following named
    arguments.

v1.26.10

Compare Source

  • Fixes a bug where two adjacent combinators could cause an error.

v1.26.9

  • Use an updated version of node_preamble when compiling to JS.

v1.26.8

Compare Source

  • Fixes an error when emitting source maps to stdout.

v1.26.7

Compare Source

  • No user-visible changes.

v1.26.6

Compare Source

  • Fix a bug where escape sequences were improperly recognized in @else rules.
JavaScript API
  • Add sass.NULL, sass.TRUE, and sass.FALSE constants to match Node Sass's
    API.

  • If a custom Node importer returns both file and contents, don't attempt to
    read the file. Instead, use the contents provided by the importer, with
    file as the canonical url.

v1.26.5

Compare Source

  • No user-visible changes.

v1.26.3

Compare Source

  • Fix a bug where --watch mode could go into an infinite loop compiling CSS
    files to themselves.

v1.26.2

Compare Source

  • More aggressively eliminate redundant selectors in the selector.extend() and
    selector.replace() functions.

v1.26.1

Compare Source

  • Fix a bug where nesting properties beneath a Sass-syntax custom property
    (written as #{--foo}: ...) would crash.

v1.26.0

Compare Source

  • Potentially breaking bug fix: @use rules whose URLs' basenames begin
    with _ now correctly exclude that _ from the rules' namespaces.

  • Fix a bug where imported forwarded members weren't visible in mixins and
    functions that were defined before the @import.

  • Don't throw errors if the exact same member is loaded or forwarded from
    multiple modules at the same time.


Renovate configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Enabled.

♻️ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by WhiteSource Renovate. View repository job log here.

@vercel
Copy link

vercel bot commented Feb 24, 2020

This pull request is being automatically deployed with Vercel (learn more).
To see the status of your deployment, click below or on the icon next to each commit.

🔍 Inspect: https://vercel.com/justhannes/nuxt-typescript-vuetify/5n97z7qb8
✅ Preview: https://nuxt-typescript-vuetify-git-renovate-master-sass-1x.justhannes.vercel.app

[Deployment for 46e07a6 failed]

@renovate renovate bot force-pushed the renovate/master-sass-1.x branch from 06d8912 to 4968b50 Compare February 25, 2020 22:48
@renovate renovate bot changed the title ⬆️ Update dependency sass to v1.26.0 (master) ⬆️ Update dependency sass to v1.26.1 (master) Feb 25, 2020
@renovate renovate bot force-pushed the renovate/master-sass-1.x branch from 4968b50 to df5cffa Compare February 29, 2020 00:31
@renovate renovate bot changed the title ⬆️ Update dependency sass to v1.26.1 (master) ⬆️ Update dependency sass to v1.26.2 (master) Feb 29, 2020
@renovate renovate bot force-pushed the renovate/master-sass-1.x branch from df5cffa to c7f2a93 Compare March 11, 2020 22:57
@renovate renovate bot changed the title ⬆️ Update dependency sass to v1.26.2 (master) ⬆️ Update dependency sass to v1.26.3 (master) Mar 11, 2020
@renovate renovate bot force-pushed the renovate/master-sass-1.x branch from c7f2a93 to bced683 Compare March 17, 2020 20:28
@renovate renovate bot changed the title ⬆️ Update dependency sass to v1.26.3 (master) ⬆️ Update dependency sass to v1.26.3 (master) Apr 7, 2020
@renovate renovate bot force-pushed the renovate/master-sass-1.x branch from bced683 to 240fcff Compare April 24, 2020 03:01
@renovate renovate bot changed the title ⬆️ Update dependency sass to v1.26.3 (master) ⬆️ Update dependency sass to v1.26.5 (master) Apr 24, 2020
@renovate renovate bot changed the title ⬆️ Update dependency sass to v1.26.5 (master) ⬆️ Update dependency sass to v1.26.5 (master) Apr 24, 2020
@renovate renovate bot force-pushed the renovate/master-sass-1.x branch from 240fcff to cb4be64 Compare May 23, 2020 06:45
@renovate renovate bot changed the title ⬆️ Update dependency sass to v1.26.5 (master) ⬆️ Update dependency sass to v1.26.5 (master) May 23, 2020
@renovate renovate bot changed the title ⬆️ Update dependency sass to v1.26.5 (master) ⬆️ Update dependency sass to v1.26.5 (master) May 23, 2020
@renovate renovate bot force-pushed the renovate/master-sass-1.x branch from cb4be64 to 6e69dae Compare May 23, 2020 09:45
@renovate renovate bot changed the title ⬆️ Update dependency sass to v1.26.5 (master) ⬆️ Update dependency sass to v1.26.5 (master) May 23, 2020
@renovate renovate bot changed the title ⬆️ Update dependency sass to v1.26.5 (master) ⬆️ Update dependency sass to v1.26.5 (master) May 23, 2020
@renovate renovate bot force-pushed the renovate/master-sass-1.x branch from 6e69dae to 61ff6a9 Compare May 28, 2020 22:00
@renovate renovate bot changed the title ⬆️ Update dependency sass to v1.26.5 (master) ⬆️ Update dependency sass to v1.26.6 (master) May 28, 2020
@renovate renovate bot changed the title ⬆️ Update dependency sass to v1.26.6 (master) ⬆️ Update dependency sass to v1.26.6 (master) May 28, 2020
@renovate renovate bot force-pushed the renovate/master-sass-1.x branch from 61ff6a9 to c7ca3b8 Compare May 29, 2020 00:36
@renovate renovate bot changed the title ⬆️ Update dependency sass to v1.26.6 (master) ⬆️ Update dependency sass to v1.26.7 (master) May 29, 2020
@renovate renovate bot changed the title ⬆️ Update dependency sass to v1.26.7 (master) ⬆️ Update dependency sass to v1.26.7 (master) May 29, 2020
@renovate renovate bot force-pushed the renovate/master-sass-1.x branch from c7ca3b8 to b155f93 Compare June 5, 2020 00:49
@renovate renovate bot changed the title ⬆️ Update dependency sass to v1.26.7 (master) ⬆️ Update dependency sass to v1.26.8 (master) Jun 5, 2020
@renovate renovate bot changed the title ⬆️ Update dependency sass to v1.26.8 (master) ⬆️ Update dependency sass to v1.26.8 (master) Jun 5, 2020
@renovate renovate bot force-pushed the renovate/master-sass-1.x branch from b155f93 to 37ffb10 Compare June 22, 2020 22:17
@renovate renovate bot changed the title ⬆️ Update dependency sass to v1.26.8 (master) ⬆️ Update dependency sass to v1.26.9 (master) Jun 22, 2020
@renovate renovate bot changed the title ⬆️ Update dependency sass to v1.26.9 (master) ⬆️ Update dependency sass to v1.26.9 (master) Jun 22, 2020
@renovate renovate bot force-pushed the renovate/master-sass-1.x branch from 37ffb10 to e61a715 Compare August 27, 2020 00:59
@renovate renovate bot changed the title ⬆️ Update dependency sass to v1.26.9 (master) ⬆️ Update dependency sass to v1.26.10 (master) Aug 27, 2020
@renovate renovate bot force-pushed the renovate/master-sass-1.x branch from e61a715 to 46e07a6 Compare October 27, 2020 09:55
@renovate renovate bot changed the title ⬆️ Update dependency sass to v1.26.10 (master) ⬆️ Update dependency sass to v1.27.0 (master) Oct 27, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant