2021-07-19 19:52:09 -04:00
# TBD
2021-07-24 19:17:29 -04:00
- **feature complete, byte-for-byte support for bootstrap**
- add bootstrap v5.0.2 to ci
- run script to verify output against the last 2,500 commits to bootstrap
2021-07-19 19:52:09 -04:00
- feature complete `min` /`max` support -- special functions and `min` /`max` are now allowed as arguments
- removed dependency on `peekmore` , which sped up parsing and simplified lookahead
- emit comments inside the `@if` rule body
- fix bug in `hue(...)` function in which the value would be incorrect in when the `red` channel was the highest and the green channel was lower than the blue channel
- no longer round output from `saturation(...)` function
2021-07-24 19:17:29 -04:00
- improve handling of newlines for `@media` , `@supports` , `@at-root` , placeholder selectors, unrelated style rules, and unknown @-rules
2021-07-21 09:12:50 -04:00
- arglists can be equal to comma separated lists
2021-07-21 22:56:10 -04:00
- throw error for invalid uses of `@charset`
- more robustly parse `@else if` , allowing escaped and uppercase characters
2021-07-24 19:17:29 -04:00
- resolve two `@extend` bugs -- one in which we would incorrectly emit `a b, a > b` as a selector, even though `a b` is a superselector of `a > b` , and a feature called "three-level extend loop", in which a stylesheet where `a` extends `b` , `b` extends `c` , and `c` extends `a` would fail to include all 3 selectors in certain places
2021-07-19 19:52:09 -04:00
2021-07-10 12:57:02 -04:00
# 0.10.5
- support compressed output
- support new builtin functions `math.div` , `map.set`
- support the HWB colorspace and builtin functions `color.hwb` , `color.blackness` , `color.whiteness`
- `:is` pseudo selector is now considered an alias of `:matches` in `@extend`
- support `$keys...` argument in `map.merge`
2021-07-21 22:56:10 -04:00
- `%` now implements the modulo operation, rather than finding the remainder. this largely affects negative numbers
2021-07-10 12:57:02 -04:00
- fix parsing bug in which `/***/` in a selector would miss the closing `/`
2020-11-16 03:47:54 -05:00
# 0.10.4
2021-07-10 12:57:02 -04:00
- plain css `invert(..)` accepts numbers with any unit
- plain css imports (e.g. `@import url(foo)` or `@import "foo.css"` ) are now emitted at the top of documents
2020-11-16 03:47:54 -05:00
2020-08-15 22:25:11 -04:00
# 0.10.3
2021-07-10 12:57:02 -04:00
- hyphen followed by interpolation is not treated as subtraction, e.g. `10-#{10}` => `10 -10` rather than `0`
- function arguments do not affect variables in outer scopes (fixes [#37 ](https://github.com/connorskees/grass/issues/37 ))
- improve error messages for NaN with units passed to builtin functions
2020-08-15 22:25:11 -04:00
2020-08-14 15:55:07 -04:00
# 0.10.2
2021-07-10 12:57:02 -04:00
- use `std::fs::OpenOptions` to open files ([#35 ](https://github.com/connorskees/grass/pull/35 ) by [@MidasLamb ](https://github.com/MidasLamb ))
2020-08-14 15:55:07 -04:00
2020-08-12 16:27:16 -04:00
# 0.10.1
2020-08-07 02:24:17 -04:00
2021-07-10 12:57:02 -04:00
- **implement `@use` and the module system**
- support the filter syntax for function arguments, e.g. `alpha(opacity=1)`
- disallow certain at-rules in functions, resolving several panics
- allow vendor-prefixed special CSS functions, e.g. `-webkit-calc(...)`
- allow decimal percent selectors inside `@keyframes`
- allow vendor-prefixed `@keyframes`
- resolve parsing bug for maps involving silent comments
- allow escaped `!` in selectors
- allow multiline comments in functions
- resolve several panics on malformed input when parsing bracketed lists
- support NaN in all contexts
- add support for unicode ranges
- recognize plain CSS imports beginning with `//` , e.g. `@import "//fonts.googleapis.com/css?family=Droid+Sans";`
2021-07-21 22:56:10 -04:00
- resolve integer overflows in `@for` when bounds were equal to `i32::MIN` and `i32::MAX`
2021-07-10 12:57:02 -04:00
- allow quoted strings in default function arguments
2020-08-07 02:24:17 -04:00
2020-07-24 23:49:26 -04:00
# 0.10.0
2020-07-06 20:08:23 -04:00
2021-07-10 12:57:02 -04:00
- bugfixes for `@media` query regressions
- bugfixes for maps, arglists, and `@each`
- implement string interning for identifiers and style properties
- implement spec-compliant variable scoping
- emit `@import` when importing `url(...)` or `*.css`
- resolve all panics for malformed `@import`
- various optimizations that now allow us to compile bootstrap 10% faster than `libsass`
- errors inside builtin functions use `inspect` to print values
- bugfixes for color and map equality (e.g. `red` == `#ff0000` )
- hide unimplemented command line flags
- implement CLI options for `--quiet` , `--load-path` ([#22 ](https://github.com/connorskees/grass/pull/22 ) by @JosephLing ), `--no-charset` , `--stdin` , and `--no-unicode`
- use unicode characters in error messages by default
- allow comma separated `@import` statements ([#23 ](https://github.com/connorskees/grass/pull/23 ) by @JosephLing )
- implement and correctly parse `!optional` in `@extend`
- lazily evaluate `!default` variable values
- disallow interpolation in mixin and function names
- improve parsing for `@supports` and unknown at-rules
2020-07-24 23:49:26 -04:00
## Breaking
2021-07-10 12:57:02 -04:00
- functions now take an `Options` struct
2020-07-06 20:08:23 -04:00
2020-07-06 10:24:29 -04:00
# 0.9.5
A small release fixing potential build issues and improving documentation.
This release is not published to NPM due to [a bug ](https://github.com/rustwasm/wasm-pack/issues/837 )
in `wasm-pack` .
2020-07-04 21:30:42 -04:00
# 0.9.4
2020-07-04 20:50:53 -04:00
- implement `@keyframes`
2020-07-04 21:30:42 -04:00
- don't strip newlines following comments in selectors
2020-07-04 20:50:53 -04:00
2020-07-04 14:38:12 -04:00
# 0.9.3
2020-07-03 23:49:31 -04:00
2020-07-04 20:50:53 -04:00
- fix parsing bugs for empty bracketed lists
- partially implement inverse units
- remove all remaining `todo!()` s from binary and unary ops
- parse keywords case sensitively
- various optimizations that make bulma about _6x faster_ to compile
2020-07-03 23:49:31 -04:00
2020-06-22 11:07:54 -04:00
# 0.9.2
2020-06-23 04:36:15 -04:00
- implement builtin functions `min` and `max`
- bugfixes for `@extend` and `selector-unify`
2020-07-02 10:51:49 -04:00
- allow `@content` to take arguments
2020-07-03 21:21:26 -04:00
- bugfixes for `@content` , for example it will no longer infinitely recurse for chained mixins
2020-07-03 06:53:55 -04:00
- better support queries in `@media`
2020-07-02 10:51:49 -04:00
- bugfixes for `@media`
2020-07-03 06:53:55 -04:00
- add support for splats, e.g. `rgba([1, 2, 3, 4]...)`
- resolve a number of parsing bugs for `@for` , variable declarations, selectors, and maps
2020-07-03 21:21:26 -04:00
- completely rewrite how styles are evaluated, allowing short circuiting of values like `false and unit(foo)` and `if(true, foo, unit(foo)`
2020-06-22 11:07:54 -04:00
2020-06-16 22:00:45 -04:00
# 0.9.1
2020-06-18 18:14:35 -04:00
2020-06-20 06:31:43 -04:00
This release is largely focused on `@extend` , but it also resolves some regressions resulting from the new parser.
2020-06-23 04:36:15 -04:00
- **implement `@extend` **
- properly document new API
- MVP implementation of `@supports`
- fix regression in which `@at-root` would panic when placed after a ruleset
- fix regression related to `@mixin` and `@function` scoping when combined with outer, local variables
- remove most remaining `unwrap` s that could result in a panic
2020-06-16 22:00:45 -04:00
2020-06-16 20:40:19 -04:00
# 0.9.0
This release is focused on setting up the groundwork for implementing `@extend` as well
as being able to compile Bootstrap.
2020-06-23 04:36:15 -04:00
- implement all builtin selector functions
- `selector-append`
- `selector-extend`
- `selector-nest`
- `selector-parse`
- `selector-replace`
- `selector-unify`
- `simple-selectors`
- `is-superselector`
- implement builtin function `content-exists`
- allow `@import` , `@warn` , and `@debug` in all contexts, such as inside `@mixin`
- refactor control flow evaluation, resolving some issues blocking Bootstrap
2020-06-16 20:40:19 -04:00
#### Breaking Changes
2020-06-23 04:36:15 -04:00
- remove the `StyleSheet` struct in favor of freestanding functions, `from_string` and `from_path`
2020-06-16 20:40:19 -04:00
2020-05-25 16:23:10 -04:00
# 0.8.3
This release is largely focused on performance and robustness
2020-06-23 04:36:15 -04:00
- implement smallint optimization for numbers, making some benchmarks 50% faster
- remove `bimap` as a dependency for storing named colors in favor of an ad hoc, more specialized data structure
- remove _dozens_ of panics on malformed input
- use `beef::Cow` instead of `std::borrow::Cow`
- increase code coverage to 80%
2020-05-25 16:23:10 -04:00
# 0.8.2
This release contains significant (>10x) improvements for WASM speed.
Performance is now comparable to libsass bindings with `node-sass` as
well as `dart-sass` with dart2js. It is, however, roughly 4x slower than
native `grass` .