source: trip-planner-front/node_modules/postcss-calc/CHANGELOG.md@ 59329aa

Last change on this file since 59329aa was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 5.0 KB
Line 
1# 8.0.0
2
3- Breaking: Updated PostCSS from v7.x to v8.x ([#125](https://github.com/postcss/postcss-calc/pull/125))
4
5# 7.0.5
6
7- Fixed: reduction
8
9# 7.0.4
10
11- Fixed: strips away important factors from multiplications in calc() ([#107](https://github.com/postcss/postcss-calc/issues/107))
12
13# 7.0.3
14
15- Fixed: substracted css-variable from zero ([#111](https://github.com/postcss/postcss-calc/issues/111))
16
17# 7.0.2
18
19- Fixed: incorrect reduction of subtraction from zero ([#88](https://github.com/postcss/postcss-calc/issues/88))
20- Fixed: doesn't remove calc for single function
21- Fixed: relax parser on unknown units ([#76](https://github.com/postcss/postcss-calc/issues/76))
22- Fixed: handle numbers with exponen composed ([#83](https://github.com/postcss/postcss-calc/pull/83))
23- Fixed: handle plus sign before value ([#79](https://github.com/postcss/postcss-calc/pull/79))
24- Fixed: better handle precision for nested calc ([#75](https://github.com/postcss/postcss-calc/pull/75))
25- Fixed: properly handle nested add and sub expression inside sub expression ([#64](https://github.com/postcss/postcss-calc/issues/64))
26- Fixed: handle uppercase units and functions ([#71](https://github.com/postcss/postcss-calc/pull/71))
27- Fixed: do not break `calc` with single var ([cssnano/cssnano#725](https://github.com/cssnano/cssnano/issues/725))
28- Updated: `postcss` to 7.0.27 (patch)
29- Updated: `postcss-selector-parser` to 6.0.2
30- Updated: `postcss-value-parser` to 4.0.2
31
32# 7.0.1
33
34- Updated: `postcss` to 7.0.2 (patch)
35- Updated: `postcss-selector-parser` to 5.0.0-rc.4 (patch)
36- Updated: `postcss-value-parser` to 3.3.1 (patch)
37
38# 7.0.0
39
40- Changed: Updated postcss-selector-parser to version 5.0.0-rc.3
41- Changed: Dropped reduce-css-calc as a dependency
42- Fixed: Support constant() and env() ([#42](https://github.com/postcss/postcss-calc/issues/42), [#48](https://github.com/postcss/postcss-calc/issues/48))
43- Fixed: Support custom properties with "calc" in its name ([#50](https://github.com/postcss/postcss-calc/issues/50))
44- Fixed: Remove unnecessary whitespace around `*` and `/` ([cssnano#625](https://github.com/cssnano/cssnano/issues/625))
45- Fixed: Arithmetic bugs around subtraction ([#49](https://github.com/postcss/postcss-calc/issues/49))
46- Fixed: Handling of nested calc statements ([reduce-css-calc#49](https://github.com/MoOx/reduce-css-calc/issues/49))
47- Fixed: Bugs regarding complex calculations ([reduce-cs-calc#45](https://github.com/MoOx/reduce-css-calc/issues/45))
48- Fixed: `100%` incorrectly being transformed to `1` ([reduce-css-calc#44](https://github.com/MoOx/reduce-css-calc/issues/44))
49- Added: support for case-insensitive calc statements
50
51# 6.0.2 - 2018-09-25
52
53- Fixed: use PostCSS 7 (thanks to @douglasduteil)
54
55# 6.0.1 - 2017-10-10
56
57- Fixed: throwing error for attribute selectors without a value
58
59# 6.0.0 - 2017-05-08
60
61- Breaking: Updated PostCSS from v5.x to v6.x, and reduce-css-calc from v1.x
62 to v2.x (thanks to @andyjansson).
63
64# 5.3.1 - 2016-08-22
65
66- Fixed: avoid security issue related to ``reduce-css-calc@< 1.2.4``.
67
68# 5.3.0 - 2016-07-11
69
70- Added: support for selector transformation via `selectors` option.
71 ([#29](https://github.com/postcss/postcss-calc/pull/29) - @uniquegestaltung)
72
73# 5.2.1 - 2016-04-10
74
75- Fixed: support for multiline value
76 ([#27](https://github.com/postcss/postcss-calc/pull/27))
77
78# 5.2.0 - 2016-01-08
79
80- Added: "mediaQueries" option for `@media` support
81([#22](https://github.com/postcss/postcss-calc/pull/22))
82
83# 5.1.0 - 2016-01-07
84
85- Added: "warnWhenCannotResolve" option to warn when calc() are not reduced to a single value
86([#20](https://github.com/postcss/postcss-calc/pull/20))
87
88# 5.0.0 - 2015-08-25
89
90- Removed: compatibility with postcss v4.x
91- Added: compatibility with postcss v5.x
92
93# 4.1.0 - 2015-04-09
94
95- Added: compatibility with postcss v4.1.x ([#12](https://github.com/postcss/postcss-calc/pull/12))
96
97# 4.0.1 - 2015-04-09
98
99- Fixed: `preserve` option does not create duplicated values ([#7](https://github.com/postcss/postcss-calc/issues/7))
100
101# 4.0.0 - 2015-01-26
102
103- Added: compatibility with postcss v4.x
104- Changed: partial compatiblity with postcss v3.x (stack traces have lost filename)
105
106# 3.0.0 - 2014-11-24
107
108- Added: GNU like exceptions ([#4](https://github.com/postcss/postcss-calc/issues/4))
109- Added: `precision` option ([#5](https://github.com/postcss/postcss-calc/issues/5))
110- Added: `preserve` option ([#6](https://github.com/postcss/postcss-calc/issues/6))
111
112# 2.1.0 - 2014-10-15
113
114- Added: source of the error (gnu like message) (fix [#3](https://github.com/postcss/postcss-calc/issues/3))
115
116# 2.0.1 - 2014-08-10
117
118- Fixed: correctly ignore unrecognized values (fix [#2](https://github.com/postcss/postcss-calc/issues/2))
119
120# 2.0.0 - 2014-08-06
121
122- Changed: Plugin now return a function to have a consistent api. ([ref 1](https://github.com/ianstormtaylor/rework-color-function/issues/6), [ref 2](https://twitter.com/jongleberry/status/496552790416576513))
123
124# 1.0.0 - 2014-08-04
125
126✨ First release based on [rework-calc](https://github.com/reworkcss/rework-calc) v1.1.0 (code mainly exported to [`reduce-css-calc`](https://github.com/MoOx/reduce-css-calc))
Note: See TracBrowser for help on using the repository browser.