diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e3693fdb..f7226993f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 1.89.0 + +* Allow the Node package importer to load files even when there are multiple + potential resolutions, as long as those resolutions all point to the same + file. + ## 1.88.0 * Allow custom properties with empty values (such as `--var:;`). diff --git a/lib/src/importer/node_package.dart b/lib/src/importer/node_package.dart index 3a1f4e2b4..3769e292d 100644 --- a/lib/src/importer/node_package.dart +++ b/lib/src/importer/node_package.dart @@ -271,6 +271,7 @@ class NodePackageImporter extends Importer { return null; }) .nonNulls + .toSet() .toList(); return switch (matches) { diff --git a/pkg/sass-parser/CHANGELOG.md b/pkg/sass-parser/CHANGELOG.md index ccf8f716c..746bd40db 100644 --- a/pkg/sass-parser/CHANGELOG.md +++ b/pkg/sass-parser/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.4.22 + +* No user-visible changes. + ## 0.4.21 * No user-visible changes. diff --git a/pkg/sass-parser/package.json b/pkg/sass-parser/package.json index c34bb4dba..add3ca1b0 100644 --- a/pkg/sass-parser/package.json +++ b/pkg/sass-parser/package.json @@ -1,6 +1,6 @@ { "name": "sass-parser", - "version": "0.4.21", + "version": "0.4.22", "description": "A PostCSS-compatible wrapper of the official Sass parser", "repository": "sass/sass", "author": "Google Inc.", diff --git a/pkg/sass_api/CHANGELOG.md b/pkg/sass_api/CHANGELOG.md index 0c31d4580..a5edae7cd 100644 --- a/pkg/sass_api/CHANGELOG.md +++ b/pkg/sass_api/CHANGELOG.md @@ -1,3 +1,7 @@ +## 15.6.0 + +* No user-visible changes. + ## 15.5.0 * No user-visible changes. diff --git a/pkg/sass_api/pubspec.yaml b/pkg/sass_api/pubspec.yaml index b4689708d..47a3946d8 100644 --- a/pkg/sass_api/pubspec.yaml +++ b/pkg/sass_api/pubspec.yaml @@ -2,7 +2,7 @@ name: sass_api # Note: Every time we add a new Sass AST node, we need to bump the *major* # version because it's a breaking change for anyone who's implementing the # visitor interface(s). -version: 15.5.0 +version: 15.6.0 description: Additional APIs for Dart Sass. homepage: https://github.com/sass/dart-sass @@ -10,7 +10,7 @@ environment: sdk: ">=3.6.0 <4.0.0" dependencies: - sass: 1.88.0 + sass: 1.89.0 dev_dependencies: dartdoc: ^8.0.14 diff --git a/pubspec.yaml b/pubspec.yaml index 1c5f1dd00..3054e31ee 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: sass -version: 1.88.0 +version: 1.89.0 description: A Sass implementation in Dart. homepage: https://github.com/sass/dart-sass