Skip to content

Commit 1e01172

Browse files
committed
Update Dart Sass version and release
1 parent 9e354f0 commit 1e01172

File tree

10 files changed

+49
-18
lines changed

10 files changed

+49
-18
lines changed

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
## 1.69.1
2+
3+
* No user-visible changes.
4+
5+
## 1.69.0
6+
7+
* Add a `meta.get-mixin()` function that returns a mixin as a first-class Sass
8+
value.
9+
10+
* Add a `meta.apply()` mixin that includes a mixin value.
11+
12+
* Add a `meta.module-mixins()` function which returns a map from mixin names in
13+
a module to the first-class mixins that belong to those names.
14+
15+
* Add a `meta.accepts-content()` function which returns whether or not a mixin
16+
value can take a content block.
17+
18+
* Add support for the relative color syntax from CSS Color 5. This syntax
19+
cannot be used to create Sass color values. It is always emitted as-is in the
20+
CSS output.
21+
22+
### Dart API
23+
24+
* Deprecate `Deprecation.calcInterp` since it was never actually emitted as a
25+
deprecation.
26+
27+
### Embedded Sass
28+
29+
* Fix a rare race condition where the embedded compiler could freeze when a
30+
protocol error was immediately followed by another request.
31+
132
## 1.68.0
233

334
* Fix the source spans associated with the `abs-percent` deprecation.

npm/darwin-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sass-embedded-darwin-arm64",
3-
"version": "1.68.0",
3+
"version": "1.69.1",
44
"description": "The darwin-arm64 binary for sass-embedded",
55
"repository": "sass/embedded-host-node",
66
"author": "Google Inc.",

npm/darwin-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sass-embedded-darwin-x64",
3-
"version": "1.68.0",
3+
"version": "1.69.1",
44
"description": "The darwin-x64 binary for sass-embedded",
55
"repository": "sass/embedded-host-node",
66
"author": "Google Inc.",

npm/linux-arm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sass-embedded-linux-arm",
3-
"version": "1.68.0",
3+
"version": "1.69.1",
44
"description": "The linux-arm binary for sass-embedded",
55
"repository": "sass/embedded-host-node",
66
"author": "Google Inc.",

npm/linux-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sass-embedded-linux-arm64",
3-
"version": "1.68.0",
3+
"version": "1.69.1",
44
"description": "The linux-arm64 binary for sass-embedded",
55
"repository": "sass/embedded-host-node",
66
"author": "Google Inc.",

npm/linux-ia32/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sass-embedded-linux-ia32",
3-
"version": "1.68.0",
3+
"version": "1.69.1",
44
"description": "The linux-ia32 binary for sass-embedded",
55
"repository": "sass/embedded-host-node",
66
"author": "Google Inc.",

npm/linux-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sass-embedded-linux-x64",
3-
"version": "1.68.0",
3+
"version": "1.69.1",
44
"description": "The linux-x64 binary for sass-embedded",
55
"repository": "sass/embedded-host-node",
66
"author": "Google Inc.",

npm/win32-ia32/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sass-embedded-win32-ia32",
3-
"version": "1.68.0",
3+
"version": "1.69.1",
44
"description": "The win32-ia32 binary for sass-embedded",
55
"repository": "sass/embedded-host-node",
66
"author": "Google Inc.",

npm/win32-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sass-embedded-win32-x64",
3-
"version": "1.68.0",
3+
"version": "1.69.1",
44
"description": "The win32-x64 binary for sass-embedded",
55
"repository": "sass/embedded-host-node",
66
"author": "Google Inc.",

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "sass-embedded",
3-
"version": "1.68.0",
3+
"version": "1.69.1",
44
"protocol-version": "2.3.0",
5-
"compiler-version": "1.68.0",
5+
"compiler-version": "1.69.1",
66
"description": "Node.js library that communicates with Embedded Dart Sass using the Embedded Sass protocol",
77
"repository": "sass/embedded-host-node",
88
"author": "Google Inc.",
@@ -35,14 +35,14 @@
3535
"test": "jest"
3636
},
3737
"optionalDependencies": {
38-
"sass-embedded-darwin-arm64": "1.68.0",
39-
"sass-embedded-darwin-x64": "1.68.0",
40-
"sass-embedded-linux-arm": "1.68.0",
41-
"sass-embedded-linux-arm64": "1.68.0",
42-
"sass-embedded-linux-ia32": "1.68.0",
43-
"sass-embedded-linux-x64": "1.68.0",
44-
"sass-embedded-win32-ia32": "1.68.0",
45-
"sass-embedded-win32-x64": "1.68.0"
38+
"sass-embedded-darwin-arm64": "1.69.1",
39+
"sass-embedded-darwin-x64": "1.69.1",
40+
"sass-embedded-linux-arm": "1.69.1",
41+
"sass-embedded-linux-arm64": "1.69.1",
42+
"sass-embedded-linux-ia32": "1.69.1",
43+
"sass-embedded-linux-x64": "1.69.1",
44+
"sass-embedded-win32-ia32": "1.69.1",
45+
"sass-embedded-win32-x64": "1.69.1"
4646
},
4747
"dependencies": {
4848
"@bufbuild/protobuf": "^1.0.0",

0 commit comments

Comments
 (0)