This repository was archived by the owner on Sep 7, 2021. It is now read-only.
chore(deps): update dependency sass to v1.39.0#300
Open
renovate[bot] wants to merge 1 commit intomasterfrom
Open
chore(deps): update dependency sass to v1.39.0#300renovate[bot] wants to merge 1 commit intomasterfrom
renovate[bot] wants to merge 1 commit intomasterfrom
Conversation
7e2d09d to
b4c27f9
Compare
b4c27f9 to
408165b
Compare
408165b to
9099eb2
Compare
4f100d8 to
8fb4e47
Compare
731e61a to
56af9f7
Compare
56af9f7 to
e728dc4
Compare
e728dc4 to
1b5ddd3
Compare
caf7265 to
fede09f
Compare
e9d4c28 to
b3dbf5b
Compare
752ee8d to
f3ed055
Compare
f3ed055 to
ad85901
Compare
ad85901 to
8367d8c
Compare
8367d8c to
26e8f4a
Compare
c008133 to
e6c4018
Compare
e6c4018 to
6baf11b
Compare
6baf11b to
3c142e5
Compare
3c142e5 to
b2e528e
Compare
b2e528e to
410c942
Compare
410c942 to
3a2ab19
Compare
3a2ab19 to
964c1e8
Compare
964c1e8 to
298ff45
Compare
6ab63c0 to
a2ed343
Compare
a2ed343 to
cfa69b9
Compare
cfa69b9 to
16d54a5
Compare
16d54a5 to
d7c8041
Compare
d7c8041 to
0c20ca7
Compare
0c20ca7 to
459e7a6
Compare
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.32.10->1.39.0Release Notes
sass/dart-sass
v1.39.0Compare Source
JS API
charsetoption that controls whether or not Sass emits a@charset/BOM for non-ASCII stylesheets.v1.38.2Compare Source
v1.38.1Compare Source
v1.38.0Compare 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 purposesof parsing plain-CSS
min()andmax()functions.Allow
ifto be used as an unquoted string.Properly parse backslash escapes within
url()expressions.Fix a couple bugs where
@extends could be marked as unsatisfied whenmultiple identical
@extends extended selectors across@userules.Command Line Interface
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
SassArgumentList.keywordsWithoutMarkinggetter to access the keywordarguments of an argument list without marking them accessed.
v1.37.5Compare Source
v1.37.4Compare Source
v1.37.3Compare Source
v1.37.2Compare Source
v1.37.1Compare Source
v1.37.0Compare Source
Dart API
Potentially breaking bug fix:
SassNumber.asSlash,SassNumber.withSlash(), andSassNumber.withoutSlash()have been marked as@internal. They were never intended to be used outside thesasspackage.Potentially breaking bug fix:
SassExceptionhas been marked as@sealedto formally indicate that it's not intended to be extended outside of the
sasspackage.Add a
Value.withListContents()method that returns a new Sass list with thesame list separator and brackets as the current value, interpreted as a list.
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.
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.
This PR has been generated by WhiteSource Renovate. View repository job log here.