Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CHANGELOG.md 20KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671
  1. # Change Log
  2. This project adheres to [Semantic Versioning](http://semver.org/).
  3. ## 7.0.36
  4. * Backport ReDoS vulnerabilities from PostCSS 8.
  5. ## 7.0.35
  6. * Add migration guide link to PostCSS 8 error text.
  7. ## 7.0.34
  8. * Fix compatibility with `postcss-scss` 2.
  9. ## 7.0.33
  10. * Add error message for PostCSS 8 plugins.
  11. ## 7.0.32
  12. * Fix error message (by @admosity).
  13. ## 7.0.31
  14. * Use only the latest source map annotation (by Emmanouil Zoumpoulakis).
  15. ## 7.0.30
  16. * Fix TypeScript definition (by Natalie Weizenbaum).
  17. ## 7.0.29
  18. * Update `Processor#version`.
  19. ## 7.0.28
  20. * Fix TypeScript definition (by Natalie Weizenbaum).
  21. ## 7.0.27
  22. * Fix TypeScript definition (by Natalie Weizenbaum).
  23. ## 7.0.26
  24. * Fix TypeScript definition (by Natalie Weizenbaum).
  25. ## 7.0.25
  26. * Fix absolute path support for Windows (by Tom Raviv).
  27. ## 7.0.24
  28. * Fix TypeScript definition (by Keith Cirkel).
  29. ## 7.0.23
  30. * Update `Processor#version`.
  31. ## 7.0.22
  32. * Add funding link for `npm fund`.
  33. ## 7.0.21
  34. * Revert passing `nodes` property to node constructor.
  35. ## 7.0.20
  36. * Allow to pass PostCSS’s nodes in `nodes` property to node constructor.
  37. ## 7.0.19
  38. * Fix passing `nodes` property to node constructor.
  39. ## 7.0.18
  40. * Fix TypeScript type definitions (by Jan Buschtöns).
  41. ## 7.0.17
  42. * Fix TypeScript type definitions (by Bob Matcuk and Jan Buschtöns).
  43. ## 7.0.16
  44. * Revert Custom Properties fix until PostCSS 8.0.
  45. ## 7.0.15
  46. * Fix Custom Properties support (by Ivan Solovev).
  47. ## 7.0.14
  48. * Fix tokenizer for `postcss-less` (by Matt Lyons).
  49. ## 7.0.13
  50. * Fix parsing regression in 7.0.12 for comments between property and value.
  51. ## 7.0.12
  52. * Fix parsing broken CSS with two words in declaration property.
  53. ## 7.0.11
  54. * Fix source maps on declaration semicolon (by Niklas Mischkulnig).
  55. ## 7.0.10
  56. * Fix source maps (by Niklas Mischkulnig).
  57. ## 7.0.9
  58. * Increase stringifing performance for non-raws AST.
  59. ## 7.0.8
  60. * Fix TypeScript definitions (by Ankur Oberoi).
  61. * Use `support-colors` 6.0.
  62. ## 7.0.7
  63. * Extend `Error` in `CssSyntaxError`.
  64. ## 7.0.6
  65. * Fix parsing files with BOM (by Veniamin Krol).
  66. ## 7.0.5
  67. * Reduce npm package size (by Gilad Peleg).
  68. ## 7.0.4
  69. * Fix safe parser regression.
  70. ## 7.0.3
  71. * Fix tokenizer extendability (by Andrew Powell).
  72. * Reduce npm package size.
  73. ## 7.0.2
  74. * Fix warning text (by Rui Pedro M Lima).
  75. ## 7.0.1
  76. * Fix JSDoc (by Steven Lambert).
  77. ## 7.0 “President Amy”
  78. * Remove Node.js 9 and Node.js 4 support.
  79. * Remove IE and “dead” browsers support for client-side Babel transpiling.
  80. * Add CSS position on error happened inside `walk()` (by Nikhil Gaba).
  81. * Add `LazyResult#finally` (by Igor Kamyshev).
  82. * Add warning on calling PostCSS without plugins and syntax options.
  83. * Reduce client-side size.
  84. ## 6.0.23
  85. * Fix parsing nested at-rules without semicolon, params, and spaces.
  86. * Fix docs (by Kevin Schiffer and Pat Cavit).
  87. ## 6.0.22
  88. * Fix `Node#prev` and `Node#next` on missed parent.
  89. ## 6.0.21
  90. * Rename Chinese docs to fix `yarnpkg.com` issue.
  91. ## 6.0.20
  92. * Better error message on `null` as input CSS.
  93. ## 6.0.19
  94. * Fix TypeScript definitions for source maps (by Oleh Kuchuk).
  95. * Fix `source` field in TypeScript definitions (by Sylvain Pollet-Villard).
  96. ## 6.0.18
  97. * Use primitive object in TypeScript definitions (by Sylvain Pollet-Villard).
  98. ## 6.0.17
  99. * Fix parsing comment in selector between word tokens (by Oleh Kuchuk).
  100. ## 6.0.16
  101. * Fix warning text (by Michael Keller).
  102. ## 6.0.15
  103. * Add warning about missed `from` option on `process().then()` call.
  104. * Add IE 10 support.
  105. ## 6.0.14
  106. * Fix TypeScript definitions (by Jed Mao).
  107. ## 6.0.13
  108. * Fix TypeScript definitions for case of multiple PostCSS versions
  109. in `node_modules` (by Chris Eppstein).
  110. * Use `source-map` 0.6.
  111. ## 6.0.12
  112. * Don’t copy `*` hack to declaration indent.
  113. ## 6.0.11
  114. * Add upper case `!IMPORTANT` support.
  115. ## 6.0.10
  116. * Reduce PostCSS size in webpack bundle.
  117. ## 6.0.9
  118. * Improve error message for plugin with old PostCSS (by Igor Adamenko).
  119. ## 6.0.8
  120. * Fix Node.js 4.2.2 support.
  121. ## 6.0.7
  122. * Fix base64 decoding for old Node.js and browser.
  123. ## 6.0.6
  124. * Fix `end` position in at-rule without semicolon (by Oleh Kuchuk).
  125. ## 6.0.5
  126. * Move Babel config from `package.json` for `node_modules` compiling cases.
  127. ## 6.0.4
  128. * Fix parsing `;;` after rules.
  129. * Use Chalk 2.0.
  130. ## 6.0.3
  131. * Fix escape sequences parsing (by Oleh Kuchuk).
  132. * Added ability to force disable colors with an environment variable.
  133. * Improved color detection of some terminal apps.
  134. ## 6.0.2
  135. * Keep `raws.before` on moving `Root` children to new `Root`.
  136. ## 6.0.1
  137. * Fix parser extensibility to use it in Safe Parser.
  138. ## 6.0 “Marquis Orias”
  139. * Remove node.js 0.12 support.
  140. * Remove deprecated method from PostCSS 4.
  141. * Insert methods remove child from previous parent, instead of closing.
  142. * Insert methods and cloning doesn’t clean `raws` anymore.
  143. * Methods `moveTo`, `moveAfter`, `moveBefore` were deprecated.
  144. * Options was changed in `Plugin#process(css, processOptions, pluginOptions)`.
  145. * Add stream parser to reduce memory usage (by Oleh Kuchuk).
  146. * Add `before()`/`after()` shortcuts for `node.parent.insertBefore(node, x)`.
  147. * Add `Rule#raws.ownSemicolon` for semicolon after templates for `@apply`.
  148. * Use `babel-preset-env` to compile npm package.
  149. * Remove `js-base64` from dependencies (by Roman Dvornov).
  150. * Fix error message on single `:` in CSS.
  151. * Move tests to Jest.
  152. * Clean up test (by Gabriel Kalani).
  153. ## 5.2.18
  154. * Fix TypeScript definitions for case of multiple PostCSS versions
  155. in `node_modules` (by Chris Eppstein).
  156. ## 5.2.17
  157. * Add `postcss-sass` suggestion to syntax error on `.sass` input.
  158. ## 5.2.16
  159. * Better error on wrong argument in node constructor.
  160. ## 5.2.15
  161. * Fix TypeScript definitions (by bumbleblym).
  162. ## 5.2.14
  163. * Fix browser bundle building in webpack (by janschoenherr).
  164. ## 5.2.13
  165. * Do not add comment to important raws.
  166. * Fix JSDoc (by Dmitry Semigradsky).
  167. ## 5.2.12
  168. * Fix typo in deprecation message (by Garet McKinley).
  169. ## 5.2.11
  170. * Fix TypeScript definitions (by Jed Mao).
  171. ## 5.2.10
  172. * Fix TypeScript definitions (by Jed Mao).
  173. ## 5.2.9
  174. * Update TypeScript definitions (by Jed Mao).
  175. ## 5.2.8
  176. * Fix error message (by Ben Briggs).
  177. ## 5.2.7
  178. * Better error message on syntax object in plugins list.
  179. ## 5.2.6
  180. * Fix `postcss.vendor` for values with spaces (by 刘祺).
  181. ## 5.2.5
  182. * Better error message on unclosed string (by Ben Briggs).
  183. ## 5.2.4
  184. * Improve terminal CSS syntax highlight (by Simon Lydell).
  185. ## 5.2.3
  186. * Better color highlight in syntax error code frame.
  187. * Fix color highlight support in old systems.
  188. ## 5.2.2
  189. * Update `Processor#version`.
  190. ## 5.2.1
  191. * Fix source map path for CSS without `from` option (by Michele Locati).
  192. ## 5.2 “Duke Vapula”
  193. * Add syntax highlight to code frame in syntax error (by Andrey Popp).
  194. * Use Babel code frame style and size in syntax error.
  195. * Add `[` and `]` tokens to parse `[attr=;] {}` correctly.
  196. * Add `ignoreErrors` options to tokenizer (by Andrey Popp).
  197. * Fix error position on tab indent (by Simon Lydell).
  198. ## 5.1.2
  199. * Suggests SCSS/Less parsers on parse errors depends on file extension.
  200. ## 5.1.1
  201. * Fix TypeScript definitions (by Efremov Alexey).
  202. ## 5.1 “King and President Zagan”
  203. * Add URI in source map support (by Mark Finger).
  204. * Add `map.from` option (by Mark Finger).
  205. * Add `<no source>` mappings for nodes without source (by Bogdan Chadkin).
  206. * Add function value support to `map.prev` option (by Chris Montoro).
  207. * Add declaration value type check in shortcut creating (by 刘祺).
  208. * `Result#warn` now returns new created warning.
  209. * Don’t call plugin creator in `postcss.plugin` call.
  210. * Add source maps to PostCSS ES5 build.
  211. * Add JSDoc to PostCSS classes.
  212. * Clean npm package from unnecessary docs.
  213. ## 5.0.21
  214. * Fix support with input source mao with `utf8` encoding name.
  215. ## 5.0.20
  216. * Fix between raw value parsing (by David Clark).
  217. * Update TypeScript definitions (by Jed Mao).
  218. * Clean fake node.source after `append(string)`.
  219. ## 5.0.19
  220. * Fix indent-based syntaxes support.
  221. ## 5.0.18
  222. * Parse new lines according W3C CSS syntax specification.
  223. ## 5.0.17
  224. * Fix options argument in `Node#warn` (by Ben Briggs).
  225. * Fix TypeScript definitions (by Jed Mao).
  226. ## 5.0.16
  227. * Fix CSS syntax error position on unclosed quotes.
  228. ## 5.0.15
  229. * Fix `Node#clone()` on `null` value somewhere in node.
  230. ## 5.0.14
  231. * Allow to use PostCSS in webpack bundle without JSON loader.
  232. ## 5.0.13
  233. * Fix `index` and `word` options in `Warning#toString` (by Bogdan Chadkin).
  234. * Fix input source content loading in errors.
  235. * Fix map options on using `LazyResult` as input CSS.
  236. * 100% test coverage.
  237. * Use Babel 6.
  238. ## 5.0.12
  239. * Allow passing a previous map with no mappings (by Andreas Lind).
  240. ## 5.0.11
  241. * Increase plugins performance by 1.5 times.
  242. ## 5.0.10
  243. * Fix warning from nodes without source.
  244. ## 5.0.9
  245. * Fix source map type detection (by @asan).
  246. ## 5.0.8
  247. * Fixed a missed step in `5.0.7` that caused the module to be published as
  248. ES6 code.
  249. ## 5.0.7
  250. * PostCSS now requires that node 0.12 is installed via the engines property
  251. in package.json (by Howard Zuo).
  252. ## 5.0.6
  253. * Fix parsing nested at-rule without semicolon (by Matt Drake).
  254. * Trim `Declaration#value` (by Bogdan Chadkin).
  255. ## 5.0.5
  256. * Fix multi-tokens property parsing (by Matt Drake).
  257. ## 5.0.4
  258. * Fix start position in `Root#source`.
  259. * Fix source map annotation, when CSS uses `\r\n` (by Mohammad Younes).
  260. ## 5.0.3
  261. * Fix `url()` parsing.
  262. * Fix using `selectors` in `Rule` constructor.
  263. * Add start source to `Root` node.
  264. ## 5.0.2
  265. * Fix `remove(index)` to be compatible with 4.x plugin.
  266. ## 5.0.1
  267. * Fix PostCSS 4.x plugins compatibility.
  268. * Fix type definition loading (by Jed Mao).
  269. ## 5.0 “President Valac”
  270. * Remove `safe` option. Move Safe Parser to separate project.
  271. * `Node#toString` does not include `before` for root nodes.
  272. * Remove plugin returning `Root` API.
  273. * Remove Promise polyfill for node.js 0.10.
  274. * Deprecate `eachInside`, `eachDecl`, `eachRule`, `eachAtRule` and `eachComment`
  275. in favor of `walk`, `walkDecls`, `walkRules`, `walkAtRules` and `walkComments`
  276. (by Jed Mao).
  277. * Deprecate `Container#remove` and `Node#removeSelf`
  278. in favor of `Container#removeChild` and `Node#remove` (by Ben Briggs).
  279. * Deprecate `Node#replace` in favor of `replaceWith` (by Ben Briggs).
  280. * Deprecate raw properties in favor of `Node#raws` object.
  281. * Deprecate `Node#style` in favor of `raw`.
  282. * Deprecate `CssSyntaxError#generated` in favor of `input`.
  283. * Deprecate `Node#cleanStyles` in favor of `cleanRaws`.
  284. * Deprecate `Root#prevMap` in favor of `Root.source.input.map`.
  285. * Add `syntax`, `parser` and `stringifier` options for Custom Syntaxes.
  286. * Add stringifier option to `Node#toString`.
  287. * Add `Result#content` alias for non-CSS syntaxes.
  288. * Add `plugin.process(css)` shortcut to every plugin function (by Ben Briggs).
  289. * Add multiple nodes support to insert methods (by Jonathan Neal).
  290. * Add `Node#warn` shortcut (by Ben Briggs).
  291. * Add `word` and `index` options to errors and warnings (by David Clark).
  292. * Add `line`, `column` properties to `Warning`.
  293. * Use `supports-color` library to detect color support in error output.
  294. * Add type definitions for TypeScript plugin developers (by Jed Mao).
  295. * `Rule#selectors` setter detects separators.
  296. * Add `postcss.stringify` method.
  297. * Throw descriptive errors for incorrectly formatted plugins.
  298. * Add docs to npm release.
  299. * Fix `url()` parsing.
  300. * Fix Windows support (by Jed Mao).
  301. ## 4.1.16
  302. * Fix errors without stack trace.
  303. ## 4.1.15
  304. * Allow asynchronous plugins to change processor plugins list (by Ben Briggs).
  305. ## 4.1.14
  306. * Fix for plugins packs defined by `postcss.plugin`.
  307. ## 4.1.13
  308. * Fix input inlined source maps with UTF-8 encoding.
  309. ## 4.1.12
  310. * Update Promise polyfill.
  311. ## 4.1.11
  312. * Fix error message on wrong plugin format.
  313. ## 4.1.10
  314. * Fix Promise behavior on sync plugin errors.
  315. * Automatically fill `plugin` field in `CssSyntaxError`.
  316. * Fix warning message (by Ben Briggs).
  317. ## 4.1.9
  318. * Speed up `node.clone()`.
  319. ## 4.1.8
  320. * Accepts `Processor` instance in `postcss()` constructor too.
  321. ## 4.1.7
  322. * Speed up `postcss.list` (by Bogdan Chadkin).
  323. ## 4.1.6
  324. * Fix Promise behavior on parsing error.
  325. ## 4.1.5
  326. * Parse at-words in declaration values.
  327. ## 4.1.4
  328. * Fix Promise polyfill dependency (by Anton Yakushev and Matija Marohnić).
  329. ## 4.1.3
  330. * Add Promise polyfill for node.js 0.10 and IE.
  331. ## 4.1.2
  332. * List helpers can be accessed independently `var space = postcss.list.space`.
  333. ## 4.1.1
  334. * Show deprecated message only once.
  335. ## 4.1 “Marquis Andras”
  336. * Asynchronous plugin support.
  337. * Add warnings from plugins and `Result#messages`.
  338. * Add `postcss.plugin()` to create plugins with a standard API.
  339. * Insert nodes by CSS string.
  340. * Show version warning message on error from an outdated plugin.
  341. * Send `Result` instance to plugins as the second argument.
  342. * Add `CssSyntaxError#plugin`.
  343. * Add `CssSyntaxError#showSourceCode()`.
  344. * Add `postcss.list` and `postcss.vendor` aliases.
  345. * Add `Processor#version`.
  346. * Parse wrong closing bracket.
  347. * Parse `!important` statement with spaces and comments inside (by Ben Briggs).
  348. * Throw an error on declaration without `prop` or `value` (by Philip Peterson).
  349. * Fix source map mappings position.
  350. * Add indexed source map support.
  351. * Always set `error.generated`.
  352. * Clean all source map annotation comments.
  353. ## 4.0.6
  354. * Remove `babel` from released package dependencies (by Andres Suarez).
  355. ## 4.0.5
  356. * Fix error message on double colon in declaration.
  357. ## 4.0.4
  358. * Fix indent detection in some rare cases.
  359. ## 4.0.3
  360. * Faster API with 6to5 Loose mode.
  361. * Fix indexed source maps support.
  362. ## 4.0.2
  363. * Do not copy IE hacks to code style.
  364. ## 4.0.1
  365. * Add `source.input` to `Root` too.
  366. ## 4.0 “Duke Flauros”
  367. * Rename `Container#childs` to `nodes`.
  368. * Rename `PostCSS#processors` to `plugins`.
  369. * Add `Node#replaceValues()` method.
  370. * Add `Node#moveTo()`, `moveBefore()` and `moveAfter()` methods.
  371. * Add `Node#cloneBefore()` and `cloneAfter()` shortcuts.
  372. * Add `Node#next()`, `prev()` and `root()` shortcuts.
  373. * Add `Node#replaceWith()` method.
  374. * Add `Node#error()` method.
  375. * Add `Container#removeAll()` method.
  376. * Add filter argument to `eachDecl()` and `eachAtRule()`.
  377. * Add `Node#source.input` and move `source.file` or `source.id` to `input`.
  378. * Change code indent, when node was moved.
  379. * Better fix code style on `Rule`, `AtRule` and `Comment` nodes changes.
  380. * Allow to create rules and at-rules by hash shortcut in append methods.
  381. * Add class name to CSS syntax error output.
  382. ## 3.0.7
  383. * Fix IE filter parsing with multiple commands.
  384. * Safer way to consume PostCSS object as plugin (by Maxime Thirouin).
  385. ## 3.0.6
  386. * Fix missing semicolon when comment comes after last declaration.
  387. * Fix Safe Mode declaration parsing on unclosed blocks.
  388. ## 3.0.5
  389. * Fix parser to support difficult cases with backslash escape and brackets.
  390. * Add `CssSyntaxError#stack` (by Maxime Thirouin).
  391. ## 3.0.4
  392. * Fix Safe Mode on unknown word before declaration.
  393. ## 3.0.3
  394. * Increase tokenizer speed (by Roman Dvornov).
  395. ## 3.0.2
  396. * Fix empty comment parsing.
  397. * Fix `Root#normalize` in some inserts.
  398. ## 3.0.1
  399. * Fix Rhino JS runtime support.
  400. * Typo in deprecated warning (by Maxime Thirouin).
  401. ## 3.0 “Marquis Andrealphus”
  402. * New parser, which become the fastest ever CSS parser written in JavaScript.
  403. * Parser can now parse declarations and rules in one parent (like in `@page`)
  404. and nested declarations for plugins like `postcss-nested`.
  405. * Child nodes array is now in `childs` property, instead of `decls` and `rules`.
  406. * `map.inline` and `map.sourcesContent` options are now `true` by default.
  407. * Fix iterators (`each`, `insertAfter`) on children array changes.
  408. * Use previous source map to show origin source of CSS syntax error.
  409. * Use 6to5 ES6 compiler, instead of ES6 Transpiler.
  410. * Use code style for manually added rules from existing rules.
  411. * Use `from` option from previous source map `file` field.
  412. * Set `to` value to `from` if `to` option is missing.
  413. * Use better node source name when missing `from` option.
  414. * Show a syntax error when `;` is missed between declarations.
  415. * Allow to pass `PostCSS` instance or list of plugins to `use()` method.
  416. * Allow to pass `Result` instance to `process()` method.
  417. * Trim Unicode BOM on source maps parsing.
  418. * Parse at-rules without spaces like `@import"file"`.
  419. * Better previous `sourceMappingURL` annotation comment cleaning.
  420. * Do not remove previous `sourceMappingURL` comment on `map.annotation: false`.
  421. * Parse nameless at-rules in Safe Mode.
  422. * Fix source map generation for nodes without source.
  423. * Fix next child `before` if `Root` first child got removed.
  424. ## 2.2.6
  425. * Fix map generation for nodes without source (by Josiah Savary).
  426. ## 2.2.5
  427. * Fix source map with BOM marker support (by Mohammad Younes).
  428. * Fix source map paths (by Mohammad Younes).
  429. ## 2.2.4
  430. * Fix `prepend()` on empty `Root`.
  431. ## 2.2.3
  432. * Allow to use object shortcut in `use()` with functions like `autoprefixer`.
  433. ## 2.2.2
  434. * Add shortcut to set processors in `use()` via object with `.postcss` property.
  435. ## 2.2.1
  436. * Send `opts` from `Processor#process(css, opts)` to processors.
  437. ## 2.2 “Marquis Cimeies”
  438. * Use GNU style syntax error messages.
  439. * Add `Node#replace` method.
  440. * Add `CssSyntaxError#reason` property.
  441. ## 2.1.2
  442. * Fix UTF-8 support in inline source map.
  443. * Fix source map `sourcesContent` if there is no `from` and `to` options.
  444. ## 2.1.1
  445. * Allow to miss `to` and `from` options for inline source maps.
  446. * Add `Node#source.id` if file name is unknown.
  447. * Better detect splitter between rules in CSS concatenation tools.
  448. * Automatically clone node in insert methods.
  449. ## 2.1 “King Amdusias”
  450. * Change Traceur ES6 compiler to ES6 Transpiler.
  451. * Show broken CSS line in syntax error.
  452. ## 2.0 “King Belial”
  453. * Project was rewritten from CoffeeScript to ES6.
  454. * Add Safe Mode to works with live input or with hacks from legacy code.
  455. * More safer parser to pass all hacks from Browserhacks.com.
  456. * Use real properties instead of magic getter/setter for raw properties.
  457. ## 1.0 “Marquis Decarabia”
  458. * Save previous source map for each node to support CSS concatenation
  459. with multiple previous maps.
  460. * Add `map.sourcesContent` option to add origin content to `sourcesContent`
  461. inside map.
  462. * Allow to set different place of output map in annotation comment.
  463. * Allow to use arrays and `Root` in `Container#append` and same methods.
  464. * Add `Root#prevMap` with information about previous map.
  465. * Allow to use latest PostCSS from GitHub by npm.
  466. * `Result` now is lazy and it will generate output CSS only if you use `css`
  467. or `map` property.
  468. * Use separated `map.prev` option to set previous map.
  469. * Rename `inlineMap` option to `map.inline`.
  470. * Rename `mapAnnotation` option to `map.annotation`.
  471. * `Result#map` now return `SourceMapGenerator` object, instead of string.
  472. * Run previous map autodetect only if input CSS contains annotation comment.
  473. * Add `map: 'inline'` shortcut for `map: { inline: true }` option.
  474. * `Node#source.file` now will contains absolute path.
  475. * Clean `Declaration#between` style on node clone.
  476. ## 0.3.5
  477. * Allow to use `Root` or `Result` as first argument in `process()`.
  478. * Save parsed AST to `Result#root`.
  479. ## 0.3.4
  480. * Better space symbol detect to read UTF-8 BOM correctly.
  481. ## 0.3.3
  482. * Remove source map hacks by using new Mozilla’s `source-map` (by Simon Lydell).
  483. ## 0.3.2
  484. * Add URI encoding support for inline source maps.
  485. ## 0.3.1
  486. * Fix relative paths from previous source map.
  487. * Safer space split in `Rule#selectors` (by Simon Lydell).
  488. ## 0.3 “Prince Seere”
  489. * Add `Comment` node for comments between declarations or rules.
  490. * Add source map annotation comment to output CSS.
  491. * Allow to inline source map to annotation comment by data:uri.
  492. * Fix source maps on Windows.
  493. * Fix source maps for subdirectory (by Dmitry Nikitenko and Simon Lydell).
  494. * Autodetect previous source map.
  495. * Add `first` and `last` shortcuts to container nodes.
  496. * Parse `!important` to separated property in `Declaration`.
  497. * Allow to break iteration by returning `false`.
  498. * Copy code style to new nodes.
  499. * Add `eachInside` method to recursively iterate all nodes.
  500. * Add `selectors` shortcut to get selectors array.
  501. * Add `toResult` method to `Rule` to simplify work with several input files.
  502. * Clean declaration’s `value`, rule’s `selector` and at-rule’s `params`
  503. by storing spaces in `between` property.
  504. ## 0.2 “Duke Dantalion”
  505. * Add source map support.
  506. * Add shortcuts to create nodes.
  507. * Method `process()` now returns object with `css` and `map` keys.
  508. * Origin CSS file option was renamed from `file` to `from`.
  509. * Rename `Node#remove()` method to `removeSelf()` to fix name conflict.
  510. * Node source was moved to `source` property with origin file
  511. and node end position.
  512. * You can set own CSS generate function.
  513. ## 0.1 “Count Andromalius”
  514. * Initial release.