Update dependency sass to v1.36.0#1641
Merged
renovate[bot] merged 1 commit intomasterfrom Jul 26, 2021
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
1.26.5->1.36.0Release Notes
sass/dart-sass
v1.36.0Compare Source
Dart API
Added
compileToResult(),compileStringToResult(),compileToResultAsync(), andcompileStringToResultAsync()methods. Theseare intended to replace the existing
compile*()methods, which are nowdeprecated. Rather than returning a simple string, these return a
CompileResultobject, which will allow us to add additional informationabout the compilation without having to introduce further deprecations.
Instead of passing a
sourceMapscallback tocompile*(), passsourceMaps: truetocompile*ToResult()and accessCompileResult.sourceMap.The
CompileResultobject exposes aloadedUrlsobject which lists thecanonical URLs accessed during a compilation. This information was
previously unavailable except through the JS API.
v1.35.2Compare Source
Potentially breaking bug fix: Properly throw an error for Unicode ranges
that have too many
?s after hexadecimal digits, such asU+12345??.Potentially breaking bug fix: Fixed a bug where certain local variable
declarations nested within multiple
@ifstatements would incorrectlyoverride a global variable. It's unlikely that any real stylesheets were
relying on this bug, but if so they can simply add
!globalto the variabledeclaration to preserve the old behavior.
Potentially breaking bug fix: Fix a bug where imports of root-relative
URLs (those that begin with
/) in@importrules would be passed toboth Dart and JS importers as
file:URLs.Properly support selector lists for the
$extendeeargument toselector.extend()andselector.replace().Fix an edge case where
@extendwouldn't affect a selector within apseudo-selector such as
:is()that itself extended other selectors.Fix a race condition where
meta.load-css()could trigger an internal errorwhen running in asynchronous mode.
Dart API
@internalannotation to indicate whichValueAPIs are availablefor public use.
v1.35.1Compare Source
stylesheets loaded using
@import.v1.35.0Compare 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
quietDepsoption which silences compiler warnings from stylesheetsloaded through importers and load paths.
Add a
verboseoption which causes the compiler to emit all deprecationwarnings, not just 5 per feature.
v1.34.1Compare Source
Fix a bug where
--updatewould always compile any file that depends on abuilt-in module.
Fix the URL for the
@-moz-documentdeprecation message.Fix a bug with
@forloops nested inside property declarations.v1.34.0Compare 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-depsflag which silences compiler warnings from stylesheetsloaded through
--load-paths.Add a
--verboseflag which causes the compiler to emit all deprecationwarnings, not just 5 per feature.
Dart API
Add a
quietDepsargument tocompile(),compileString(),compileAsync(), andcompileStringAsync()which silences compiler warningsfrom stylesheets loaded through importers, load paths, and
package:URLs.Add a
verboseargument tocompile(),compileString(),compileAsync(),and
compileStringAsync()which causes the compiler to emit all deprecationwarnings, not just 5 per feature.
v1.33.0Compare Source
/for division. The newmath.div()function should beused 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/2will be printed as0.5rather than1/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
thiscontext for importers now has afromImportfield, which istrueif the importer is being invoked from an
@importandfalseotherwise.Importers should only use this to determine whether to load import-only
files.
Dart API
Importer.fromImportgetter, which istrueif the currentImporter.canonicalize()call comes from an@importrule andfalseotherwise. Importers should only use this to determine whether to load
import-only files.
v1.32.13Compare Source
Potentially breaking bug fix: Null values in
@useand@forwardconfigurations no longer override the
!defaultvariable, matching thebehavior of the equivalent code using
@import.Use the proper parameter names in error messages about
string.slicev1.32.12Compare Source
selector from a module if that selector itself extended a selector from
another upstream module.
v1.32.11Compare Source
contained only whitespace.
v1.32.10Compare Source
v1.32.9Compare Source
JavaScript API
due to shortcomings in npm's version resolver sometimes still ended up
installed anyway. Only declaring support for 3.0.0 should ensure compatibility
going forward.
Dart API
Command Line Interface
-wshorthand for the--watchflag.v1.32.8Compare Source
JavaScript API
render()options object within itslocal context, as
this.options.v1.32.7Compare Source
Allow the null safety release of stream_transform.
Allow
@forward...withto take arguments that have a!defaultflag withouta trailing comma.
Improve the performance of unitless and single-unit numbers.
v1.32.6Compare Source
Node JS API
nodeIntegrationis disabled.Dart API
SassColorconstructors now throwRangeErrors withstartandendset.v1.32.5Compare Source
@forwith numbers that haveunits, 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()withfibermultipletimes simultaneously.
Avoid possible mangled error messages when custom functions or importers throw
unexpected exceptions.
Fix Electron support when
nodeIntegrationis disabled.v1.32.4Compare Source
v1.32.3Compare Source
==for numbers that have different units.v1.32.2Compare Source
color functions.
v1.32.1Compare Source
Potentially breaking bug fix: Null values in
@useand@forwardconfigurations no longer override the
!defaultvariable, matching thebehavior of the equivalent code using
@import.Use the proper parameter names in error messages about
string.slicev1.32.0Compare Source
Deprecate passing non-
%numbers as lightness and saturation tohsl(),hsla(),color.adjust(), andcolor.change(). This matches the CSSspecification, which also requires
%for all lightness and saturationparameters. See [the Sass website][color-units] for more details.
Deprecate passing numbers with units other than
degas the hue tohsl(),hsla(),adjust-hue(),color.adjust(), andcolor.change(). Unitlessnumbers are still allowed here, since they're allowed by CSS. See [the Sass
website][color-units] for more details.
Improve error messages about incompatible units.
Properly mark some warnings emitted by
sass:colorfunctions as deprecationwarnings.
Dart API
Rename
SassNumber.valueInUnits()toSassNumber.coerceValue(). The old nameremains, but is now deprecated.
Rename
SassNumber.coerceValueToUnit(), a shorthand forSassNumber.coerceValue()that takes a single numerator unit.Add
SassNumber.coerceToMatch()andSassNumber.coerceValueToMatch(), whichwork like
SassNumber.coerce()andSassNumber.coerceValue()but take aSassNumberwhose units should be matched rather than taking the unitsexplicitly. These generate better error messages than
SassNumber.coerce()and
SassNumber.coerceValue().Add
SassNumber.convertToMatch()andSassNumber.convertValueToMatch(),which work like
SassNumber.coerceToMatch()andSassNumber.coerceValueToMatch()except they throw exceptions when convertingunitless values to or from units.
Add
SassNumber.compatibleWithUnit(), which returns whether the number can becoerced to a single numerator unit.
v1.30.0Compare Source
@at-root (without: all)wouldn't properly remove a@keyframescontext when parsing selectors.Node JS API
main()function insass.jsnow returns aPromisethatcompletes when the executable is finished running.
Dart API
URL that they had already canonicalized.
v1.29.0Compare Source
@supportsconditions, based on the latestEditor's Draft of CSS Conditional Rules 3. Almost all syntax will be allowed
(with interpolation) in the conditions' parentheses, as well as function
syntax such as
@supports selector(...).v1.28.0Compare Source
color.hwb()][color.hwb()] function tosass:colorthat can express colors in HWB format.color.whiteness()][color.whiteness()] and [color.blackness()][color.blackness()] functions tosass:colorto get a color's HWB whiteness and blackness components.
$whitenessand$blacknessparameters to [color.adjust()][color.adjust()],[
color.change()][color.change()], and [color.scale()][color.scale()] to modify a color's HWB whitenessand blackness components.
Dart API
SassColorclass, including aSassColor.hwb()constructor,
whitenessandblacknessgetters, and achangeHwb()method.v1.27.2Compare Source
v1.27.1Compare Source
Potentially breaking bug fix:
meta.load-css()now correctly uses thename
$urlfor its first argument, rather than$module.Don't crash when using
InfinityorNaNas a key in a map.Emit a proper parse error for a
=with no right-hand side in a function.Avoid going exponential on certain recursive
@extendedge cases.v1.27.0Compare Source
Adds an overload to
map.merge()that supports merging a nested map.map.merge($map1, $keys..., $map2): The$keysform a path to the nested mapin
$map1, into which$map2gets merged.See the Sass documentation for more details.
Adds an overloaded
map.set()function.map.set($map, $key, $value): Adds to or updates$mapwith the specified$keyand$value.map.set($map, $keys..., $value): Adds to or updates a map that is nestedwithin
$map. The$keysform a path to the nested map in$map, intowhich
$valueis 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 returnd.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 likemap.merge(), except thatnested map values are also recursively merged. For example:
See the Sass documentation for more details.
Add a
map.deep-remove()function. This allows you to remove keys fromnested maps by passing multiple keys. For example:
See the Sass documentation for more details.
Fix a bug where custom property values in plain CSS were being parsed as
normal property values.
Dart API
Value.tryMap()function which returns theValueas aSassMapifit's a valid map, or
nullotherwise. This allows function authors to safelyretrieve maps even if they're internally stored as empty lists, without having
to catch exceptions from
Value.assertMap().v1.26.12Compare Source
(written as
#{--foo}: ...) would crash.v1.26.11Compare Source
Potentially breaking bug fix:
selector.nest()now throws an errorif 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
Infinityin JS mode.Produce a better error message for positional arguments following named
arguments.
v1.26.10Compare Source
v1.26.9Compare Source
node_preamblewhen compiling to JS.v1.26.8Compare Source
v1.26.7Compare Source
v1.26.6Compare Source
@elserules.JavaScript API
Add
sass.NULL,sass.TRUE, andsass.FALSEconstants to match Node Sass'sAPI.
If a custom Node importer returns both
fileandcontents, don't attempt toread the
file. Instead, use thecontentsprovided by the importer, withfileas the canonical url.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 these updates again.
This PR has been generated by WhiteSource Renovate. View repository job log here.