From 1e01172550df8a97736fffe9441c1e4ae1a44194 Mon Sep 17 00:00:00 2001 From: Sass Bot Date: Tue, 10 Oct 2023 00:04:30 +0000 Subject: [PATCH] Update Dart Sass version and release --- CHANGELOG.md | 31 +++++++++++++++++++++++++++++++ npm/darwin-arm64/package.json | 2 +- npm/darwin-x64/package.json | 2 +- npm/linux-arm/package.json | 2 +- npm/linux-arm64/package.json | 2 +- npm/linux-ia32/package.json | 2 +- npm/linux-x64/package.json | 2 +- npm/win32-ia32/package.json | 2 +- npm/win32-x64/package.json | 2 +- package.json | 20 ++++++++++---------- 10 files changed, 49 insertions(+), 18 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e56a37ea..6a9b6594 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,34 @@ +## 1.69.1 + +* No user-visible changes. + +## 1.69.0 + +* Add a `meta.get-mixin()` function that returns a mixin as a first-class Sass + value. + +* Add a `meta.apply()` mixin that includes a mixin value. + +* Add a `meta.module-mixins()` function which returns a map from mixin names in + a module to the first-class mixins that belong to those names. + +* Add a `meta.accepts-content()` function which returns whether or not a mixin + value can take a content block. + +* Add support for the relative color syntax from CSS Color 5. This syntax + cannot be used to create Sass color values. It is always emitted as-is in the + CSS output. + +### Dart API + +* Deprecate `Deprecation.calcInterp` since it was never actually emitted as a + deprecation. + +### Embedded Sass + +* Fix a rare race condition where the embedded compiler could freeze when a + protocol error was immediately followed by another request. + ## 1.68.0 * Fix the source spans associated with the `abs-percent` deprecation. diff --git a/npm/darwin-arm64/package.json b/npm/darwin-arm64/package.json index 2bd3811a..7228181c 100644 --- a/npm/darwin-arm64/package.json +++ b/npm/darwin-arm64/package.json @@ -1,6 +1,6 @@ { "name": "sass-embedded-darwin-arm64", - "version": "1.68.0", + "version": "1.69.1", "description": "The darwin-arm64 binary for sass-embedded", "repository": "sass/embedded-host-node", "author": "Google Inc.", diff --git a/npm/darwin-x64/package.json b/npm/darwin-x64/package.json index 08d5ca1c..ec5c6225 100644 --- a/npm/darwin-x64/package.json +++ b/npm/darwin-x64/package.json @@ -1,6 +1,6 @@ { "name": "sass-embedded-darwin-x64", - "version": "1.68.0", + "version": "1.69.1", "description": "The darwin-x64 binary for sass-embedded", "repository": "sass/embedded-host-node", "author": "Google Inc.", diff --git a/npm/linux-arm/package.json b/npm/linux-arm/package.json index cdd33f03..b942783a 100644 --- a/npm/linux-arm/package.json +++ b/npm/linux-arm/package.json @@ -1,6 +1,6 @@ { "name": "sass-embedded-linux-arm", - "version": "1.68.0", + "version": "1.69.1", "description": "The linux-arm binary for sass-embedded", "repository": "sass/embedded-host-node", "author": "Google Inc.", diff --git a/npm/linux-arm64/package.json b/npm/linux-arm64/package.json index 4719d518..7c7d7421 100644 --- a/npm/linux-arm64/package.json +++ b/npm/linux-arm64/package.json @@ -1,6 +1,6 @@ { "name": "sass-embedded-linux-arm64", - "version": "1.68.0", + "version": "1.69.1", "description": "The linux-arm64 binary for sass-embedded", "repository": "sass/embedded-host-node", "author": "Google Inc.", diff --git a/npm/linux-ia32/package.json b/npm/linux-ia32/package.json index 8d48cf15..711a3697 100644 --- a/npm/linux-ia32/package.json +++ b/npm/linux-ia32/package.json @@ -1,6 +1,6 @@ { "name": "sass-embedded-linux-ia32", - "version": "1.68.0", + "version": "1.69.1", "description": "The linux-ia32 binary for sass-embedded", "repository": "sass/embedded-host-node", "author": "Google Inc.", diff --git a/npm/linux-x64/package.json b/npm/linux-x64/package.json index 4bc67f55..5e3be55b 100644 --- a/npm/linux-x64/package.json +++ b/npm/linux-x64/package.json @@ -1,6 +1,6 @@ { "name": "sass-embedded-linux-x64", - "version": "1.68.0", + "version": "1.69.1", "description": "The linux-x64 binary for sass-embedded", "repository": "sass/embedded-host-node", "author": "Google Inc.", diff --git a/npm/win32-ia32/package.json b/npm/win32-ia32/package.json index 4137c236..bedbf810 100644 --- a/npm/win32-ia32/package.json +++ b/npm/win32-ia32/package.json @@ -1,6 +1,6 @@ { "name": "sass-embedded-win32-ia32", - "version": "1.68.0", + "version": "1.69.1", "description": "The win32-ia32 binary for sass-embedded", "repository": "sass/embedded-host-node", "author": "Google Inc.", diff --git a/npm/win32-x64/package.json b/npm/win32-x64/package.json index 062fbdc1..a3a551ee 100644 --- a/npm/win32-x64/package.json +++ b/npm/win32-x64/package.json @@ -1,6 +1,6 @@ { "name": "sass-embedded-win32-x64", - "version": "1.68.0", + "version": "1.69.1", "description": "The win32-x64 binary for sass-embedded", "repository": "sass/embedded-host-node", "author": "Google Inc.", diff --git a/package.json b/package.json index 567126ac..da6a9477 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,8 @@ { "name": "sass-embedded", - "version": "1.68.0", + "version": "1.69.1", "protocol-version": "2.3.0", - "compiler-version": "1.68.0", + "compiler-version": "1.69.1", "description": "Node.js library that communicates with Embedded Dart Sass using the Embedded Sass protocol", "repository": "sass/embedded-host-node", "author": "Google Inc.", @@ -35,14 +35,14 @@ "test": "jest" }, "optionalDependencies": { - "sass-embedded-darwin-arm64": "1.68.0", - "sass-embedded-darwin-x64": "1.68.0", - "sass-embedded-linux-arm": "1.68.0", - "sass-embedded-linux-arm64": "1.68.0", - "sass-embedded-linux-ia32": "1.68.0", - "sass-embedded-linux-x64": "1.68.0", - "sass-embedded-win32-ia32": "1.68.0", - "sass-embedded-win32-x64": "1.68.0" + "sass-embedded-darwin-arm64": "1.69.1", + "sass-embedded-darwin-x64": "1.69.1", + "sass-embedded-linux-arm": "1.69.1", + "sass-embedded-linux-arm64": "1.69.1", + "sass-embedded-linux-ia32": "1.69.1", + "sass-embedded-linux-x64": "1.69.1", + "sass-embedded-win32-ia32": "1.69.1", + "sass-embedded-win32-x64": "1.69.1" }, "dependencies": { "@bufbuild/protobuf": "^1.0.0",