diff --git a/CHANGELOG.md b/CHANGELOG.md index b20597e..1ec672b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,26 @@ +## 1.49.10 + +* Quiet deps mode now silences compiler warnings in mixins and functions that + are defined in dependencies even if they're invoked from application + stylesheets. + +* In expanded mode, Sass will now emit colors using `rgb()`, `rbga()`, `hsl()`, + and `hsla()` function notation if they were defined using the corresponding + notation. As per our browser support policy, this change was only done once + 95% of browsers were confirmed to support this output format, and so is not + considered a breaking change. + + Note that this output format is intended for human readability and not for + interoperability with other tools. As always, Sass targets the CSS + specification, and any tool that consumes Sass's output should parse all + colors that are supported by the CSS spec. + +* Fix a bug in which a color written using the four- or eight-digit hex format + could be emitted as a hex color rather than a format with higher browser + compatibility. + +* Calculations are no longer simplified within supports declarations + ## 1.49.9 ### Embedded Sass diff --git a/pubspec.lock b/pubspec.lock index 1f3f677..e5bb9a7 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -63,7 +63,7 @@ packages: name: cli_pkg url: "https://pub.dartlang.org" source: hosted - version: "1.7.0" + version: "2.1.0" cli_repl: dependency: transitive description: @@ -315,14 +315,14 @@ packages: name: sass url: "https://pub.dartlang.org" source: hosted - version: "1.49.9" + version: "1.49.10" sass_analysis: dependency: "direct dev" description: path: analysis ref: HEAD - resolved-ref: "13099d497a6b6b6afd0b458e751eeab1661633ca" - url: "git://github.com/sass/dart-sass" + resolved-ref: "6652001f19710f96947ad02341d67e522a1739ac" + url: "https://github.com/sass/dart-sass.git" source: git version: "0.0.0" sass_api: @@ -331,7 +331,7 @@ packages: name: sass_api url: "https://pub.dartlang.org" source: hosted - version: "1.0.0-beta.38" + version: "1.0.0-beta.39" shelf: dependency: transitive description: diff --git a/pubspec.yaml b/pubspec.yaml index d895b81..89657fb 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: sass_embedded -version: 1.49.9 +version: 1.49.10 description: An implementation of the Sass embedded protocol using Dart Sass. homepage: https://github.com/sass/dart-sass-embedded @@ -14,7 +14,7 @@ dependencies: meta: ^1.1.0 path: ^1.6.0 protobuf: ^2.0.0 - sass: 1.49.9 + sass: 1.49.10 sass_api: ^1.0.0-beta.5 source_span: ^1.1.0 stack_trace: ^1.6.0