Release 1.54.5 (#108)

This commit is contained in:
Natalie Weizenbaum 2022-08-19 16:12:33 -07:00 committed by GitHub
parent eaceb48e83
commit b7d92dcf0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 31 additions and 8 deletions

View File

@ -1,3 +1,26 @@
## 1.54.5
* Properly consider `a ~ c` to be a superselector of `a ~ b ~ c` and `a + b +
c`.
* Properly consider `b > c` to be a superselector of `a > b > c`, and similarly
for other combinators.
* Properly calculate specificity for selector pseudoclasses.
* Deprecate use of `random()` when `$limit` has units to make it explicit that
`random()` currently ignores units. A future version will no longer ignore
units.
* Don't throw an error when the same module is `@forward`ed multiple times
through a configured module.
### Embedded Sass
* Rather than downloading the embedded compiler for the local platform on
install, the `sass-embedded` npm package now declares optional dependencies on
platform-specific embedded compiler packages.
## 1.54.4
* Improve error messages when passing incorrect units that are also
@ -30,7 +53,7 @@
* Add partial support for new media query syntax from Media Queries Level 4. The
only exception are logical operations nested within parentheses, as these were
previously interpreted differently as SassScript expressions.
A parenthesized media condition that begins with `not` or an opening
parenthesis now produces a deprecation warning. In a future release, these
will be interpreted as plain CSS instead.

View File

@ -84,7 +84,7 @@ packages:
name: collection
url: "https://pub.dartlang.org"
source: hosted
version: "1.15.0"
version: "1.16.0"
convert:
dependency: transitive
description:
@ -315,7 +315,7 @@ packages:
name: sass
url: "https://pub.dartlang.org"
source: hosted
version: "1.54.4"
version: "1.54.5"
sass_analysis:
dependency: "direct dev"
description:
@ -331,7 +331,7 @@ packages:
name: sass_api
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.4"
version: "3.0.0"
shelf:
dependency: transitive
description:
@ -508,4 +508,4 @@ packages:
source: hosted
version: "3.1.0"
sdks:
dart: ">=2.14.0 <3.0.0"
dart: ">=2.17.0 <3.0.0"

View File

@ -1,5 +1,5 @@
name: sass_embedded
version: 1.54.4
version: 1.54.5
description: An implementation of the Sass embedded protocol using Dart Sass.
homepage: https://github.com/sass/dart-sass-embedded
@ -14,8 +14,8 @@ dependencies:
meta: ^1.1.0
path: ^1.6.0
protobuf: ^2.0.0
sass: 1.54.4
sass_api: ^2.0.0
sass: 1.54.5
sass_api: ^3.0.0
source_span: ^1.1.0
stack_trace: ^1.6.0
stream_channel: ">=1.6.0 <3.0.0"