選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  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. ## [2.2.0] / 15 October 2015
  5. ### Added
  6. * Add Partials support to CLI, by [@palkan].
  7. ### Changed
  8. * Move install instructions to README's top, by [@mateusortiz]
  9. * Improved devhook install output, by [@ShashankaNataraj].
  10. * Clarifies and improves language in documentation, by [@jfmercer].
  11. * Linting CLI tool, by [@phillipj].
  12. * npm 2.x and node v4 on Travis, by [@phillipj].
  13. ### Fixes
  14. * Fix README spelling error to "aforementioned", by [@djchie].
  15. * Equal error message test in .render() for server and browser, by [@phillipj].
  16. ### Dependencies
  17. * chai -> 3.3.0
  18. * eslint -> 1.6.0
  19. ## [2.1.3] / 23 July 2015
  20. ### Added
  21. * Throw error when providing .render() with invalid template type, by [@phillipj].
  22. * Documents use of string literals containing double quotes, by [@jfmercer].
  23. ### Changed
  24. * Move mustache gif to githubusercontent, by [@Andersos].
  25. ### Fixed
  26. * Update UMD Shim to be resilient to HTMLElement global pollution, by [@mikesherov].
  27. ## [2.1.2] / 17 June 2015
  28. ### Added
  29. * Mustache global definition ([#466]) by [@yousefcisco].
  30. ## [2.1.1] / 11 June 2015
  31. ### Added
  32. * State that we use semver on the change log, by [@dasilvacontin].
  33. * Added version links to change log, by [@dasilvacontin].
  34. ### Fixed
  35. * Bugfix for using values from view's context prototype, by [@phillipj].
  36. * Improve test with undefined/null lookup hit using dot notation, by [@dasilvacontin].
  37. * Bugfix for null/undefined lookup hit when using dot notation, by [@phillipj].
  38. * Remove moot `version` property from bower.json, by [@kkirsche].
  39. * bower.json doesn't require a version bump via hook, by [@dasilvacontin].
  40. ## [2.1.0] / 5 June 2015
  41. * Added license attribute to package.json, by [@pgilad].
  42. * Minor changes to make mustache.js compatible with both WSH and ASP, by [@nagaozen].
  43. * Improve CLI view parsing error, by [@phillipj].
  44. * Bugfix for view context cache, by [@phillipj].
  45. ## [2.0.0] / 27 Mar 2015
  46. * Fixed lookup not stopping upon finding `undefined` or `null` values, by [@dasilvacontin].
  47. * Refactored pre-commit hook, by [@dasilvacontin].
  48. ## [1.2.0] / 24 Mar 2015
  49. * Added -v option to CLI, by [@phillipj].
  50. * Bugfix for rendering Number when it serves as the Context, by [@phillipj].
  51. * Specified files in package.json for a cleaner install, by [@phillipj].
  52. ## [1.1.0] / 18 Feb 2015
  53. * Refactor Writer.renderTokens() for better readability, by [@phillipj].
  54. * Cleanup tests section in readme, by [@phillipj].
  55. * Added JSHint to tests/CI, by [@phillipj].
  56. * Added node v0.12 on travis, by [@phillipj].
  57. * Created command line tool, by [@phillipj].
  58. * Added *falsy* to Inverted Sections description in README, by [@kristijanmatic].
  59. ## [1.0.0] / 20 Dec 2014
  60. * Inline tag compilation, by [@mjackson].
  61. * Fixed AMD registration, volo package.json entry, by [@jrburke].
  62. * Added spm support, by [@afc163].
  63. * Only access properties of objects on Context.lookup, by [@cmbuckley].
  64. ## [0.8.2] / 17 Mar 2014
  65. * Supporting Bower through a bower.json file.
  66. ## [0.8.1] / 3 Jan 2014
  67. * Fix usage of partial templates.
  68. ## [0.8.0] / 2 Dec 2013
  69. * Remove compile* writer functions, use mustache.parse instead. Smaller API.
  70. * Throw an error when rendering a template that contains higher-order sections and
  71. the original template is not provided.
  72. * Remove low-level Context.make function.
  73. * Better code readability and inline documentation.
  74. * Stop caching templates by name.
  75. ## [0.7.3] / 5 Nov 2013
  76. * Don't require the original template to be passed to the rendering function
  77. when using compiled templates. This is still required when using higher-order
  78. functions in order to be able to extract the portion of the template
  79. that was contained by that section. Fixes [#262].
  80. * Performance improvements.
  81. ## [0.7.2] / 27 Dec 2012
  82. * Fixed a rendering bug ([#274]) when using nested higher-order sections.
  83. * Better error reporting on failed parse.
  84. * Converted tests to use mocha instead of vows.
  85. ## [0.7.1] / 6 Dec 2012
  86. * Handle empty templates gracefully. Fixes [#265], [#267], and [#270].
  87. * Cache partials by template, not by name. Fixes [#257].
  88. * Added Mustache.compileTokens to compile the output of Mustache.parse. Fixes
  89. [#258].
  90. ## [0.7.0] / 10 Sep 2012
  91. * Rename Renderer => Writer.
  92. * Allow partials to be loaded dynamically using a callback (thanks
  93. [@TiddoLangerak] for the suggestion).
  94. * Fixed a bug with higher-order sections that prevented them from being
  95. passed the raw text of the section from the original template.
  96. * More concise token format. Tokens also include start/end indices in the
  97. original template.
  98. * High-level API is consistent with the Writer API.
  99. * Allow partials to be passed to the pre-compiled function (thanks
  100. [@fallenice]).
  101. * Don't use eval (thanks [@cweider]).
  102. ## [0.6.0] / 31 Aug 2012
  103. * Use JavaScript's definition of falsy when determining whether to render an
  104. inverted section or not. Issue [#186].
  105. * Use Mustache.escape to escape values inside {{}}. This function may be
  106. reassigned to alter the default escaping behavior. Issue [#244].
  107. * Fixed a bug that clashed with QUnit (thanks [@kannix]).
  108. * Added volo support (thanks [@guybedford]).
  109. [2.2.0]: https://github.com/janl/mustache.js/compare/v2.1.3...v2.2.0
  110. [2.1.3]: https://github.com/janl/mustache.js/compare/v2.1.2...v2.1.3
  111. [2.1.2]: https://github.com/janl/mustache.js/compare/v2.1.1...v2.1.2
  112. [2.1.1]: https://github.com/janl/mustache.js/compare/v2.1.0...v2.1.1
  113. [2.1.0]: https://github.com/janl/mustache.js/compare/v2.0.0...v2.1.0
  114. [2.0.0]: https://github.com/janl/mustache.js/compare/v1.2.0...v2.0.0
  115. [1.2.0]: https://github.com/janl/mustache.js/compare/v1.1.0...v1.2.0
  116. [1.1.0]: https://github.com/janl/mustache.js/compare/v1.0.0...v1.1.0
  117. [1.0.0]: https://github.com/janl/mustache.js/compare/0.8.2...v1.0.0
  118. [0.8.2]: https://github.com/janl/mustache.js/compare/0.8.1...0.8.2
  119. [0.8.1]: https://github.com/janl/mustache.js/compare/0.8.0...0.8.1
  120. [0.8.0]: https://github.com/janl/mustache.js/compare/0.7.3...0.8.0
  121. [0.7.3]: https://github.com/janl/mustache.js/compare/0.7.2...0.7.3
  122. [0.7.2]: https://github.com/janl/mustache.js/compare/0.7.1...0.7.2
  123. [0.7.1]: https://github.com/janl/mustache.js/compare/0.7.0...0.7.1
  124. [0.7.0]: https://github.com/janl/mustache.js/compare/0.6.0...0.7.0
  125. [0.6.0]: https://github.com/janl/mustache.js/compare/0.5.2...0.6.0
  126. [#186]: https://github.com/janl/mustache.js/issues/186
  127. [#244]: https://github.com/janl/mustache.js/issues/244
  128. [#257]: https://github.com/janl/mustache.js/issues/257
  129. [#258]: https://github.com/janl/mustache.js/issues/258
  130. [#262]: https://github.com/janl/mustache.js/issues/262
  131. [#265]: https://github.com/janl/mustache.js/issues/265
  132. [#267]: https://github.com/janl/mustache.js/issues/267
  133. [#270]: https://github.com/janl/mustache.js/issues/270
  134. [#274]: https://github.com/janl/mustache.js/issues/274
  135. [#466]: https://github.com/janl/mustache.js/issues/466
  136. [@afc163]: https://github.com/afc163
  137. [@Andersos]: https://github.com/Andersos
  138. [@cmbuckley]: https://github.com/cmbuckley
  139. [@cweider]: https://github.com/cweider
  140. [@dasilvacontin]: https://github.com/dasilvacontin
  141. [@djchie]: https://github.com/djchie
  142. [@fallenice]: https://github.com/fallenice
  143. [@guybedford]: https://github.com/guybedford
  144. [@jfmercer]: https://github.com/jfmercer
  145. [@jrburke]: https://github.com/jrburke
  146. [@kannix]: https://github.com/kannix
  147. [@kkirsche]: https://github.com/kkirsche
  148. [@kristijanmatic]: https://github.com/kristijanmatic
  149. [@mateusortiz]: https://github.com/mateusortiz
  150. [@mikesherov]: https://github.com/mikesherov
  151. [@mjackson]: https://github.com/mjackson
  152. [@nagaozen]: https://github.com/nagaozen
  153. [@palkan]: https://github.com/palkan
  154. [@pgilad]: https://github.com/pgilad
  155. [@phillipj]: https://github.com/phillipj
  156. [@ShashankaNataraj]: https://github.com/ShashankaNataraj
  157. [@TiddoLangerak]: https://github.com/TiddoLangerak
  158. [@yousefcisco]: https://github.com/yousefcisco