|
1 |
| - |
2 |
| -# v0.9.0 - 2018-6-26 |
3 |
| - |
4 |
| - - Adds `opts.preserveInjectedVariables`, which when set to `false`, removes the `:root { ... }` custom property declarations added via `opts.variables` |
5 |
| - - Thank you to [@akdetrick](https://github.com/akdetrick) for the [contribution](https://github.com/MadLittleMods/postcss-css-variables/pull/74) |
6 |
| - |
7 |
| - |
8 |
| -# v0.8.1 - 2018-3-21 |
9 |
| - |
10 |
| - - Log `undefined` variables (available in `result.warnings()`) |
11 |
| - - Thank you to [@pixeldrew](https://github.com/pixeldrew) for the [contribution](https://github.com/MadLittleMods/postcss-css-variables/pull/69) |
12 |
| - |
13 |
| - |
14 |
| -# v0.8.0 - 2017-8-8 |
15 |
| - |
16 |
| - - Remove PostCSS `moveTo`/`append` deprecation warnings, [#50](https://github.com/MadLittleMods/postcss-css-variables/issues/50) |
17 |
| - - Thank you to [@modosc](https://github.com/modosc) for the [contribution](https://github.com/MadLittleMods/postcss-css-variables/pull/56) |
18 |
| - |
19 |
| - |
20 |
| -# v0.7.0 - 2017-3-12 |
21 |
| - |
22 |
| - - Resolve `var` usage in fallbacks, [#37](https://github.com/MadLittleMods/postcss-css-variables/issues/37) |
23 |
| - - 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) |
24 |
| - |
25 |
| - |
26 |
| -# v0.6.0 - 2016-9-23 |
27 |
| - |
28 |
| - - Update/refactor readme |
29 |
| - - Thank you to [@isiahmeadows](github.com/isiahmeadows) for the [contribution](https://github.com/MadLittleMods/postcss-css-variables/pull/36) |
30 |
| - - Use string value for `undefined` variables to play nice with other plugins downstream |
31 |
| - - Thank you to [@vincentorback](github.com/vincentorback) for the [contribution](https://github.com/MadLittleMods/postcss-css-variables/pull/44) |
32 |
| - |
33 |
| - |
34 |
| -# v0.5.2 - 2016-8-24 |
35 |
| - |
36 |
| - - Fix [#42](https://github.com/MadLittleMods/postcss-css-variables/issues/42) where `opts.preserve` was not working inside at-rules |
37 |
| - - Thank you to [@muftiev](github.com/muftiev) for the [contribution](https://github.com/MadLittleMods/postcss-css-variables/pull/43) |
38 |
| - |
39 |
| - |
40 |
| -# v0.5.1 - 2015-10-24 |
41 |
| - |
42 |
| - - Fix [postcss/postcss#611](https://github.com/postcss/postcss/issues/611) where we were trying to remove the root node on clean up |
43 |
| - - Improved test setup |
44 |
| - |
45 |
| -# v0.5.0 - 2015-9-12 |
46 |
| - |
47 |
| - - Upgrade to PostCSS v5. Fix [#20](https://github.com/MadLittleMods/postcss-css-variables/issues/20) |
48 |
| - |
49 |
| -# v0.4.0 - 2015-7-2 |
50 |
| - |
51 |
| - - Fix [#15](https://github.com/MadLittleMods/postcss-css-variables/issues/15) |
52 |
| - - 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. |
53 |
| - - 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). |
54 |
| - |
55 |
| - |
56 |
| - |
57 |
| -# v0.3.9 - 2015-6-29 |
58 |
| - |
59 |
| - - Remove `opts` global leak. Fix [#13](https://github.com/MadLittleMods/postcss-css-variables/issues/13) |
60 |
| - |
61 |
| - |
62 |
| -# v0.3.8 - 2015-5-28 |
63 |
| - |
64 |
| - - Add support for pseudo selectors `:hover` `:before` |
65 |
| - |
66 |
| -# v0.3.7 - 2015-5-27 |
67 |
| - |
68 |
| - - Fix [#7](https://github.com/MadLittleMods/postcss-css-variables/issues/7): Support for child combinator |
69 |
| - - Added tests for child-combinator/direct-descendant coverage |
70 |
| - |
71 |
| -# v0.3.6 - 2015-5-21 |
72 |
| - |
73 |
| - - Fix [#6](https://github.com/MadLittleMods/postcss-css-variables/issues/6). Variable usage in comma separated selector to use proper scope |
74 |
| - |
75 |
| -# v0.3.5 - 2015-5-12 |
76 |
| - |
77 |
| - - Big refactor of code to reduce cyclomatic complexity. Still needs work though. |
78 |
| - - Fix variable referencing another variable resolution when being changed by at-rule in non-root rule |
79 |
| - |
80 |
| -# v0.3.4 - 2015-5-12 |
81 |
| - |
82 |
| - - Fix variable referencing another variable resolution when being changed by at-rule |
83 |
| - |
84 |
| -# v0.3.3 - 2015-5-11 |
85 |
| - |
86 |
| - - Add support for last piece of combinator chain in selector resolution matching. |
87 |
| - - `.foo + .bar` can match variables declared in `.bar` |
88 |
| - |
89 |
| -# v0.3.1 - 2015-5-5 |
90 |
| - |
91 |
| - - Large overhaul of code to make it more robust on proper scope resolution. |
92 |
| - - Fix [#2]](https://github.com/MadLittleMods/postcss-css-variables/issues/2) |
93 |
| - |
94 |
| -# v0.2.3 - 2015-5-4 |
95 |
| - |
96 |
| - - Add support for CSS4 descendant selector `>>` syntax |
97 |
| - |
98 |
| -# v0.2.2 - 2015-5-1 |
99 |
| - |
100 |
| - - Automatically prefix any variables defined in `options.variables` with `--` (according to CSS custom property syntax). |
101 |
| - |
102 |
| -# v0.2.1 - 2015-4-30 |
103 |
| - |
104 |
| - - Added support for descendant selector nesting instead of just physical space nesting |
105 |
| - - Fixed issue with comma separated rules. It was throwing a undefined is not a function error |
106 |
| - - Moved to external scope check `isUnderScope` instead of integrated into `resolveValue` |
107 |
| - - 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) |
108 |
| - |
109 |
| -# v0.1.0 - 2015-4-29 |
110 |
| - |
111 |
| - - First release |
| 1 | + |
| 2 | +# v0.9.0 - 2018-6-26 |
| 3 | + |
| 4 | + - Adds `opts.preserveInjectedVariables`, which when set to `false`, removes the `:root { ... }` custom property declarations added via `opts.variables` |
| 5 | + - Thank you to [@akdetrick](https://github.com/akdetrick) for the [contribution](https://github.com/MadLittleMods/postcss-css-variables/pull/74) |
| 6 | + |
| 7 | + |
| 8 | +# v0.8.1 - 2018-3-21 |
| 9 | + |
| 10 | + - Log `undefined` variables (available in `result.warnings()`) |
| 11 | + - Thank you to [@pixeldrew](https://github.com/pixeldrew) for the [contribution](https://github.com/MadLittleMods/postcss-css-variables/pull/69) |
| 12 | + |
| 13 | + |
| 14 | +# v0.8.0 - 2017-8-8 |
| 15 | + |
| 16 | + - Remove PostCSS `moveTo`/`append` deprecation warnings, [#50](https://github.com/MadLittleMods/postcss-css-variables/issues/50) |
| 17 | + - Thank you to [@modosc](https://github.com/modosc) for the [contribution](https://github.com/MadLittleMods/postcss-css-variables/pull/56) |
| 18 | + |
| 19 | + |
| 20 | +# v0.7.0 - 2017-3-12 |
| 21 | + |
| 22 | + - Resolve `var` usage in fallbacks, [#37](https://github.com/MadLittleMods/postcss-css-variables/issues/37) |
| 23 | + - 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) |
| 24 | + |
| 25 | + |
| 26 | +# v0.6.0 - 2016-9-23 |
| 27 | + |
| 28 | + - Update/refactor readme |
| 29 | + - Thank you to [@isiahmeadows](github.com/isiahmeadows) for the [contribution](https://github.com/MadLittleMods/postcss-css-variables/pull/36) |
| 30 | + - Use string value for `undefined` variables to play nice with other plugins downstream |
| 31 | + - Thank you to [@vincentorback](github.com/vincentorback) for the [contribution](https://github.com/MadLittleMods/postcss-css-variables/pull/44) |
| 32 | + |
| 33 | + |
| 34 | +# v0.5.2 - 2016-8-24 |
| 35 | + |
| 36 | + - Fix [#42](https://github.com/MadLittleMods/postcss-css-variables/issues/42) where `opts.preserve` was not working inside at-rules |
| 37 | + - Thank you to [@muftiev](github.com/muftiev) for the [contribution](https://github.com/MadLittleMods/postcss-css-variables/pull/43) |
| 38 | + |
| 39 | + |
| 40 | +# v0.5.1 - 2015-10-24 |
| 41 | + |
| 42 | + - Fix [postcss/postcss#611](https://github.com/postcss/postcss/issues/611) where we were trying to remove the root node on clean up |
| 43 | + - Improved test setup |
| 44 | + |
| 45 | +# v0.5.0 - 2015-9-12 |
| 46 | + |
| 47 | + - Upgrade to PostCSS v5. Fix [#20](https://github.com/MadLittleMods/postcss-css-variables/issues/20) |
| 48 | + |
| 49 | +# v0.4.0 - 2015-7-2 |
| 50 | + |
| 51 | + - Fix [#15](https://github.com/MadLittleMods/postcss-css-variables/issues/15) |
| 52 | + - 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. |
| 53 | + - 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). |
| 54 | + |
| 55 | + |
| 56 | + |
| 57 | +# v0.3.9 - 2015-6-29 |
| 58 | + |
| 59 | + - Remove `opts` global leak. Fix [#13](https://github.com/MadLittleMods/postcss-css-variables/issues/13) |
| 60 | + |
| 61 | + |
| 62 | +# v0.3.8 - 2015-5-28 |
| 63 | + |
| 64 | + - Add support for pseudo selectors `:hover` `:before` |
| 65 | + |
| 66 | +# v0.3.7 - 2015-5-27 |
| 67 | + |
| 68 | + - Fix [#7](https://github.com/MadLittleMods/postcss-css-variables/issues/7): Support for child combinator |
| 69 | + - Added tests for child-combinator/direct-descendant coverage |
| 70 | + |
| 71 | +# v0.3.6 - 2015-5-21 |
| 72 | + |
| 73 | + - Fix [#6](https://github.com/MadLittleMods/postcss-css-variables/issues/6). Variable usage in comma separated selector to use proper scope |
| 74 | + |
| 75 | +# v0.3.5 - 2015-5-12 |
| 76 | + |
| 77 | + - Big refactor of code to reduce cyclomatic complexity. Still needs work though. |
| 78 | + - Fix variable referencing another variable resolution when being changed by at-rule in non-root rule |
| 79 | + |
| 80 | +# v0.3.4 - 2015-5-12 |
| 81 | + |
| 82 | + - Fix variable referencing another variable resolution when being changed by at-rule |
| 83 | + |
| 84 | +# v0.3.3 - 2015-5-11 |
| 85 | + |
| 86 | + - Add support for last piece of combinator chain in selector resolution matching. |
| 87 | + - `.foo + .bar` can match variables declared in `.bar` |
| 88 | + |
| 89 | +# v0.3.1 - 2015-5-5 |
| 90 | + |
| 91 | + - Large overhaul of code to make it more robust on proper scope resolution. |
| 92 | + - Fix [#2]](https://github.com/MadLittleMods/postcss-css-variables/issues/2) |
| 93 | + |
| 94 | +# v0.2.3 - 2015-5-4 |
| 95 | + |
| 96 | + - Add support for CSS4 descendant selector `>>` syntax |
| 97 | + |
| 98 | +# v0.2.2 - 2015-5-1 |
| 99 | + |
| 100 | + - Automatically prefix any variables defined in `options.variables` with `--` (according to CSS custom property syntax). |
| 101 | + |
| 102 | +# v0.2.1 - 2015-4-30 |
| 103 | + |
| 104 | + - Added support for descendant selector nesting instead of just physical space nesting |
| 105 | + - Fixed issue with comma separated rules. It was throwing a undefined is not a function error |
| 106 | + - Moved to external scope check `isUnderScope` instead of integrated into `resolveValue` |
| 107 | + - 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) |
| 108 | + |
| 109 | +# v0.1.0 - 2015-4-29 |
| 110 | + |
| 111 | + - First release |
0 commit comments