|
1 | | -# v0.17.0 - 2020-4-24 |
| 1 | +# v0.18.0 - 2021-05-11 |
| 2 | + |
| 3 | +- [breaking] Add basic postcss 8 support (older versions of PostCSS no longer compatible) |
| 4 | + - Thank you to [@delucis](https://github.com/delucis) for the [contribution](https://github.com/MadLittleMods/postcss-css-variables/pull/129) |
| 5 | + |
| 6 | + |
| 7 | +# v0.17.0 - 2020-04-24 |
2 | 8 |
|
3 | 9 | - Expand variables in AtRule properties |
4 | 10 | - Thank you to [@pvande](https://github.com/pvande) for the [contribution](https://github.com/MadLittleMods/postcss-css-variables/pull/104) |
5 | 11 | - Merged via https://github.com/MadLittleMods/postcss-css-variables/pull/121 |
6 | 12 |
|
7 | | -# v0.16.0 - 2020-4-24 |
| 13 | +# v0.16.0 - 2020-04-24 |
8 | 14 |
|
9 | 15 | - Add ability to pass callback function to `options.preserve` to determine whether to preserve declaration |
10 | 16 | - Thank you to [@ekatioz](https://github.com/ekatioz) for the [contribution](https://github.com/MadLittleMods/postcss-css-variables/pull/116) |
11 | 17 |
|
12 | | -# v0.15.0 - 2020-4-24 |
| 18 | +# v0.15.0 - 2020-04-24 |
13 | 19 |
|
14 | 20 | - Fix algorithm to find balanced `var()` pairs and nested parenthesis |
15 | 21 | - Thank you to [@Poetro](https://github.com/Poetro) for the [contribution](https://github.com/MadLittleMods/postcss-css-variables/pull/112) |
|
19 | 25 | - Fix regex in `resolve-value.js` to allow nested CSS functions |
20 | 26 | - Thank you to [@juliovedovatto](https://github.com/juliovedovatto) for the [contribution](https://github.com/MadLittleMods/postcss-css-variables/pull/97) |
21 | 27 |
|
22 | | -# v0.13.0 - 2019-6-17 |
| 28 | +# v0.13.0 - 2019-06-17 |
23 | 29 |
|
24 | 30 | - Add `options.preserveAtRulesOrder` so media queries are outputted in the order they are defined (as expected) |
25 | 31 | - Thank you to [@erikthalen](https://github.com/erikthalen) for the [contribution](https://github.com/MadLittleMods/postcss-css-variables/pull/92) via https://github.com/MadLittleMods/postcss-css-variables/pull/101 |
26 | 32 | - Remove `calc` from readme table of contents for non-existent section |
27 | 33 | - Thank you to [@AlexandreArpin](https://github.com/AlexandreArpin) for the [contribution](https://github.com/MadLittleMods/postcss-css-variables/pull/99) |
28 | 34 |
|
29 | | -# v0.12.0 - 2019-2-21 |
| 35 | +# v0.12.0 - 2019-02-21 |
30 | 36 |
|
31 | 37 | - Accept whitespace in `var( --var )` expression |
32 | 38 | - Thank you to [@benwest](https://github.com/benwest) for the [contribution](https://github.com/MadLittleMods/postcss-css-variables/pull/93) |
33 | 39 |
|
34 | | -# v0.11.0 - 2018-10-9 |
| 40 | +# v0.11.0 - 2018-10-09 |
35 | 41 |
|
36 | 42 | - Fix JS-defined variables using `isImportant`, https://github.com/MadLittleMods/postcss-css-variables/pull/87 |
37 | 43 |
|
38 | | -# v0.10.0 - 2018-9-25 |
| 44 | +# v0.10.0 - 2018-09-25 |
39 | 45 |
|
40 | 46 | - Cast `opts.variables` variable values to string |
41 | 47 | - Thank you to [@shonie](https://github.com/shonie) for the [contribution](https://github.com/MadLittleMods/postcss-css-variables/pull/84) |
42 | 48 |
|
43 | | -# v0.9.0 - 2018-6-26 |
| 49 | +# v0.9.0 - 2018-06-26 |
44 | 50 |
|
45 | 51 | - Adds `opts.preserveInjectedVariables`, which when set to `false`, removes the `:root { ... }` custom property declarations added via `opts.variables` |
46 | 52 | - Thank you to [@akdetrick](https://github.com/akdetrick) for the [contribution](https://github.com/MadLittleMods/postcss-css-variables/pull/74) |
47 | 53 |
|
48 | | -# v0.8.1 - 2018-3-21 |
| 54 | +# v0.8.1 - 2018-03-21 |
49 | 55 |
|
50 | 56 | - Log `undefined` variables (available in `result.warnings()`) |
51 | 57 | - Thank you to [@pixeldrew](https://github.com/pixeldrew) for the [contribution](https://github.com/MadLittleMods/postcss-css-variables/pull/69) |
52 | 58 |
|
53 | | -# v0.8.0 - 2017-8-8 |
| 59 | +# v0.8.0 - 2017-08-08 |
54 | 60 |
|
55 | 61 | - Remove PostCSS `moveTo`/`append` deprecation warnings, [#50](https://github.com/MadLittleMods/postcss-css-variables/issues/50) |
56 | 62 | - Thank you to [@modosc](https://github.com/modosc) for the [contribution](https://github.com/MadLittleMods/postcss-css-variables/pull/56) |
57 | 63 |
|
58 | | -# v0.7.0 - 2017-3-12 |
| 64 | +# v0.7.0 - 2017-03-12 |
59 | 65 |
|
60 | 66 | - Resolve `var` usage in fallbacks, [#37](https://github.com/MadLittleMods/postcss-css-variables/issues/37) |
61 | 67 | - Thank you to [@asvny](https://github.com/asvny) and [@marklu](https://github.com/marklu) for the contribution, [#39](https://github.com/MadLittleMods/postcss-css-variables/issues/39) -> [#49](https://github.com/MadLittleMods/postcss-css-variables/pull/49) |
62 | 68 |
|
63 | | -# v0.6.0 - 2016-9-23 |
| 69 | +# v0.6.0 - 2016-09-23 |
64 | 70 |
|
65 | 71 | - Update/refactor readme |
66 | 72 | - Thank you to [@isiahmeadows](github.com/isiahmeadows) for the [contribution](https://github.com/MadLittleMods/postcss-css-variables/pull/36) |
67 | 73 | - Use string value for `undefined` variables to play nice with other plugins downstream |
68 | 74 | - Thank you to [@vincentorback](github.com/vincentorback) for the [contribution](https://github.com/MadLittleMods/postcss-css-variables/pull/44) |
69 | 75 |
|
70 | | -# v0.5.2 - 2016-8-24 |
| 76 | +# v0.5.2 - 2016-08-24 |
71 | 77 |
|
72 | 78 | - Fix [#42](https://github.com/MadLittleMods/postcss-css-variables/issues/42) where `opts.preserve` was not working inside at-rules |
73 | 79 | - Thank you to [@muftiev](github.com/muftiev) for the [contribution](https://github.com/MadLittleMods/postcss-css-variables/pull/43) |
|
77 | 83 | - Fix [postcss/postcss#611](https://github.com/postcss/postcss/issues/611) where we were trying to remove the root node on clean up |
78 | 84 | - Improved test setup |
79 | 85 |
|
80 | | -# v0.5.0 - 2015-9-12 |
| 86 | +# v0.5.0 - 2015-09-12 |
81 | 87 |
|
82 | 88 | - Upgrade to PostCSS v5. Fix [#20](https://github.com/MadLittleMods/postcss-css-variables/issues/20) |
83 | 89 |
|
84 | | -# v0.4.0 - 2015-7-2 |
| 90 | +# v0.4.0 - 2015-07-02 |
85 | 91 |
|
86 | 92 | - Fix [#15](https://github.com/MadLittleMods/postcss-css-variables/issues/15) - Remove slowness from cloning the `root` with `node.clone().removeAll()`. Now using `./lib/shallow-clone-node.js` to avoid cloning children which will get removed right after. - Thank you to [@ddprrt](https://github.com/ddprrt) for bringing up the slowness issue in this article, [PostCSS misconceptions](https://medium.com/@ddprrt/postcss-misconceptions-faf5dc5038df). |
87 | 93 |
|
88 | | -# v0.3.9 - 2015-6-29 |
| 94 | +# v0.3.9 - 2015-06-29 |
89 | 95 |
|
90 | 96 | - Remove `opts` global leak. Fix [#13](https://github.com/MadLittleMods/postcss-css-variables/issues/13) |
91 | 97 |
|
92 | | -# v0.3.8 - 2015-5-28 |
| 98 | +# v0.3.8 - 2015-05-28 |
93 | 99 |
|
94 | 100 | - Add support for pseudo selectors `:hover` `:before` |
95 | 101 |
|
96 | | -# v0.3.7 - 2015-5-27 |
| 102 | +# v0.3.7 - 2015-05-27 |
97 | 103 |
|
98 | 104 | - Fix [#7](https://github.com/MadLittleMods/postcss-css-variables/issues/7): Support for child combinator |
99 | 105 | - Added tests for child-combinator/direct-descendant coverage |
100 | 106 |
|
101 | | -# v0.3.6 - 2015-5-21 |
| 107 | +# v0.3.6 - 2015-05-21 |
102 | 108 |
|
103 | 109 | - Fix [#6](https://github.com/MadLittleMods/postcss-css-variables/issues/6). Variable usage in comma separated selector to use proper scope |
104 | 110 |
|
105 | | -# v0.3.5 - 2015-5-12 |
| 111 | +# v0.3.5 - 2015-05-12 |
106 | 112 |
|
107 | 113 | - Big refactor of code to reduce cyclomatic complexity. Still needs work though. |
108 | 114 | - Fix variable referencing another variable resolution when being changed by at-rule in non-root rule |
109 | 115 |
|
110 | | -# v0.3.4 - 2015-5-12 |
| 116 | +# v0.3.4 - 2015-05-12 |
111 | 117 |
|
112 | 118 | - Fix variable referencing another variable resolution when being changed by at-rule |
113 | 119 |
|
114 | | -# v0.3.3 - 2015-5-11 |
| 120 | +# v0.3.3 - 2015-05-11 |
115 | 121 |
|
116 | 122 | - Add support for last piece of combinator chain in selector resolution matching. - `.foo + .bar` can match variables declared in `.bar` |
117 | 123 |
|
118 | | -# v0.3.1 - 2015-5-5 |
| 124 | +# v0.3.1 - 2015-05-05 |
119 | 125 |
|
120 | 126 | - Large overhaul of code to make it more robust on proper scope resolution. |
121 | 127 | - Fix [#2]](https://github.com/MadLittleMods/postcss-css-variables/issues/2) |
122 | 128 |
|
123 | | -# v0.2.3 - 2015-5-4 |
| 129 | +# v0.2.3 - 2015-05-04 |
124 | 130 |
|
125 | 131 | - Add support for CSS4 descendant selector `>>` syntax |
126 | 132 |
|
127 | | -# v0.2.2 - 2015-5-1 |
| 133 | +# v0.2.2 - 2015-05-01 |
128 | 134 |
|
129 | 135 | - Automatically prefix any variables defined in `options.variables` with `--` (according to CSS custom property syntax). |
130 | 136 |
|
131 | | -# v0.2.1 - 2015-4-30 |
| 137 | +# v0.2.1 - 2015-04-30 |
132 | 138 |
|
133 | 139 | - Added support for descendant selector nesting instead of just physical space nesting |
134 | 140 | - Fixed issue with comma separated rules. It was throwing a undefined is not a function error |
135 | 141 | - Moved to external scope check `isUnderScope` instead of integrated into `resolveValue` |
136 | 142 | - Added test for empty `var()` call. See [test/fixtures/empty-var-func.css](https://github.com/MadLittleMods/postcss-css-variables/blob/master/test/fixtures/empty-var-func.css) |
137 | 143 |
|
138 | | -# v0.1.0 - 2015-4-29 |
| 144 | +# v0.1.0 - 2015-04-29 |
139 | 145 |
|
140 | 146 | - First release |
0 commit comments