PageRenderTime 26ms CodeModel.GetById 23ms RepoModel.GetById 1ms app.codeStats 0ms

/server/node_modules/qunit/node_modules/istanbul/node_modules/handlebars/release-notes.md

https://gitlab.com/flangelier/tictacme
Markdown | 193 lines | 146 code | 47 blank | 0 comment | 0 complexity | 22661aa3a2a30bc292310b73fe3d9c58 MD5 | raw file
  1. # Release Notes
  2. ## Development
  3. [Commits](https://github.com/wycats/handlebars.js/compare/v1.3.0...master)
  4. ## v1.3.0 - January 1st, 2014
  5. - [#690](https://github.com/wycats/handlebars.js/pull/690) - Added support for subexpressions ([@machty](https://api.github.com/users/machty))
  6. - [#696](https://github.com/wycats/handlebars.js/pull/696) - Fix for reserved keyword "default" ([@nateirwin](https://api.github.com/users/nateirwin))
  7. - [#692](https://github.com/wycats/handlebars.js/pull/692) - add line numbers to nodes when parsing ([@fivetanley](https://api.github.com/users/fivetanley))
  8. - [#695](https://github.com/wycats/handlebars.js/pull/695) - Pull options out from param setup to allow easier extension ([@blakeembrey](https://api.github.com/users/blakeembrey))
  9. - [#694](https://github.com/wycats/handlebars.js/pull/694) - Make the environment reusable ([@blakeembrey](https://api.github.com/users/blakeembrey))
  10. - [#636](https://github.com/wycats/handlebars.js/issues/636) - Print line and column of errors ([@sgronblo](https://api.github.com/users/sgronblo))
  11. - Use literal for data lookup - c1a93d3
  12. - Add stack handling sanity checks - cd885bf
  13. - Fix stack id "leak" on replaceStack - ddfe457
  14. - Fix incorrect stack pop when replacing literals - f4d337d
  15. [Commits](https://github.com/wycats/handlebars.js/compare/v1.2.1...v1.3.0)
  16. ## v1.2.1 - December 26th, 2013
  17. - [#684](https://github.com/wycats/handlebars.js/pull/684) - Allow any number of trailing characters for valid JavaScript variable ([@blakeembrey](https://api.github.com/users/blakeembrey))
  18. - [#686](https://github.com/wycats/handlebars.js/pull/686) - Falsy AMD module names in version 1.2.0 ([@kpdecker](https://api.github.com/users/kpdecker))
  19. [Commits](https://github.com/wycats/handlebars.js/compare/v1.2.0...v1.2.1)
  20. ## v1.2.0 - December 23rd, 2013
  21. - [#675](https://github.com/wycats/handlebars.js/issues/675) - Cannot compile empty template for partial ([@erwinw](https://api.github.com/users/erwinw))
  22. - [#677](https://github.com/wycats/handlebars.js/issues/677) - Triple brace statements fail under IE ([@hamzaCM](https://api.github.com/users/hamzaCM))
  23. - [#655](https://github.com/wycats/handlebars.js/issues/655) - Loading Handlebars using bower ([@niki4810](https://api.github.com/users/niki4810))
  24. - [#657](https://github.com/wycats/handlebars.js/pull/657) - Fixes issue where cli compiles non handlebars templates ([@chrishoage](https://api.github.com/users/chrishoage))
  25. - [#681](https://github.com/wycats/handlebars.js/pull/681) - Adds in-browser testing and Saucelabs CI ([@kpdecker](https://api.github.com/users/kpdecker))
  26. - [#661](https://github.com/wycats/handlebars.js/pull/661) - Add @first and @index to #each object iteration ([@cgp](https://api.github.com/users/cgp))
  27. - [#650](https://github.com/wycats/handlebars.js/pull/650) - Handlebars is MIT-licensed ([@thomasboyt](https://api.github.com/users/thomasboyt))
  28. - [#641](https://github.com/wycats/handlebars.js/pull/641) - Document ember testing process ([@kpdecker](https://api.github.com/users/kpdecker))
  29. - [#662](https://github.com/wycats/handlebars.js/issues/662) - handlebars-source 1.1.2 is missing from RubyGems.
  30. - [#656](https://github.com/wycats/handlebars.js/issues/656) - Expose COMPILER_REVISION checks as a hook ([@machty](https://api.github.com/users/machty))
  31. - [#668](https://github.com/wycats/handlebars.js/issues/668) - Consider publishing handlebars-runtime as a separate module on npm ([@dlmanning](https://api.github.com/users/dlmanning))
  32. - [#679](https://github.com/wycats/handlebars.js/issues/679) - Unable to override invokePartial ([@mattbrailsford](https://api.github.com/users/mattbrailsford))
  33. - [#646](https://github.com/wycats/handlebars.js/pull/646) - Fix "\\{{" immediately following "\{{" ([@dmarcotte](https://api.github.com/users/dmarcotte))
  34. - Allow extend to work with non-prototyped objects - eb53f2e
  35. - Add JavascriptCompiler public API tests - 1a751b2
  36. - Add AST test coverage for more complex paths - ddea5be
  37. - Fix handling of boolean escape in MustacheNode - b4968bb
  38. Compatibility notes:
  39. - `@index` and `@first` are now supported for `each` iteration on objects
  40. - `Handlebars.VM.checkRevision` and `Handlebars.JavaScriptCompiler.prototype.compilerInfo` now available to modify the version checking behavior.
  41. - Browserify users may link to the runtime library via `require('handlebars/runtime')`
  42. [Commits](https://github.com/wycats/handlebars.js/compare/v1.1.2...v1.2.0)
  43. ## v1.1.2 - November 5th, 2013
  44. - [#645](https://github.com/wycats/handlebars.js/issues/645) - 1.1.1 fails under IE8 ([@kpdecker](https://api.github.com/users/kpdecker))
  45. - [#644](https://github.com/wycats/handlebars.js/issues/644) - Using precompiled templates (AMD mode) with handlebars.runtime 1.1.1 ([@fddima](https://api.github.com/users/fddima))
  46. - Add simple binary utility tests - 96a45a4
  47. - Fix empty string compilation - eea708a
  48. [Commits](https://github.com/wycats/handlebars.js/compare/v1.1.1...v1.1.2)
  49. ## v1.1.1 - November 4th, 2013
  50. - [#642](https://github.com/wycats/handlebars.js/issues/642) - handlebars 1.1.0 are broken with nodejs
  51. - Fix release notes link - 17ba258
  52. [Commits](https://github.com/wycats/handlebars.js/compare/v1.1.0...v1.1.1)
  53. ## v1.1.0 - November 3rd, 2013
  54. - [#628](https://github.com/wycats/handlebars.js/pull/628) - Convert code to ES6 modules ([@kpdecker](https://api.github.com/users/kpdecker))
  55. - [#336](https://github.com/wycats/handlebars.js/pull/336) - Add whitespace control syntax ([@kpdecker](https://api.github.com/users/kpdecker))
  56. - [#535](https://github.com/wycats/handlebars.js/pull/535) - Fix for probable JIT error under Safari ([@sorentwo](https://api.github.com/users/sorentwo))
  57. - [#483](https://github.com/wycats/handlebars.js/issues/483) - Add first and last @ vars to each helper ([@denniskuczynski](https://api.github.com/users/denniskuczynski))
  58. - [#557](https://github.com/wycats/handlebars.js/pull/557) - `\\{{foo}}` escaping only works in some situations ([@dmarcotte](https://api.github.com/users/dmarcotte))
  59. - [#552](https://github.com/wycats/handlebars.js/pull/552) - Added BOM removal flag. ([@blessenm](https://api.github.com/users/blessenm))
  60. - [#543](https://github.com/wycats/handlebars.js/pull/543) - publish passing master builds to s3 ([@fivetanley](https://api.github.com/users/fivetanley))
  61. - [#608](https://github.com/wycats/handlebars.js/issues/608) - Add `includeZero` flag to `if` conditional
  62. - [#498](https://github.com/wycats/handlebars.js/issues/498) - `Handlebars.compile` fails on empty string although a single blank works fine
  63. - [#599](https://github.com/wycats/handlebars.js/issues/599) - lambda helpers only receive options if used with arguments
  64. - [#592](https://github.com/wycats/handlebars.js/issues/592) - Optimize array and subprogram performance
  65. - [#571](https://github.com/wycats/handlebars.js/issues/571) - uglify upgrade breaks compatibility with older versions of node
  66. - [#587](https://github.com/wycats/handlebars.js/issues/587) - Partial inside partial breaks?
  67. Compatibility notes:
  68. - The project now includes separate artifacts for AMD, CommonJS, and global objects.
  69. - AMD: Users may load the bundled `handlebars.amd.js` or `handlebars.runtime.amd.js` files or load individual modules directly. AMD users should also note that the handlebars object is exposed via the `default` field on the imported object. This [gist](https://gist.github.com/wycats/7417be0dc361a69d5916) provides some discussion of possible compatibility shims.
  70. - CommonJS/Node: Node loading occurs as normal via `require`
  71. - Globals: The `handlebars.js` and `handlebars.runtime.js` files should behave in the same manner as the v1.0.12 / 1.0.0 release.
  72. - Build artifacts have been removed from the repository. [npm][npm], [components/handlebars.js][components], [cdnjs][cdnjs], or the [builds page][builds-page] should now be used as the source of built artifacts.
  73. - Context-stored helpers are now always passed the `options` hash. Previously no-argument helpers did not have this argument.
  74. [Commits](https://github.com/wycats/handlebars.js/compare/v1.0.12...v1.1.0)
  75. ## v1.0.12 / 1.0.0 - May 31 2013
  76. - [#515](https://github.com/wycats/handlebars.js/issues/515) - Add node require extensions support ([@jjclark1982](https://github.com/jjclark1982))
  77. - [#517](https://github.com/wycats/handlebars.js/issues/517) - Fix amd precompiler output with directories ([@blessenm](https://github.com/blessenm))
  78. - [#433](https://github.com/wycats/handlebars.js/issues/433) - Add support for unicode ids
  79. - [#469](https://github.com/wycats/handlebars.js/issues/469) - Add support for `?` in ids
  80. - [#534](https://github.com/wycats/handlebars.js/issues/534) - Protect from object prototype modifications
  81. - [#519](https://github.com/wycats/handlebars.js/issues/519) - Fix partials with . name ([@jamesgorrie](https://github.com/jamesgorrie))
  82. - [#519](https://github.com/wycats/handlebars.js/issues/519) - Allow ID or strings in partial names
  83. - [#437](https://github.com/wycats/handlebars.js/issues/437) - Require matching brace counts in escaped expressions
  84. - Merge passed partials and helpers with global namespace values
  85. - Add support for complex ids in @data references
  86. - Docs updates
  87. Compatibility notes:
  88. - The parser is now stricter on `{{{`, requiring that the end token be `}}}`. Templates that do not
  89. follow this convention should add the additional brace value.
  90. - Code that relies on global the namespace being muted when custom helpers or partials are passed will need to explicitly pass an `undefined` value for any helpers that should not be available.
  91. - The compiler version has changed. Precompiled templates with 1.0.12 or higher must use the 1.0.0 or higher runtime.
  92. [Commits](https://github.com/wycats/handlebars.js/compare/v1.0.11...v1.0.12)
  93. ## v1.0.11 / 1.0.0-rc4 - May 13 2013
  94. - [#458](https://github.com/wycats/handlebars.js/issues/458) - Fix `./foo` syntax ([@jpfiset](https://github.com/jpfiset))
  95. - [#460](https://github.com/wycats/handlebars.js/issues/460) - Allow `:` in unescaped identifers ([@jpfiset](https://github.com/jpfiset))
  96. - [#471](https://github.com/wycats/handlebars.js/issues/471) - Create release notes (These!)
  97. - [#456](https://github.com/wycats/handlebars.js/issues/456) - Allow escaping of `\\`
  98. - [#211](https://github.com/wycats/handlebars.js/issues/211) - Fix exception in `escapeExpression`
  99. - [#375](https://github.com/wycats/handlebars.js/issues/375) - Escape unicode newlines
  100. - [#461](https://github.com/wycats/handlebars.js/issues/461) - Do not fail when compiling `""`
  101. - [#302](https://github.com/wycats/handlebars.js/issues/302) - Fix sanity check in knownHelpersOnly mode
  102. - [#369](https://github.com/wycats/handlebars.js/issues/369) - Allow registration of multiple helpers and partial by passing definition object
  103. - Add bower package declaration ([@DevinClark](https://github.com/DevinClark))
  104. - Add NuSpec package declaration ([@MikeMayer](https://github.com/MikeMayer))
  105. - Handle empty context in `with` ([@thejohnfreeman](https://github.com/thejohnfreeman))
  106. - Support custom template extensions in CLI ([@matteoagosti](https://github.com/matteoagosti))
  107. - Fix Rhino support ([@broady](https://github.com/broady))
  108. - Include contexts in string mode ([@leshill](https://github.com/leshill))
  109. - Return precompiled scripts when compiling to AMD ([@JamesMaroney](https://github.com/JamesMaroney))
  110. - Docs updates ([@iangreenleaf](https://github.com/iangreenleaf), [@gilesbowkett](https://github.com/gilesbowkett), [@utkarsh2012](https://github.com/utkarsh2012))
  111. - Fix `toString` handling under IE and browserify ([@tommydudebreaux](https://github.com/tommydudebreaux))
  112. - Add program metadata
  113. [Commits](https://github.com/wycats/handlebars.js/compare/v1.0.10...v1.0.11)
  114. ## v1.0.10 - Node - Feb 27 2013
  115. - [#428](https://github.com/wycats/handlebars.js/issues/428) - Fix incorrect rendering of nested programs
  116. - Fix exception message ([@tricknotes](https://github.com/tricknotes))
  117. - Added negative number literal support
  118. - Concert library to single IIFE
  119. - Add handlebars-source gemspec ([@machty](https://github.com/machty))
  120. [Commits](https://github.com/wycats/handlebars.js/compare/v1.0.9...v1.0.10)
  121. ## v1.0.9 - Node - Feb 15 2013
  122. - Added `Handlebars.create` API in node module for sandboxed instances ([@tommydudebreaux](https://github.com/tommydudebreaux))
  123. [Commits](https://github.com/wycats/handlebars.js/compare/1.0.0-rc.3...v1.0.9)
  124. ## 1.0.0-rc3 - Browser - Feb 14 2013
  125. - Prevent use of `this` or `..` in illogical place ([@leshill](https://github.com/leshill))
  126. - Allow AST passing for `parse`/`compile`/`precompile` ([@machty](https://github.com/machty))
  127. - Optimize generated output by inlining statements where possible
  128. - Check compiler version when evaluating templates
  129. - Package browser dist in npm package
  130. [Commits](https://github.com/wycats/handlebars.js/compare/v1.0.8...1.0.0-rc.3)
  131. ## Prior Versions
  132. When upgrading from the Handlebars 0.9 series, be aware that the
  133. signature for passing custom helpers or partials to templates has
  134. changed.
  135. Instead of:
  136. ```js
  137. template(context, helpers, partials, [data])
  138. ```
  139. Use:
  140. ```js
  141. template(context, {helpers: helpers, partials: partials, data: data})
  142. ```
  143. [builds-page]: http://builds.handlebarsjs.com.s3.amazonaws.com/index.html
  144. [cdnjs]: http://cdnjs.com/libraries/handlebars.js/
  145. [components]: https://github.com/components/handlebars.js
  146. [npm]: https://npmjs.org/package/handlebars