* Avoid recursively listing directories when finding the canonical name of a
file on case-insensitive filesystems.
* Fix importing files relative to `package:`-imported files.
* Don't claim that "package:" URLs aren't supported when they actually are.
Command-Line Interface
* Add a `--no-charset` flag. If this flag is set, Sass will never emit a
`charset` declaration or a byte-order mark, even if the CSS file contains
non-ASCII characters.
Dart API
* Add a `charset` option to `compile()`, `compileString()`, `compileAsync()` and
`compileStringAsync()`. If this option is set to `false`, Sass will never emit
a `charset` declaration or a byte-order mark, even if the CSS file contains
non-ASCII characters.
* Explicitly require that importers' `canonicalize()` methods be able to take
paths relative to their outputs as valid inputs. This isn't considered a
breaking change because the importer infrastructure already required this in
practice.