Skip to content

Commit 6eda68d

Browse files
authored
Merge pull request #262 from sass/merge-main
Merge main into feature.color-4
2 parents 9438f2a + 1a1aba0 commit 6eda68d

File tree

11 files changed

+76
-21
lines changed

11 files changed

+76
-21
lines changed

CHANGELOG.md

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,57 @@
1+
## 1.69.5
2+
3+
### JS API
4+
5+
* Compatibility with Node.js 21.0.0.
6+
7+
## 1.69.4
8+
9+
* No user-visible changes.
10+
11+
## 1.69.3
12+
13+
### Embedded Sass
14+
15+
* Fix TypeScript type locations in `package.json`.
16+
17+
## 1.69.2
18+
19+
### JS API
20+
21+
* Fix a bug where Sass crashed when running in the browser if there was a global
22+
variable named `process`.
23+
24+
## 1.69.1
25+
26+
* No user-visible changes.
27+
28+
## 1.69.0
29+
30+
* Add a `meta.get-mixin()` function that returns a mixin as a first-class Sass
31+
value.
32+
33+
* Add a `meta.apply()` mixin that includes a mixin value.
34+
35+
* Add a `meta.module-mixins()` function which returns a map from mixin names in
36+
a module to the first-class mixins that belong to those names.
37+
38+
* Add a `meta.accepts-content()` function which returns whether or not a mixin
39+
value can take a content block.
40+
41+
* Add support for the relative color syntax from CSS Color 5. This syntax
42+
cannot be used to create Sass color values. It is always emitted as-is in the
43+
CSS output.
44+
45+
### Dart API
46+
47+
* Deprecate `Deprecation.calcInterp` since it was never actually emitted as a
48+
deprecation.
49+
50+
### Embedded Sass
51+
52+
* Fix a rare race condition where the embedded compiler could freeze when a
53+
protocol error was immediately followed by another request.
54+
155
## 1.68.0
256

357
* 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.5",
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.5",
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.5",
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.5",
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.5",
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.5",
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.5",
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.5",
44
"description": "The win32-x64 binary for sass-embedded",
55
"repository": "sass/embedded-host-node",
66
"author": "Google Inc.",

package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
{
22
"name": "sass-embedded",
3-
"version": "1.68.0",
3+
"version": "1.69.5",
44
"protocol-version": "2.3.0",
5-
"compiler-version": "1.68.0",
5+
"compiler-version": "1.69.5",
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.",
99
"license": "MIT",
1010
"exports": {
1111
"import": {
12-
"types": "./dist/lib/index.m.d.ts",
12+
"types": "./dist/types/index.m.d.ts",
1313
"default": "./dist/lib/index.mjs"
1414
},
15-
"types": "./dist/lib/index.d.ts",
15+
"types": "./dist/types/index.d.ts",
1616
"default": "./dist/lib/index.js"
1717
},
1818
"main": "dist/lib/index.js",
@@ -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.5",
39+
"sass-embedded-darwin-x64": "1.69.5",
40+
"sass-embedded-linux-arm": "1.69.5",
41+
"sass-embedded-linux-arm64": "1.69.5",
42+
"sass-embedded-linux-ia32": "1.69.5",
43+
"sass-embedded-linux-x64": "1.69.5",
44+
"sass-embedded-win32-ia32": "1.69.5",
45+
"sass-embedded-win32-x64": "1.69.5"
4646
},
4747
"dependencies": {
4848
"@bufbuild/protobuf": "^1.0.0",

0 commit comments

Comments
 (0)