This repository was archived by the owner on May 15, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +31
-8
lines changed Expand file tree Collapse file tree 3 files changed +31
-8
lines changed Original file line number Diff line number Diff line change
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
+
1
24
## 1.54.4
2
25
3
26
* Improve error messages when passing incorrect units that are also
30
53
* Add partial support for new media query syntax from Media Queries Level 4. The
31
54
only exception are logical operations nested within parentheses, as these were
32
55
previously interpreted differently as SassScript expressions.
33
-
56
+
34
57
A parenthesized media condition that begins with ` not ` or an opening
35
58
parenthesis now produces a deprecation warning. In a future release, these
36
59
will be interpreted as plain CSS instead.
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ packages:
84
84
name: collection
85
85
url: "https://pub.dartlang.org"
86
86
source: hosted
87
- version: "1.15 .0"
87
+ version: "1.16 .0"
88
88
convert:
89
89
dependency: transitive
90
90
description:
@@ -315,7 +315,7 @@ packages:
315
315
name: sass
316
316
url: "https://pub.dartlang.org"
317
317
source: hosted
318
- version: "1.54.4 "
318
+ version: "1.54.5 "
319
319
sass_analysis:
320
320
dependency: "direct dev"
321
321
description:
@@ -331,7 +331,7 @@ packages:
331
331
name: sass_api
332
332
url: "https://pub.dartlang.org"
333
333
source: hosted
334
- version: "2 .0.4 "
334
+ version: "3 .0.0 "
335
335
shelf:
336
336
dependency: transitive
337
337
description:
@@ -508,4 +508,4 @@ packages:
508
508
source: hosted
509
509
version: "3.1.0"
510
510
sdks:
511
- dart: ">=2.14 .0 <3.0.0"
511
+ dart: ">=2.17 .0 <3.0.0"
Original file line number Diff line number Diff line change 1
1
name : sass_embedded
2
- version : 1.54.4
2
+ version : 1.54.5
3
3
description : An implementation of the Sass embedded protocol using Dart Sass.
4
4
homepage : https://github.com/sass/dart-sass-embedded
5
5
@@ -14,8 +14,8 @@ dependencies:
14
14
meta : ^1.1.0
15
15
path : ^1.6.0
16
16
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
19
19
source_span : ^1.1.0
20
20
stack_trace : ^1.6.0
21
21
stream_channel : " >=1.6.0 <3.0.0"
You can’t perform that action at this time.
0 commit comments