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.

73 lines
2.6 KiB

4 years 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. ## [Unreleased][unreleased]
  5. ### Changed
  6. - Nothing yet.
  7. ## [0.0.11] - 2015-07-19
  8. ### Fixed
  9. - Localisation of animation properties.
  10. ## [0.0.10] - 2015-06-17
  11. ### Added
  12. - Localised at-rules.
  13. ## [0.0.9] - 2015-06-12
  14. ### Changed
  15. - Using global selectors outside of a global context no longer triggers warnings. Instead, this functionality will be provided by a CSS Modules linter.
  16. ### Fixed
  17. - Keyframe rules.
  18. ## [0.0.8] - 2015-06-11
  19. ### Added
  20. - Pure mode where only local scope is allowed.
  21. ### Changed
  22. - Using global selectors outside of a global context now triggers warnings.
  23. ## [0.0.7] - 2015-05-30
  24. ### Changed
  25. - Migrated to `css-selector-tokenizer`.
  26. ## [0.0.6] - 2015-05-28
  27. ### Changed
  28. - Renamed project to `postcss-modules-local-by-default`.
  29. ## [0.0.5] - 2015-05-22
  30. ### Added
  31. - Support for css-loader [inheritance](https://github.com/webpack/css-loader#inheriting) and [local imports](https://github.com/webpack/css-loader#importing-local-class-names).
  32. ## [0.0.4] - 2015-05-22
  33. ### Changed
  34. - Hide global leak detection behind undocumented `lint` option until it's more robust.
  35. ## [0.0.3] - 2015-05-22
  36. ### Changed
  37. - Transformer output now uses the new `:local(.identifier)` syntax.
  38. ### Added
  39. - Simple global leak detection. Non-local selectors like `input{}` and `[data-foobar]` now throw when not marked as global.
  40. ## [0.0.2] - 2015-05-14
  41. ### Added
  42. - Support for global selectors appended directly to locals, e.g. `.foo:global(.bar)`
  43. ## 0.0.1 - 2015-05-12
  44. ### Added
  45. - Automatic local classes
  46. - Explicit global selectors with `:global`
  47. [unreleased]: https://github.com/postcss-modules-local-by-default/compare/v0.0.10...HEAD
  48. [0.0.2]: https://github.com/postcss-modules-local-by-default/compare/v0.0.1...v0.0.2
  49. [0.0.3]: https://github.com/postcss-modules-local-by-default/compare/v0.0.2...v0.0.3
  50. [0.0.4]: https://github.com/postcss-modules-local-by-default/compare/v0.0.3...v0.0.4
  51. [0.0.5]: https://github.com/postcss-modules-local-by-default/compare/v0.0.4...v0.0.5
  52. [0.0.6]: https://github.com/postcss-modules-local-by-default/compare/v0.0.5...v0.0.6
  53. [0.0.7]: https://github.com/postcss-modules-local-by-default/compare/v0.0.6...v0.0.7
  54. [0.0.8]: https://github.com/postcss-modules-local-by-default/compare/v0.0.7...v0.0.8
  55. [0.0.9]: https://github.com/postcss-modules-local-by-default/compare/v0.0.8...v0.0.9
  56. [0.0.10]: https://github.com/postcss-modules-local-by-default/compare/v0.0.9...v0.0.10
  57. [0.0.11]: https://github.com/postcss-modules-local-by-default/compare/v0.0.10...v0.0.11