Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency sass to ^1.27.0 - autoclosed #90

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 2, 2020

This PR contains the following updates:

Package Type Update Change
sass devDependencies 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

Compare Source

  • 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: "before 3am on the first day of the month" (UTC).

🚦 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.

@renovate renovate bot changed the title chore(deps): update dependency sass to ^1.26.2 chore(deps): update dependency sass to ^1.26.3 Mar 11, 2020
@renovate renovate bot changed the title chore(deps): update dependency sass to ^1.26.3 chore(deps): update dependency sass to ^1.26.5 May 7, 2020
@renovate renovate bot changed the title chore(deps): update dependency sass to ^1.26.5 chore(deps): update dependency sass to ^1.26.9 Jul 1, 2020
@renovate renovate bot changed the title chore(deps): update dependency sass to ^1.26.9 chore(deps): update dependency sass to ^1.26.10 Jul 10, 2020
@renovate renovate bot changed the title chore(deps): update dependency sass to ^1.26.10 chore(deps): update dependency sass to ^1.27.0 Oct 27, 2020
@renovate renovate bot changed the title chore(deps): update dependency sass to ^1.27.0 chore(deps): update dependency sass to ^1.27.0 - autoclosed Aug 28, 2021
@renovate renovate bot closed this Aug 28, 2021
@renovate renovate bot deleted the renovate/sass-1.x branch August 28, 2021 12:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant