Skip to content
This repository has been archived by the owner on Sep 7, 2021. It is now read-only.

chore(deps): update dependency sass to v1.39.0 #300

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 6, 2021

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
sass 1.32.10 -> 1.39.0 age adoption passing confidence

Release Notes

sass/dart-sass

v1.39.0

Compare Source

JS API
  • Add a charset option that controls whether or not Sass emits a
    @charset/BOM for non-ASCII stylesheets.

v1.38.2

Compare Source

  • No user-visible changes

v1.38.1

Compare Source

  • No user-visible changes

v1.38.0

Compare Source

  • In expanded mode, emit characters in Unicode private-use areas as escape
    sequences rather than literal characters.

  • Fix a bug where quotes would be omitted for an attribute selector whose value
    was a single backslash.

  • Properly consider numbers that begin with . as "plain CSS" for the purposes
    of parsing plain-CSS min() and max() functions.

  • Allow if to be used as an unquoted string.

  • Properly parse backslash escapes within url() expressions.

  • Fix a couple bugs where @extends could be marked as unsatisfied when
    multiple identical @extends extended selectors across @use rules.

Command Line Interface
  • Strip CRLF newlines from snippets of the original stylesheet that are included
    in the output when an error occurs.
JS API
  • Don't crash when a Windows path is returned by a custom Node importer at the
    same time as file contents.

  • Don't crash when an error occurs in a stylesheet loaded via a custom importer
    with a custom URL scheme.

Dart API
  • Add a SassArgumentList.keywordsWithoutMarking getter to access the keyword
    arguments of an argument list without marking them accessed.

v1.37.5

Compare Source

  • No user-visible changes.

v1.37.4

Compare Source

  • No user-visible changes.

v1.37.3

Compare Source

  • No user-visible changes.

v1.37.2

Compare Source

  • No user-visible changes.

v1.37.1

Compare Source

  • No user-visible changes.

v1.37.0

Compare Source

Dart API
  • Potentially breaking bug fix: SassNumber.asSlash,
    SassNumber.withSlash(), and SassNumber.withoutSlash() have been marked as
    @internal. They were never intended to be used outside the sass package.

  • Potentially breaking bug fix: SassException has been marked as @sealed
    to formally indicate that it's not intended to be extended outside of the
    sass package.

  • Add a Value.withListContents() method that returns a new Sass list with the
    same list separator and brackets as the current value, interpreted as a list.

v1.36.0

Compare Source

Dart API
  • Added compileToResult(), compileStringToResult(),
    compileToResultAsync(), and compileStringToResultAsync() methods. These
    are intended to replace the existing compile*() methods, which are now
    deprecated. Rather than returning a simple string, these return a
    CompileResult object, which will allow us to add additional information
    about the compilation without having to introduce further deprecations.

    • Instead of passing a sourceMaps callback to compile*(), pass
      sourceMaps: true to compile*ToResult() and access
      CompileResult.sourceMap.

    • The CompileResult object exposes a loadedUrls object which lists the
      canonical URLs accessed during a compilation. This information was
      previously unavailable except through the JS API.

v1.35.2

Compare Source

  • Potentially breaking bug fix: Properly throw an error for Unicode ranges
    that have too many ?s after hexadecimal digits, such as U+12345??.

  • Potentially breaking bug fix: Fixed a bug where certain local variable
    declarations nested within multiple @if statements would incorrectly
    override a global variable. It's unlikely that any real stylesheets were
    relying on this bug, but if so they can simply add !global to the variable
    declaration to preserve the old behavior.

  • Potentially breaking bug fix: Fix a bug where imports of root-relative
    URLs (those that begin with /) in @import rules would be passed to
    both Dart and JS importers as file: URLs.

  • Properly support selector lists for the $extendee argument to
    selector.extend() and selector.replace().

  • Fix an edge case where @extend wouldn't affect a selector within a
    pseudo-selector such as :is() that itself extended other selectors.

  • Fix a race condition where meta.load-css() could trigger an internal error
    when running in asynchronous mode.

Dart API
  • Use the @internal annotation to indicate which Value APIs are available
    for public use.

v1.35.1

Compare Source

  • Fix a bug where the quiet dependency flag didn't silence warnings in some
    stylesheets loaded using @import.

v1.35.0

Compare Source

  • Fix a couple bugs that could prevent some members from being found in certain
    files that use a mix of imports and the module system.

  • Fix incorrect recommendation for migrating division expressions that reference
    namespaced variables.

JS API
  • Add a quietDeps option which silences compiler warnings from stylesheets
    loaded through importers and load paths.

  • Add a verbose option which causes the compiler to emit all deprecation
    warnings, not just 5 per feature.

v1.34.1

Compare Source

  • Fix a bug where --update would always compile any file that depends on a
    built-in module.

  • Fix the URL for the @-moz-document deprecation message.

  • Fix a bug with @for loops nested inside property declarations.

v1.34.0

Compare Source

  • Don't emit the same warning in the same location multiple times.

  • Cap deprecation warnings at 5 per feature by default.

Command Line Interface
  • Add a --quiet-deps flag which silences compiler warnings from stylesheets
    loaded through --load-paths.

  • Add a --verbose flag which causes the compiler to emit all deprecation
    warnings, not just 5 per feature.

Dart API
  • Add a quietDeps argument to compile(), compileString(),
    compileAsync(), and compileStringAsync() which silences compiler warnings
    from stylesheets loaded through importers, load paths, and package: URLs.

  • Add a verbose argument to compile(), compileString(), compileAsync(),
    and compileStringAsync() which causes the compiler to emit all deprecation
    warnings, not just 5 per feature.

v1.33.0

Compare Source

  • 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()][: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.

v1.32.13

Compare Source

  • Potentially breaking bug fix: Null values in @use and @forward
    configurations no longer override the !default variable, matching the
    behavior of the equivalent code using @import.

  • Use the proper parameter names in error messages about string.slice

v1.32.12

Compare Source

  • Fix a bug that disallowed more than one module from extending the same
    selector from a module if that selector itself extended a selector from
    another upstream module.

v1.32.11

Compare Source

  • Fix a bug where bogus indented syntax errors were reported for lines that
    contained only whitespace.

Configuration

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

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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 v1.32.1 chore(deps): update dependency sass to v1.32.2 Jan 7, 2021
@renovate renovate bot changed the title chore(deps): update dependency sass to v1.32.2 chore(deps): update dependency sass to v1.32.3 Jan 12, 2021
@renovate renovate bot changed the title chore(deps): update dependency sass to v1.32.3 chore(deps): update dependency sass to v1.32.4 Jan 12, 2021
@renovate renovate bot force-pushed the renovate/sass-1.x branch 2 times, most recently from 4f100d8 to 8fb4e47 Compare January 20, 2021 06:00
@renovate renovate bot changed the title chore(deps): update dependency sass to v1.32.4 chore(deps): update dependency sass to v1.32.5 Jan 20, 2021
@renovate renovate bot force-pushed the renovate/sass-1.x branch 2 times, most recently from 731e61a to 56af9f7 Compare January 22, 2021 02:55
@renovate renovate bot changed the title chore(deps): update dependency sass to v1.32.5 chore(deps): update dependency sass to v1.32.6 Feb 2, 2021
@renovate renovate bot changed the title chore(deps): update dependency sass to v1.32.6 chore(deps): update dependency sass to v1.32.7 Feb 10, 2021
@renovate renovate bot force-pushed the renovate/sass-1.x branch 2 times, most recently from caf7265 to fede09f Compare February 18, 2021 22:58
@renovate renovate bot changed the title chore(deps): update dependency sass to v1.32.7 chore(deps): update dependency sass to v1.32.8 Feb 18, 2021
@renovate renovate bot force-pushed the renovate/sass-1.x branch 2 times, most recently from e9d4c28 to b3dbf5b Compare March 4, 2021 14:46
@renovate renovate bot force-pushed the renovate/sass-1.x branch 4 times, most recently from 752ee8d to f3ed055 Compare March 14, 2021 01:59
@renovate renovate bot changed the title chore(deps): update dependency sass to v1.32.8 chore(deps): update dependency sass to v1.32.9 Apr 16, 2021
@renovate renovate bot changed the title chore(deps): update dependency sass to v1.32.9 chore(deps): update dependency sass to v1.32.10 Apr 17, 2021
@renovate renovate bot changed the title chore(deps): update dependency sass to v1.32.10 chore(deps): update dependency sass to v1.32.10 - autoclosed Apr 17, 2021
@renovate renovate bot changed the title chore(deps): update dependency sass to v1.34.1 chore(deps): update dependency sass to v1.35.0 Jun 15, 2021
@renovate renovate bot changed the title chore(deps): update dependency sass to v1.35.0 chore(deps): update dependency sass to v1.35.1 Jun 15, 2021
@renovate renovate bot changed the title chore(deps): update dependency sass to v1.35.1 chore(deps): update dependency sass to v1.35.2 Jul 7, 2021
@renovate renovate bot changed the title chore(deps): update dependency sass to v1.35.2 chore(deps): update dependency sass to v1.36.0 Jul 23, 2021
@renovate renovate bot changed the title chore(deps): update dependency sass to v1.36.0 chore(deps): update dependency sass to v1.37.0 Jul 31, 2021
@renovate renovate bot changed the title chore(deps): update dependency sass to v1.37.0 chore(deps): update dependency sass to v1.37.1 Aug 2, 2021
@renovate renovate bot changed the title chore(deps): update dependency sass to v1.37.1 chore(deps): update dependency sass to v1.37.2 Aug 3, 2021
@renovate renovate bot changed the title chore(deps): update dependency sass to v1.37.2 chore(deps): update dependency sass to v1.37.3 Aug 3, 2021
@renovate renovate bot force-pushed the renovate/sass-1.x branch 2 times, most recently from 6ab63c0 to a2ed343 Compare August 4, 2021 00:49
@renovate renovate bot changed the title chore(deps): update dependency sass to v1.37.3 chore(deps): update dependency sass to v1.37.4 Aug 4, 2021
@renovate renovate bot changed the title chore(deps): update dependency sass to v1.37.4 chore(deps): update dependency sass to v1.37.5 Aug 4, 2021
@renovate renovate bot changed the title chore(deps): update dependency sass to v1.37.5 chore(deps): update dependency sass to v1.38.0 Aug 17, 2021
@renovate renovate bot changed the title chore(deps): update dependency sass to v1.38.0 chore(deps): update dependency sass to v1.38.1 Aug 24, 2021
@renovate renovate bot changed the title chore(deps): update dependency sass to v1.38.1 chore(deps): update dependency sass to v1.38.2 Aug 28, 2021
@renovate renovate bot changed the title chore(deps): update dependency sass to v1.38.2 chore(deps): update dependency sass to v1.39.0 Sep 2, 2021
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