Skip to content
This repository was archived by the owner on May 15, 2023. It is now read-only.

Commit b7d92dc

Browse files
authored
Release 1.54.5 (#108)
1 parent eaceb48 commit b7d92dc

File tree

3 files changed

+31
-8
lines changed

3 files changed

+31
-8
lines changed

CHANGELOG.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
## 1.54.5
2+
3+
* Properly consider `a ~ c` to be a superselector of `a ~ b ~ c` and `a + b +
4+
c`.
5+
6+
* Properly consider `b > c` to be a superselector of `a > b > c`, and similarly
7+
for other combinators.
8+
9+
* Properly calculate specificity for selector pseudoclasses.
10+
11+
* Deprecate use of `random()` when `$limit` has units to make it explicit that
12+
`random()` currently ignores units. A future version will no longer ignore
13+
units.
14+
15+
* Don't throw an error when the same module is `@forward`ed multiple times
16+
through a configured module.
17+
18+
### Embedded Sass
19+
20+
* Rather than downloading the embedded compiler for the local platform on
21+
install, the `sass-embedded` npm package now declares optional dependencies on
22+
platform-specific embedded compiler packages.
23+
124
## 1.54.4
225

326
* Improve error messages when passing incorrect units that are also
@@ -30,7 +53,7 @@
3053
* Add partial support for new media query syntax from Media Queries Level 4. The
3154
only exception are logical operations nested within parentheses, as these were
3255
previously interpreted differently as SassScript expressions.
33-
56+
3457
A parenthesized media condition that begins with `not` or an opening
3558
parenthesis now produces a deprecation warning. In a future release, these
3659
will be interpreted as plain CSS instead.

pubspec.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ packages:
8484
name: collection
8585
url: "https://pub.dartlang.org"
8686
source: hosted
87-
version: "1.15.0"
87+
version: "1.16.0"
8888
convert:
8989
dependency: transitive
9090
description:
@@ -315,7 +315,7 @@ packages:
315315
name: sass
316316
url: "https://pub.dartlang.org"
317317
source: hosted
318-
version: "1.54.4"
318+
version: "1.54.5"
319319
sass_analysis:
320320
dependency: "direct dev"
321321
description:
@@ -331,7 +331,7 @@ packages:
331331
name: sass_api
332332
url: "https://pub.dartlang.org"
333333
source: hosted
334-
version: "2.0.4"
334+
version: "3.0.0"
335335
shelf:
336336
dependency: transitive
337337
description:
@@ -508,4 +508,4 @@ packages:
508508
source: hosted
509509
version: "3.1.0"
510510
sdks:
511-
dart: ">=2.14.0 <3.0.0"
511+
dart: ">=2.17.0 <3.0.0"

pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: sass_embedded
2-
version: 1.54.4
2+
version: 1.54.5
33
description: An implementation of the Sass embedded protocol using Dart Sass.
44
homepage: https://github.com/sass/dart-sass-embedded
55

@@ -14,8 +14,8 @@ dependencies:
1414
meta: ^1.1.0
1515
path: ^1.6.0
1616
protobuf: ^2.0.0
17-
sass: 1.54.4
18-
sass_api: ^2.0.0
17+
sass: 1.54.5
18+
sass_api: ^3.0.0
1919
source_span: ^1.1.0
2020
stack_trace: ^1.6.0
2121
stream_channel: ">=1.6.0 <3.0.0"

0 commit comments

Comments
 (0)