Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the URL for the @-moz-document deprecation message #1339

Merged
merged 2 commits into from Jun 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,7 @@
## 1.34.1

* Fix the URL for the `@-moz-document` deprecation message.

## 1.34.0

* Don't emit the same warning in the same location multiple times.
Expand Down
2 changes: 1 addition & 1 deletion lib/src/parse/stylesheet.dart
Expand Up @@ -1338,7 +1338,7 @@ abstract class StylesheetParser extends Parser {
"@-moz-document is deprecated and support will be removed in Dart "
"Sass 2.0.0.\n"
"\n"
"For details, see http://bit.ly/moz-document.",
"For details, see http://bit.ly/MozDocument.",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should it use a https link ?

span: span,
deprecation: true);
}
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
@@ -1,5 +1,5 @@
name: sass
version: 1.34.0
version: 1.34.1-dev
description: A Sass implementation in Dart.
author: Sass Team
homepage: https://github.com/sass/dart-sass
Expand Down