af71af41b6199c3fd4cb57ec2a61fc6f51423012e48e4f4d03cb045ac27d14c46eba6f016a012bb89ff71bd9a34263dd7ba93704f1f3af7bc60c7aad2acc55 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. # 2.2.2
  2. * Resolves an issue where the module would mangle the non-standard `composes`
  3. property when consumed via css-loader.
  4. # 2.2.1
  5. * Resolves an issue where converting an rgb/hsl function next to another token,
  6. such as `linear-gradient(rgb(10, 10, 10)0%, blue)` would result in a
  7. mangled value.
  8. # 2.2.0
  9. * Adds support for legacy IE versions (< 10).
  10. # 2.1.8
  11. * Fixes incorrect minification of percentages used by `rgb` functions; i.e.
  12. `rgb(100%,100%,100%)` was not converted correctly to `#fff`.
  13. # 2.1.7
  14. * Fixes another regression where `hsla(0,0%,100%,.5)` was converted to
  15. `hsla(0,0%,100%,0.5)`.
  16. # 2.1.6
  17. * Fixes a regression where codes for `rgba` & `hsla` were not correctly
  18. capped at minimum/maximum values.
  19. # 2.1.5
  20. * Fixes several regressions from 2.1.3 - shorthand hex color minification,
  21. incorrect conversion to `transparent` from `rgba(255, 255, 255, 0)`
  22. (thanks to @TrySound).
  23. # 2.1.4
  24. * Fixes an error in the last patch where the `lib` directory was ignored by npm.
  25. # 2.1.3
  26. * Updates postcss-value-parser to version 3 (thanks to @TrySound).
  27. * Removes the dependency on colormin, conversion is now done in-module.
  28. # 2.1.2
  29. * Removed an unnecessary `trim` method that was used to work around a now
  30. resolved issue in PostCSS (thanks to @TrySound).
  31. # 2.1.1
  32. * Fixed a regression that was compressing space around forward slashes in
  33. calc functions.
  34. # 2.1.0
  35. * Better support for minifying colors in legacy CSS gradients, switched to
  36. postcss-value-parser (thanks to @TrySound).
  37. # 2.0.0
  38. * Upgraded to PostCSS 5.
  39. # 1.2.7
  40. * Fixes an issue where IE filter properties were being converted
  41. erroneously (thanks to @faddee).
  42. # 1.2.6
  43. * Fixed a crash when specifying `inherit` as a value
  44. to `-webkit-tap-highlight-color`.
  45. # 1.2.5
  46. * Speed up node iteration by calling `eachDecl` once rather than twice.
  47. # 1.2.4
  48. * Fixed an issue caused by upgrading colormin to use ES6.
  49. # 1.2.3
  50. * Fixed an issue where `-webkit-tap-highlight-color` was being incorrectly
  51. transformed to `transparent`. This is not supported in Safari.
  52. # 1.2.2
  53. * Fixed a bug where the module crashed on parsing comma separated values for
  54. properties such as `box-shadow`.
  55. # 1.2.1
  56. * Extracted each color logic into a function for better readability.
  57. # 1.2.0
  58. * Now uses the PostCSS `4.1` plugin API.
  59. # 1.1.0
  60. * Now supports optimisation of colors in gradient values.
  61. # 1.0.0
  62. * Initial release.