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 2.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. # Release history
  2. All notable changes to this project will be documented in this file.
  3. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
  4. and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
  5. <details>
  6. <summary><strong>Guiding Principles</strong></summary>
  7. - Changelogs are for humans, not machines.
  8. - There should be an entry for every single version.
  9. - The same types of changes should be grouped.
  10. - Versions and sections should be linkable.
  11. - The latest version comes first.
  12. - The release date of each versions is displayed.
  13. - Mention whether you follow Semantic Versioning.
  14. </details>
  15. <details>
  16. <summary><strong>Types of changes</strong></summary>
  17. Changelog entries are classified using the following labels _(from [keep-a-changelog](http://keepachangelog.com/)_):
  18. - `Added` for new features.
  19. - `Changed` for changes in existing functionality.
  20. - `Deprecated` for soon-to-be removed features.
  21. - `Removed` for now removed features.
  22. - `Fixed` for any bug fixes.
  23. - `Security` in case of vulnerabilities.
  24. </details>
  25. ## [2.0.0] - 2017-04-20
  26. ### Changed
  27. - Now supports data descriptors in addition to accessor descriptors.
  28. - Now uses [Reflect.defineProperty][reflect] when available, otherwise falls back to [Object.defineProperty][object].
  29. ## [1.0.0] - 2017-04-20
  30. - stable release
  31. ## [0.2.5] - 2015-08-31
  32. - use is-descriptor
  33. ## [0.2.3] - 2015-08-29
  34. - check keys length
  35. ## [0.2.2] - 2015-08-27
  36. - ensure val is an object
  37. ## [0.2.1] - 2015-08-27
  38. - support functions
  39. ## [0.2.0] - 2015-08-27
  40. - support get/set
  41. - update docs
  42. ## [0.1.0] - 2015-08-12
  43. - first commit
  44. [2.0.0]: https://github.com/jonschlinkert/define-property/compare/1.0.0...2.0.0
  45. [1.0.0]: https://github.com/jonschlinkert/define-property/compare/0.2.5...1.0.0
  46. [0.2.5]: https://github.com/jonschlinkert/define-property/compare/0.2.3...0.2.5
  47. [0.2.3]: https://github.com/jonschlinkert/define-property/compare/0.2.2...0.2.3
  48. [0.2.2]: https://github.com/jonschlinkert/define-property/compare/0.2.1...0.2.2
  49. [0.2.1]: https://github.com/jonschlinkert/define-property/compare/0.2.0...0.2.1
  50. [0.2.0]: https://github.com/jonschlinkert/define-property/compare/0.1.3...0.2.0
  51. [keep-a-changelog]: https://github.com/olivierlacan/keep-a-changelog
  52. [object]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/defineProperty
  53. [reflect]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Reflect/defineProperty