Release 1.58.0 (#142)

This commit is contained in:
Natalie Weizenbaum 2023-02-01 15:44:20 -08:00 committed by GitHub
parent 34a34c0e52
commit 487753ebe4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 3 deletions

View File

@ -1,3 +1,29 @@
## 1.58.0
* Remove sourcemap comments from Sass sources. The generated sourcemap comment
for the compiled CSS output remains unaffected.
* Fix a bug in `@extend` logic where certain selectors with three or more
combinators were incorrectly considered superselectors of similar selectors
with fewer combinators, causing them to be incorrectly trimmed from the
output.
* Produce a better error message for a number with a leading `+` or `-`, a
decimal point, but no digits.
* Produce a better error message for a nested property whose name starts with
`--`.
* Fix a crash when a selector ends in an escaped backslash.
* Add the relative length units from CSS Values 4 and CSS Contain 3 as known
units to validate bad computation in `calc`.
### Command Line Interface
* The `--watch` flag will now track loads through calls to `meta.load-css()` as
long as their URLs are literal strings without any interpolation.
## 1.57.1
* No user-visible changes.

View File

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