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.

92 lines
2.4 KiB

3 months ago
  1. # Change Log
  2. All notable changes to this project will be documented in this file.
  3. This project adheres to [Semantic Versioning](http://semver.org/).
  4. ## [3.2.1](https://github.com/postcss-modules-local-by-default/compare/v3.2.0...v3.2.1)
  5. ### Chore
  6. - update `postcss-selector-parser`
  7. ## [3.2.0](https://github.com/postcss-modules-local-by-default/compare/v3.1.2...v3.2.0) - 2024-04-03
  8. ### Features
  9. - supports multiple composes, i.e. `.class { composes: a b, global(c), d e from "./path/file.css" }`
  10. ## [3.1.2](https://github.com/postcss-modules-local-by-default/compare/v3.1.1...v3.1.2) - 2024-04-03
  11. ### Fixes
  12. - export a root and limit from the `@scope` at-rule
  13. ## [3.1.1](https://github.com/postcss-modules-local-by-default/compare/v3.1.0...v3.1.1) - 2024-01-18
  14. ### Fixes
  15. - handle `@scope` at-rule
  16. - fix CSS nesting logic
  17. ## [3.1.0](https://github.com/postcss-modules-local-by-default/compare/v3.0.0...v3.1.0) - 2023-12-21
  18. ### Fixes
  19. - scoped class attribute
  20. ### Features
  21. - pass a node to the `generateExportEntry` option
  22. ## [3.0.0](https://github.com/postcss-modules-local-by-default/compare/v3.0.0-rc.2...v3.0.0) - 2020-10-13
  23. ### Fixes
  24. - compatibility with plugins other plugins
  25. - handle animation short name
  26. - perf
  27. ## [3.0.0-rc.2](https://github.com/postcss-modules-local-by-default/compare/v3.0.0-rc.1...v3.0.0-rc.2) - 2020-10-11
  28. ### BREAKING CHANGE
  29. - minimum supported `postcss` version is `^8.1.0`
  30. ### Fixes
  31. - minimum supported `Node.js` version is `^10 || ^12 || >= 14`
  32. - compatibility with PostCSS 8
  33. ## [3.0.0-rc.1](https://github.com/postcss-modules-local-by-default/compare/v3.0.0-rc.0...v3.0.0-rc.1) - 2020-09-22
  34. ### BREAKING CHANGE
  35. - do not handle invalid syntax
  36. ## [3.0.0-rc.0](https://github.com/postcss-modules-local-by-default/compare/v2.2.0...v3.0.0-rc.0) - 2020-09-21
  37. ### BREAKING CHANGE
  38. - minimum supported `Node.js` version is `>= 10.13.0 || >= 12.13.0 || >= 14`
  39. - minimum supported `postcss` version is `^8.0.3`
  40. - `postcss` was moved to `peerDependencies`, you need to install `postcss` in your project before use the plugin
  41. ## 2.2.0 - 2020-03-19
  42. - added the `exportGlobals` option to export global classes and ids
  43. ## 2.1.1 - 2019-03-05
  44. ### Fixed
  45. - add additional space after the escape sequence (#17)
  46. ## [2.1.0] - 2019-03-05
  47. ### Fixed
  48. - handles properly selector with escaping characters (like: `.\31 a2b3c { color: red }`)
  49. ### Feature
  50. - `generateExportEntry` option (allow to setup key and value for `:export {}` rule)