Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

3 лет назад
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962
  1. # Change Log
  2. This project adheres to [Semantic Versioning](http://semver.org/).
  3. ## 9.7.6
  4. * Revert `-webkit-stretch` fix.
  5. ## 9.7.5
  6. * Fix `-webkit-stretch` support.
  7. ## 9.7.4
  8. * Fix warning text (by Dmitry Ishkov).
  9. ## 9.7.3
  10. * Fix compatibility with PostCSS Modules.
  11. ## 9.7.2
  12. * Add `-ms-user-select: element` support.
  13. * Add funding link for `npm fund`.
  14. ## 9.7.1
  15. * Avoid unnecessary transitions in prefixed selectors (by Andrey Alexandrov).
  16. * Fix `fit-content` for Firefox.
  17. ## 9.7 “Ad Victoriam”
  18. * Add `AUTOPREFIXER_GRID` env variable to enable Grid Layout polyfill for IE.
  19. * Fix `Cannot read property 'grid' of undefined` error.
  20. ## 9.6.5
  21. * Fix selector prefixing (by Andrey Alexandrov).
  22. ## 9.6.4
  23. * Now the real fix for `'startsWith' of undefined` error.
  24. ## 9.6.3
  25. * Fix `Cannot read property 'startsWith' of undefined` error.
  26. ## 9.6.2
  27. * Fix false `Replace fill to stretch` warning.
  28. ## 9.6.1
  29. * Fix `-webkit-line-clamp` truncating multi-line text support.
  30. ## 9.6 “Nunc id vides, nunc ne vides”
  31. * Show warning about Browserslist config on `browser` option.
  32. * Add warning-less `overrideBrowserslist` option.
  33. * Add `text-orientation` support.
  34. * Add `min-resolution: 2x` alias support.
  35. * Add `.github/CONTRIBUTING.md` (by Juan Martin Marco).
  36. ## 9.5.1
  37. * Fix `backdrop-filter` for Edge (by Oleh Aloshkin).
  38. * Fix `min-resolution` media query support in Firefox < 16.
  39. ## 9.5 “Draco dormiens nunquam titillandus”
  40. * Add `mask-composite` support (by Semen Levenson).
  41. ## 9.4.10
  42. * Add warning for named Grid rows.
  43. ## 9.4.9
  44. * Fix `grid-template` and `@media` case (by Bogdan Dolin).
  45. ## 9.4.8
  46. * Fix `calc()` support in Grid gap.
  47. ## 9.4.7
  48. * Fix infinite loop on mismatched parens.
  49. ## 9.4.6
  50. * Fix warning text (by Albert Juhé Lluveras).
  51. ## 9.4.5
  52. * Fix `text-decoration-skip-ink` support.
  53. ## 9.4.4
  54. * Use `direction` value for `-ms-writing-mode` (by Denys Kniazevych).
  55. * Fix warning text (by @zzzzBov).
  56. ## 9.4.3
  57. * Add warning to force `flex-start` instead of `start` (by Antoine du Hamel).
  58. * Fix docs (by Christian Oliff).
  59. ## 9.4.2
  60. * Fix Grid autoplacement warning.
  61. ## 9.4.1
  62. * Fix unnecessary Flexbox prefixes in Grid elements.
  63. ## 9.4 “Advance Australia”
  64. * Add Grid autoplacement for `-ms-` (by Bogdan Dolin).
  65. * Improve docs and warnings (by Daniel Tonon).
  66. * Remove some unnecessary warnings for Grid (by Andrey Alexandrov).
  67. ## 9.3.1
  68. * Fix Grid prefixes with `repeat()` value (by Bogdan Dolin).
  69. ## 9.3 “Labor omnia vincit”
  70. * Add `place-self` support (by Bogdan Dolin).
  71. * Fix Grid row/column span inheritance bug (by Bogdan Dolin).
  72. ## 9.2.1
  73. * Fix broken AST.
  74. ## 9.2 “Onyi est glavnaya krepost”
  75. * Add `/* autoprefixer grid: on */` control comment (by Andrey Alexandrov).
  76. * Add duplicate `grid-area` support (by Bogdan Dolin).
  77. * Fix `grid-gap` support for rules with different specifity (by Bogdan Dolin).
  78. * Disable Grid in `@supports` at-rule with non-supported Grid features.
  79. * Improve Grid warnings (by Daniel Tonon).
  80. * Improve docs (by Joshua Hall, Mat Gadd, Roy Revelt, and Ivan).
  81. ## 9.1.5
  82. * Remove `@babel/register` from dependencies.
  83. ## 9.1.4
  84. * Use Babel 7.
  85. ## 9.1.3
  86. * Sort properties in `autoprefixer --info` alphabetically.
  87. * Fix old Firefox gradient prefix.
  88. ## 9.1.2
  89. * Fix `autoprefixer --info` in new Node.js.
  90. ## 9.1.1
  91. * Retain `grid-gap` through `@media` (by Bogdan Dolin).
  92. * Fix `grid-template` and `@media` (by Bogdan Dolin).
  93. * Fix Grid areas searching error (by Bogdan Dolin).
  94. * Fix `span X` Grid prefix (by Bogdan Dolin).
  95. * Fix docs (by Eduard Kyvenko).
  96. ## 9.1 “Equality before the law”
  97. * Add `background-clip: text` support.
  98. * Fix adding Grid span for IE (by Bogdan Dolin).
  99. ## 9.0.2
  100. * Show warning on Grid area names conflict (by Bogdan Dolin).
  101. * Fix documentation (by Sven Wagner).
  102. ## 9.0.1
  103. * Fix nested at-rules in Grid prefixes (by Ivan Malov).
  104. ## 9.0 “A Mari Usque Ad Mare”
  105. * Remove Node.js 9 and Node.js 4 support.
  106. * Remove IE and “dead” browsers from Babel.
  107. * Use PostCSS 7.0.
  108. * Use Browserslist 4.0.
  109. ## 8.6.5
  110. * Do not show Grid warnings if IE was not selected.
  111. ## 8.6.4
  112. * Fix `stretch` prefix in Chrome >= 46.
  113. ## 8.6.3
  114. * Add warnings for unsupported Grid features.
  115. * Add warnings about wrong Grid properties.
  116. * Add note about `grid` option for grid properties in `autoprefixer --info`.
  117. ## 8.6.2
  118. * Fix error during adding Grid prefixes in `@media` (by Evgeny Petukhov).
  119. ## 8.6.1
  120. * Fix `grid-template` with media queries (by Evgeny Petukhov).
  121. ## 8.6 “Follow Reason”
  122. * Add `gap` support (by Evgeny Petukhov).
  123. * Add two values support for `grid-gap` and `gap` (by Evgeny Petukhov).
  124. * Add `ignoreUnknownVersions` option for Browserslist.
  125. ## 8.5.2
  126. * Fix `grid-template` support wit auto row sizes (by Yury Timofeev).
  127. ## 8.5.1
  128. * Remove unnecessary warning on `-webkit-fill-available`.
  129. ## 8.5 “Muito Nobre e Sempre Leal”
  130. * Add `grid-gap` support (by Evgeny Petukhov).
  131. * Fix radial gradients direction fix.
  132. * Fix docs (by Phani Kandula and Huáng Jùnliàng).
  133. ## 8.4.1
  134. * Fix working in old PostCSS versions (by Diablohu).
  135. ## 8.4 “Non in aves, sed in angues”
  136. * Add `/* autoprefixer: ignore next */` control comment (by Pavel Vostrikov).
  137. ## 8.3 “Benigno Numine”
  138. * Add `@media` support to `grid-template` (by Evgeny Petukhov).
  139. * Fix `radial-gradient` direction warning (by Gustavo Real).
  140. ## 8.2 “Ad Astra per Aspera”
  141. * Add `color-adjust` (by Sergey Lysenko, Stanislav Botev, and Yuriy Alekseyev).
  142. ## 8.1 “Rex, Familia et Ultio”
  143. * Add `overscroll-behavior` support.
  144. * Add `grid-template` shortcut support (by Evgeny Petukhov).
  145. * Add better `grid-column-end` and `grid-row-end` support (by Evgeny Petukhov).
  146. * Fix Grid properties support in `@supports`.
  147. ## 8.0 “Excelsior”
  148. * Use Browserslist 3.0.
  149. * Rename `autoprefixer-info` CLI tool to `autoprefixer --info`.
  150. * Remove `break-*` to `page-break-*` conversion for Firefox.
  151. ## 7.2.6
  152. * Fix `-ms-` prefix for grid cells with same `grid-area` (by Evgeny Petukhov).
  153. ## 7.2.5
  154. * Fix multiple prefixes in declaration value.
  155. ## 7.2.4
  156. * Fix IE 10 support.
  157. ## 7.2.3
  158. * Fix `grid-template-areas` in `@media` (by Evgeny Petukhov).
  159. ## 7.2.2
  160. * Fix `_autoprefixerDisabled is undefined` issue.
  161. ## 7.2.1
  162. * Fix IE and other old JS runtimes support.
  163. ## 7.2 “Ordem e Progresso”
  164. * Add `grid-template-areas` support (by Evgeny Petukhov).
  165. * Add `grid-template` support (by Evgeny Petukhov).
  166. * Add `grid-area` support (by Alexey Komarov).
  167. * Add `autoprefixer-info` CLI tool.
  168. * Add wrong `radial-gradient` properties warning.
  169. * Use current working dir on missed `from` in `info()` (by Phil Dokas).
  170. * Fix `grid-row` and `grid-column` support (by Alexey Komarov).
  171. * Do not prefix `reverse` animation direction.
  172. * Improve test coverage (by Dmitry Semigradsky).
  173. ## 7.1.6
  174. * Add warning for using `browserslist` option instead of `browsers`.
  175. * Add warning for multiple control comments in the same scope.
  176. * Fix `Invalid array length` error during indent changes.
  177. ## 7.1.5
  178. * Fix `::placeholder` prefix for Edge.
  179. * Fix `inherit`/`initial`/`unset` values for `flex-direction`.
  180. * Fix RegExp usage in gradients (by Yet Another Minion).
  181. ## 7.1.4
  182. * Fix `radial-gradient` direction conversion.
  183. * Fix `image-set` in `cursor`.
  184. ## 7.1.3
  185. * Add warning for old `radial-gradient` direction syntax.
  186. ## 7.1.2
  187. * Fix `text-decoration` shortcut support.
  188. ## 7.1.1
  189. * Remove non-`-webkit-` intrinsic prefixes in Grid Layout (by 一丝).
  190. ## 7.1 “Universitas litterarum”
  191. * Add `unicode-bidi` support.
  192. * Add `-webkit-appearance` support for Edge.
  193. * Add `from` option to `info()`.
  194. * Fix intrinsic widths prefixes in Grid Layout.
  195. ## 7.0.1
  196. * Fix Autoprefixer for old JS runtimes.
  197. ## 7.0 “Coelestem adspicit lucem”
  198. * Remove node.js 0.12 support.
  199. * Use PostCSS 6.0.
  200. * Use Browserslist 2.
  201. * Use `caniuse-lite` instead of `caniuse-db` (by Ben Briggs).
  202. * Use `^` for Browserslist dependencies, instead of `~`.
  203. * Rewrite project from CoffeeScript to Babel (by Dmitry Semigradsky).
  204. * Disable Grid Layout prefixes for IE by default.
  205. * Fix `-ms-grid-column-align`.
  206. * Move tests to Jest.
  207. ## 6.7.7
  208. * Fix `order` for non-digit values.
  209. ## 6.7.6
  210. * Fix `font-kerning` (by Chi Vinh Le).
  211. ## 6.7.5
  212. * Fix `text-decoration-skip` in iOS (by Chi Vinh Le).
  213. * Fix `clip-path` (by Chi Vinh Le).
  214. ## 6.7.4
  215. * Improve `browsers` option perfomance.
  216. * Update CoffeeScript compiler.
  217. ## 6.7.3
  218. * Fix compatibility with “Intrinsic & Extrinsic Sizing” spec update.
  219. ## 6.7.2
  220. * Do not prefix grid/flexbox in `@supports` on `grid: false`/`flexbox: false`.
  221. ## 6.7.1
  222. * Update Browserslist with `last n version` fix.
  223. ## 6.7 “Krungthep doot thep saang”
  224. * Add Electron support in browsers list (by Kilian Valkhof).
  225. * Add `flex-flow` partial support for Flexbox 2009 specification.
  226. * Fix browsers `0` version issue in some Can I Use data.
  227. ## 6.6.1
  228. * Add metadata to use Autoprefixer in JSS tests (by Chi Vinh Le).
  229. ## 6.6 “Kaiyuan”
  230. * Add `browserslist` key in `package.json` support.
  231. * Add support for separated environments in browserslist config.
  232. * Add `browserslist-stats.json` file support to load custom usage statistics.
  233. ## 6.5.4
  234. * Fix unitless 0 basis in IE10/IE11 shorthand flex (by Google).
  235. ## 6.5.3
  236. * Add error for popular mistake with `browser` option instead of `browsers`.
  237. ## 6.5.2
  238. * Clean prefixes data (by Reinaldo Schiehll).
  239. ## 6.5.1
  240. * Fix selectors with `:--` prefix support.
  241. ## 6.5 “Einigkeit und Recht und Freiheit”
  242. * Add `defaults` keyword to browsers requirements.
  243. * Fix CSS Grid Layout support.
  244. * Fix `align-self` cleaning.
  245. ## 6.4.1
  246. * Fix node cloning after some PostCSS plugins.
  247. ## 6.4 “Hic et ubique terrarum”
  248. * Add `:any-link` selector support.
  249. * Add `text-decoration-skip` support.
  250. * Add `transition: duration property` support.
  251. * Fix `-webkit-` prefix for `backface-visibility`.
  252. * Fix `rad` unit support in gradients (by 刘祺).
  253. * Fix `transition` support in Opera 12.
  254. * Removed Safari TP Grid prefixes support.
  255. ## 6.3.7
  256. * Fix rare `Cannot read property 'constructor' of null` issue.
  257. ## 6.3.6
  258. * Add Safari TP prefix support for Grid Layout.
  259. ## 6.3.5
  260. * Fix duplicate prefixes for `-ms-interpolation-mode`.
  261. ## 6.3.4
  262. * Show users coverage for selected browsers in `info()`.
  263. ## 6.3.3
  264. * Fix transition warning.
  265. ## 6.3.2
  266. * Fix jspm support (by Sean Anderson).
  267. ## 6.3.1
  268. * Fix compatibility with Flexibility polyfill.
  269. ## 6.3 “Pro rege et lege”
  270. * Add Grid Layout support.
  271. * Add `text-spacing` support.
  272. * Add `> 10% in my stats` browsers query with custom usage statistics.
  273. * Add options to disable `@supports`, Flexbox or Grid support.
  274. * Fix compatibility with other PostCSS plugins.
  275. ## 6.2.3
  276. * Fix error on broken transition with double comma.
  277. ## 6.2.2
  278. * Fix issues in broken transitions.
  279. ## 6.2.1
  280. * Fix AST error in transition warning (by @jvdanilo).
  281. ## 6.2 “Fluctuat nec mergitur”
  282. * Use `fill` instead of `fill-available` according spec changes (by 一丝).
  283. * Add `fill` support for logical dimension properties (by 一丝).
  284. * Add `text-emphasis` support (by 一丝).
  285. * Add prefixes to `@supports` only for compatible browsers.
  286. * Add `rad`, `grad` and `turn` units support to linear gradients.
  287. * Add some `deg` directions support for old WebKit linear gradients.
  288. * Fix `@supports` parenthesis (by @heady).
  289. * Add warning when prefixes could not be generated
  290. for complicated `transition-property` values.
  291. * Add warning for outdated `fill-available` value.
  292. * Add warning for wrong `text-emphasis-position` value.
  293. * Add “time capsule” warning for prefix-less future.
  294. * Normalizes all warning messages.
  295. ## 6.1.2
  296. * Fix gradient hack on some parameters (by Alexey Efremov).
  297. ## 6.1.1
  298. * Fix `cursor: grab` and `cursor: grabbing` support.
  299. ## 6.1 “Bil-shaʿb wa lil-shaʿb”
  300. * Change `transition` support to output more robust CSS.
  301. * Add `:read-only` support.
  302. * Add support for `appearance` with any values.
  303. * Add CSS-in-JS support via `postcss-js`.
  304. * Add loud `/*! autoprefixer: off */` control comments support.
  305. * Convert `rotateZ` to `rotate` for `-ms-transform`.
  306. * Use `postcss-value-parser` to carefully work with gradients.
  307. * Remove `-ms-transform-style` and `-o-transform-style` that never existed.
  308. ## 6.0.3
  309. * Fix old gradient direction warning.
  310. ## 6.0.2
  311. * Remove unnecessary `-khtml-` prefix too.
  312. ## 6.0.1
  313. * Fix `cross-fade()` support (by 一丝).
  314. ## 6.0 “Eureka”
  315. * CLI was removed from `autoprefixer` package to `autoprefixer-cli`.
  316. * `autoprefixer-core` and `autoprefixer` packages was merged back.
  317. * Remove `autoprefixer(opt).process(css)`, use `autoprefixer.process(css, opt)`.
  318. * Remove `safe` option. Use separated Safe parser from PostCSS.
  319. * Remove Opera 12.1 from default query.
  320. * Use PostCSS 5.0 API.
  321. * Add custom syntaxes support.
  322. * Add `image-set` support (by 一丝).
  323. * Add `mask-border` support (by 一丝).
  324. * Add `filter()` function support (by Vincent De Oliveira).
  325. * Add `backdrop-filter` support (by Vincent De Oliveira).
  326. * Add `element()` support (by Vincent De Oliveira).
  327. * Add CSS Regions support.
  328. * Add Scroll Snap Points support.
  329. * Add `writing-mode` support.
  330. * Add `::backdrop` support.
  331. * Add `cross-fade()` support.
  332. * Add other `break-` properties support.
  333. * Add Microsoft Edge support (by Andrey Polischuk).
  334. * Add `not` keyword and exclude browsers by query.
  335. * Add version ranges `IE 6-9` (by Ben Briggs).
  336. * Fix `filter` in `transition` support on Safari.
  337. * Fix `url()` parsing.
  338. * Fix `pixelated` cleaning.
  339. * Always show old gradient direction warning.
  340. ## 5.2.1
  341. * Fix parent-less node issue on some cases (by Josh Gillies).
  342. ## 5.2 “Dont tread on me”
  343. * Add `appearance` support.
  344. * Warn users on old gradient direction or flexbox syntax.
  345. * Add `add: false` option to disable new prefixes adding.
  346. * Make Autoprefixer 30% faster.
  347. * Use PostCSS 4.1 plugin API.
  348. * Add prefixes for `pixelated` instead of `crisp-edges` in `image-rendering`.
  349. * Do not add `::placeholder` prefixes for `:placeholder-shown`.
  350. * Fix `text-decoration` prefixes.
  351. * `autoprefixer.process()` was deprecated. Use PostCSS API.
  352. ## 5.1.11
  353. * Update `num2fraction` to fix resolution media query (by 一丝).
  354. ## 5.1.10
  355. * Do not generate `-webkit-image-rendering`.
  356. ## 5.1.9
  357. * Fix DynJS compatibility (by Nick Howes).
  358. ## 5.1.8
  359. * Fix gradients in `mask` and `mask-image` properties.
  360. * Fix old webkit prefix on some unsupported gradients.
  361. ## 5.1.7
  362. * Fix placeholder selector (by Vincent De Oliveira).
  363. ## 5.1.6
  364. * Use official `::placeholder-shown` selector (by Vincent De Oliveira).
  365. ## 5.1.5
  366. * Add transition support for CSS Masks properties.
  367. ## 5.1.4
  368. * Use `-webkit-` prefix for Opera Mobile 24.
  369. ## 5.1.3
  370. * Add IE support for `image-rendering: crisp-edges`.
  371. ## 5.1.2
  372. * Add never existed `@-ms-keyframes` to common mistake.
  373. ## 5.1.1
  374. * Safer value split in `flex` hack.
  375. ## 5.1 “Jianyuan”
  376. * Add support for resolution media query (by 一丝).
  377. * Higher accuracy while removing prefixes in values.
  378. * Add support for logical properties (by 一丝).
  379. * Add `@viewport` support.
  380. * Add `text-overflow` support (by 一丝).
  381. * Add `text-emphasis` support (by 一丝).
  382. * Add `image-rendering: crisp-edges` support.
  383. * Add `text-align-last` support.
  384. * Return `autoprefixer.defaults` as alias to current `browserslist.defaults`.
  385. * Save code style while adding prefixes to `@keyframes` and `@viewport`.
  386. * Do not remove `-webkit-background-clip` with non-spec `text` value.
  387. * Fix `-webkit-filter` in `transition`.
  388. * Better support for browser versions joined on Can I Use
  389. like `ios_saf 7.0-7.1` (by Vincent De Oliveira).
  390. * Fix compatibility with `postcss-import` (by Jason Kuhrt).
  391. * Fix Flexbox prefixes for BlackBerry and UC Browser.
  392. * Fix gradient prefixes for old Chrome.
  393. ## 5.0 “Pravda vítězí”
  394. * Use PostCSS 4.0.
  395. * Use Browserslist to parse browsers queries.
  396. * Use global `browserslist` config.
  397. * Add `> 5% in US` query to select browsers by usage in some country.
  398. * Add `object-fit` and `object-position` properties support.
  399. * Add CSS Shape properties support.
  400. * Fix UC Browser name in debug info.
  401. * Remove `autoprefixer.defaults` and use defaults from Browserslist.
  402. ## 4.0.2
  403. * Remove `o-border-radius`, which is common mistake in legacy CSS.
  404. ## 4.0.1
  405. * Fix `@supports` support with brackets in values (by Vincent De Oliveira).
  406. ## 4.0 “Indivisibiliter ac Inseparabiliter”
  407. * Become 2.5 times fatser by new PostCSS 3.0 parser.
  408. * Do not remove outdated prefixes by `remove: false` option.
  409. * `map.inline` and `map.sourcesContent` options are now `true` by default.
  410. * Add `box-decoration-break` support.
  411. * Do not add old `-webkit-` prefix for gradients with `px` units.
  412. * Use previous source map to show origin source of CSS syntax error.
  413. * Use `from` option from previous source map `file` field.
  414. * Set `to` value to `from` if `to` option is missing.
  415. * Trim Unicode BOM on source maps parsing.
  416. * Parse at-rules without spaces like `@import"file"`.
  417. * Better previous `sourceMappingURL` annotation comment cleaning.
  418. * Do not remove previous `sourceMappingURL` comment on `map.annotation: false`.
  419. ## 3.1.2
  420. * Update Firefox ESR version from 24 to 31.
  421. ## 3.1.1
  422. * Use Flexbox 2009 spec for Android stock browser < 4.4.
  423. ## 3.1 “Satyameva Jayate”
  424. * Do not remove comments from prefixed values (by Eitan Rousso).
  425. * Allow Safari 6.1 to use final Flexbox spec (by John Kreitlow).
  426. * Fix `filter` value in `transition` in Webkits.
  427. * Show greetings if your browsers don’t require any prefixes.
  428. * Add `<=` and `<` browsers requirement (by Andreas Lind).
  429. ## 3.0.1
  430. * Fix `autoprefixer.postcss` in callbacks.
  431. ## 3.0 “Liberté, Égalité, Fraternité”
  432. * Project was split to autoprefixer (with CLI) and autoprefixer-core.
  433. * `autoprefixer()` now receives only `options` object with `browsers` key.
  434. * GNU format for syntax error messages from PostCSS 2.2.
  435. ## 2.2 “Mobilis in mobili”
  436. * Allow to disable Autoprefixer for some rule by control comment.
  437. * Use PostCSS 2.1 with Safe Mode option and broken source line
  438. in CSS syntax error messages.
  439. ## 2.1.1
  440. * Fix `-webkit-background-size` hack for `contain` and `cover` values.
  441. * Don’t add `-webkit-` prefix to `filter` with SVG (by Vincent De Oliveira).
  442. ## 2.1 “Eleftheria i thanatos”
  443. * Add support for `clip-path` and `mask` properties.
  444. * Return `-webkit-` prefix to `filter` with SVG URI.
  445. ## 2.0.2
  446. * Add readable names for new browsers from 2.0 release.
  447. * Don’t add `-webkit-` prefix to `filter` with SVG URI.
  448. * Don’t add `-o-` prefix 3D transforms.
  449. ## 2.0.1
  450. * Save declaration style, when clone declaration to prefix.
  451. ## 2.0 “Hongik Ingan”
  452. * Based on PostCSS 1.0.
  453. See [options changes](https://github.com/postcss/postcss/releases/tag/1.0.0).
  454. * Restore visual cascade after declaration removing.
  455. * Enable visual cascade by default.
  456. * Prefix declareation in `@supports` at-rule conditions.
  457. * Add all browsers from Can I Use: `ie_mob`, `and_chr`, `and_ff`,
  458. `op_mob` and `op_mini`.
  459. * Allow to use latest Autoprefixer from GitHub by npm.
  460. * Add `--no-cascade`, `--annotation` and `--sources-content` options to binary.
  461. ## 1.3.1
  462. * Fix gradient hack, when `background` property contains color.
  463. ## 1.3 “Tenka Fubu”
  464. * Add `text-size-adjust` support.
  465. * Add `background-size` to support Android 2.
  466. ## 1.2 “Meiji”
  467. * Use Can I Use data from official `caniuse-db` npm package.
  468. * Remove package data update from binary.
  469. * Use increment value instead of current date in minor versions.
  470. ## 1.1 “Nutrisco et extingo”
  471. * Add source map annotation comment support.
  472. * Add inline source map support.
  473. * Autodetect previous source map.
  474. * Fix source maps support on Windows.
  475. * Fix source maps support in subdirectory.
  476. * Prefix selector even if it is already prefixed by developer.
  477. * Add option `cascade` to create nice visual cascade of prefixes.
  478. * Fix flexbox support for IE 10 (by Roland Warmerdam).
  479. * Better `break-inside` support.
  480. * Fix prefixing, when two same properties are near.
  481. ### 20140222
  482. * Add `touch-action` support.
  483. ### 20140226
  484. * Chrome 33 is moved to released versions.
  485. * Add Chrome 36 data.
  486. ### 20140302
  487. * Add `text-decoration-*` properties support.
  488. * Update browsers usage statistics.
  489. * Use new PostCSS version.
  490. ### 20140319
  491. * Check already prefixed properties after current declaration.
  492. * Normalize spaces before already prefixed check.
  493. * Firefox 28 is moved to released versions.
  494. * Add Firefox 31 data.
  495. * Add some Blackberry data.
  496. ### 20140327
  497. * Don’t use `-ms-transform` in `@keyframes`, because IE 9 doesn’t support
  498. animations.
  499. * Update BlackBerry 10 data.
  500. ### 20140403
  501. * Update browsers usage statistics.
  502. * Opera 20 is moved to released versions.
  503. * Add Opera 22 data.
  504. ### 20140410
  505. * Chrome 34 is moved to released versions.
  506. * Add Chrome 37 data.
  507. * Fix Chrome 36 data.
  508. ### 20140429
  509. * Fix `display: inline-flex` support by 2009 spec.
  510. * Fix old WebKit gradient converter (by Sergey Belov).
  511. * Fix CSS 3 cursors data (by Nick Schonning).
  512. ### 20140430
  513. * Separate 2D and 3D transform prefixes to clean unnecessary `-ms-` prefixes.
  514. * Firefox 29 is moved to released versions.
  515. * Add Firefox 32 data.
  516. ### 20140510
  517. * Do not add `-ms-` prefix for `transform` with 3D functions.
  518. * Update browsers global usage statistics.
  519. ### 20140512
  520. * Remove unnecessary `-moz-` prefix for `wavy` in `text-decoration`.
  521. * Update Safari data for font properties.
  522. ### 20140521
  523. * Chrome 36 is moved to released versions.
  524. * Add Chrome 38 data.
  525. ### 20140523
  526. * Opera 21 is moved to released versions.
  527. * Add Opera 23 data.
  528. ### 20140605
  529. * Allow to parse gradients without space between color and position.
  530. * Add iOS 8, Safari 8 and Android 4.4.3 data.
  531. * Update browsers usage statistics.
  532. ## 1.0 “Plus ultra”
  533. * Source map support.
  534. * Save origin indents and code formatting.
  535. * Change CSS parser to PostCSS.
  536. * Preserve vendor-prefixed properties put right after unprefixed ones.
  537. * Rename `compile()` to `process()` and return result object,
  538. instead of CSS string.
  539. * Rename `inspect()` to `info()`.
  540. * Add in binary `-d` option to specify output directory.
  541. * Binary now will not concat output files.
  542. * Allow to select last versions for specified browser.
  543. * Add full browser names aliases: `firefox`, `explorer` and `blackberry`.
  544. * Ignore case in browser names.
  545. * Change license to MIT.
  546. * Add prefixes inside custom at-rules.
  547. * Add only necessary prefixes to selector inside prefixed at-rule.
  548. * Safer backgrounds list parser in gradient hack.
  549. * Prefix `@keyframes` inside `@media`.
  550. * Don’t prefix values for CSS3 PIE properties.
  551. * Binary now shows file name in syntax error.
  552. * Use browserify to build standalone version.
  553. ### 20131225
  554. * Fix deprecated API convertor.
  555. * Add `::placeholder` support for Firefix >= 18.
  556. * Fix vendor prefixes order.
  557. ### 20140103
  558. * Add `-webkit-` prefix for `sticky` position.
  559. * Update browsers popularity statistics.
  560. ### 20140109
  561. * Add selectors and at-rules sections to debug info.
  562. * Fix outdated prefixes cleaning.
  563. ### 20140110
  564. * Add `Firefox ESR` browser requirement.
  565. * Opera 18 is moved to released versions.
  566. * Add Opera 20 data.
  567. ### 20140117
  568. * Chrome 32 is moved to released versions.
  569. * Add Opera 34 data.
  570. ### 20140130
  571. * Fix flexbox properties names in transitions.
  572. * Add Chrome 35 and Firefox 29 data.
  573. ### 20140203
  574. * Android 4.4 stock browser and Opera 19 are moved to released versions.
  575. * Add Opera 21 data.
  576. * Update browsers usage statistics.
  577. ### 20140213
  578. * Add case insensitive to IE’s filter hack (by Dominik Schilling).
  579. * Improve selector prefixing in some rare cases (by Simon Lydell).
  580. * Firefox 27 is moved to released versions.
  581. * Add Firefox 30 data.
  582. ## 0.8 “Unbowed, Unbent, Unbroken”
  583. * Add more browsers to defaults ("> 1%, last 2 versions, ff 17, opera 12.1"
  584. instead of just "last 2 browsers").
  585. * Keep vendor prefixes without unprefixed version (like vendor-specific hacks).
  586. * Convert gradients to old WebKit syntax (actual for Android 2.3).
  587. * Better support for several syntaxes with one prefix (like Flexbox and
  588. gradients in WebKit).
  589. * Add intrinsic and extrinsic sizing values support.
  590. * Remove never existed prefixes from common mistakes (like -ms-transition).
  591. * Add Opera 17 data.
  592. * Fix selector prefixes order.
  593. * Fix browser versions order in inspect.
  594. ### 20130903
  595. * Fix old WebKit gradients convertor on rgba() colors.
  596. * Allow to write old direction syntax in gradients.
  597. ### 20130906
  598. * Fix direction syntax in radial gradients.
  599. * Don’t prefix IE filter with modern syntax.
  600. ### 20130911
  601. * Fix parsing property name with spaces.
  602. ### 20130919
  603. * Fix processing custom framework prefixes (by Johannes J. Schmidt).
  604. * Concat outputs if several files compiled to one output.
  605. * Decrease standalone build size by removing unnecessary Binary class.
  606. * iOS 7 is moved to released versions.
  607. * Clean up binary code (by Simon Lydell).
  608. ### 20130923
  609. * Firefox 24 is moved to released versions.
  610. ### 20131001
  611. * Add support for grab, grabbing, zoom-in and zoom-out cursor values.
  612. ### 20131006
  613. * Chrome 30 is moved to released versions.
  614. ### 20131007
  615. * Don’t add another prefixes in rule with prefixed selector.
  616. ### 20131009
  617. * Opera 17 is moved to released versions.
  618. ### 20131015
  619. * Fix converting multiple gradients to old webkit syntax (by Aleksei Androsov).
  620. ### 20131017
  621. * Fix @host at-rule parsing.
  622. ### 20131020
  623. * IE 11 and Andrid 4.3 is moved to released versions.
  624. * Add Opera 18 data.
  625. * Add @namespace support.
  626. * Sort browser versions in data file.
  627. ### 20131029
  628. * Add Safari 6.1 data.
  629. * Add fx alias for Firefox.
  630. ### 20131104
  631. * Update Android future version to 4.4.
  632. * Google Chrome 32 added to future versions list.
  633. * Firefox 25 now is actual version, 27 and 28 added to future versions.
  634. * Browsers statistics are updated.
  635. ### 20131205
  636. * Google Chrome 33 added to future releases list.
  637. * Google Chrome 31 moved to current releases list.
  638. ### 20131209
  639. * Use old webkit gradients for old iOS and Safari (by Chad von Nau).
  640. * Fix direction conversion for old webkit gradients (by Chad von Nau).
  641. * Update browsers popularity statistics.
  642. ### 20131213
  643. * Firefox ESR in default browsers was changed to 24 version.
  644. * Firefox 26 was moved to current releases list.
  645. * Firefox 28 was added to future releases list.
  646. ## 0.7 “We Do Not Sow”
  647. * Add vendor prefixes to selectors.
  648. * Add ::selection and ::placeholder selectors support.
  649. * Allow to load support data from Can I Use pull requests.
  650. * Remove deprecated API.
  651. ### 20130806
  652. * Add hyphens support.
  653. ### 20130807
  654. * Add tab-size support.
  655. * Add :fullscreen support.
  656. ### 20130808
  657. * Allow to select browser versions by > and >= operator.
  658. * Fix flex properties in transition.
  659. ### 20130810
  660. * Add Firefox 25 data.
  661. ### 20130824
  662. * Add Chrome 31 and 30 data.
  663. * Fix CSS comments parsing (by vladkens).
  664. ## 0.6 “As High As Honor”
  665. * New faster API, which cache preprocessed data. Old API is deprecated.
  666. * A lot of perfomance improvements.
  667. * Add Opera 15 -webkit- prefix support.
  668. * Update Chrome 29 and Safari 7 prefixes data.
  669. * Add minor browsers in popularity select.
  670. * Better syntax error messages.
  671. ### 20130721
  672. * Add Chrome 30 data.
  673. ### 20130728
  674. * Don’t remove non-standard -webkit-background-clip: text.
  675. * Don’t remove IE hack on CSS parse.
  676. ### 20130729
  677. * Add Opera 16 data.
  678. * Fix “Invalid range in character class” error on Firefox.
  679. ### 20130730
  680. * Fix correct clone comments inside keyframes (by Alexey Plutalov).
  681. * Fix angle recalculation in gradients (by Roman Komarov).
  682. ### 20130731
  683. * Add border-image support.
  684. ## 0.5 “Ours is the Fury”
  685. * Rewrite Autoprefixer to be more flexible.
  686. * Use css, instead of Rework, to fix CSS parsing errors faster.
  687. * Fix a lot of CSS parsing errors.
  688. ### 20130616
  689. * More useful message for CSS parsing errors.
  690. * Remove old WebKit gradient syntax.
  691. * Fix parsing error on comment with braces.
  692. ### 20130617
  693. * Remove old Mozilla border-radius.
  694. * Don’t prefix old IE filter.
  695. * Remove old background-clip, background-size and background-origin prefixes.
  696. * Speed up regexps in values.
  697. * Allow to hack property declarations.
  698. ### 20130625
  699. * Convert flexbox properties to 2009 and 2012 specifications.
  700. * Improve messages on syntax errors.
  701. ### 20130626
  702. * Add Firefox 24 data.
  703. * Add prefixes for font-feature-settings.
  704. ### 20130629
  705. * Fix convert flex properties to old box-flex.
  706. ## 0.4 “Winter Is Coming”
  707. * Remove outdated prefixes.
  708. * Add border-radius and box-shadow properties to database.
  709. * Change degrees in webkit gradients.
  710. ### 20130515
  711. * Add old syntax in gradient direction.
  712. * Add old syntax for display: flex.
  713. * Update browser global usage statistics.
  714. ### 20130521
  715. * Add Firefox 23 data.
  716. ### 20130524
  717. * Add Chrome 29 data.
  718. ### 20130528
  719. * Fix compatibilty with Rework from git master.
  720. * Add minor browsers to data, which can be selected only directly.
  721. ### 20130530
  722. * Add Opera 15 and iOS 6.1 data.
  723. * Fix iOS versions in properties and values data.
  724. ### 20130603
  725. * Use latest Rework 0.15 with a lot of CSS parsing fixes.
  726. * Update browsers usage statistics.
  727. ## 0.3 “Growing Strong”
  728. * Rename `autoprefixer.filter()` to `autoprefixer.rework()`.
  729. * Use own filters instead of Rework’s `prefix` and `prefixValue`.
  730. * Smarter value prefixer without false match “order” in “border”.
  731. * 40% faster.
  732. * Don’t add unnecessary properties instead of Rework’s `prefixValue`.
  733. * Don’t change properties order.
  734. * Sort properties and values in inspect output.
  735. * Add main to component config (by Jonathan Ong).
  736. * Fix documentation (by Sergey Leschina and Mark Vasilkov).
  737. ### 20130424
  738. * Fix value override in prefixer.
  739. ### 20130427
  740. * Prefix several same values in one property.
  741. * Fix Windows support in binary.
  742. * Improve print errors in binary.
  743. ### 20130502
  744. * Don’t add -webkit- prefix to IE filter.
  745. * Don’t duplicate prefixes on second run.
  746. ## 0.2 “Hear Me Roar!”
  747. * Update parse libraries.
  748. * Use component package manager to build standalone script.
  749. * Add inspect to standalone script.
  750. ## 0.1 “Fire and Blood”
  751. * Initial release.