]> git.proxmox.com Git - rustc.git/blobdiff - src/vendor/handlebars/CHANGELOG.md
New upstream version 1.27.1+dfsg1
[rustc.git] / src / vendor / handlebars / CHANGELOG.md
index 3619fde582473858b6999ec6d0ba4e118d83b984..7915b55221883939879d1045feb2eac2d6886eaa 100644 (file)
@@ -1,5 +1,90 @@
 # Change Log
 
+## [0.32.0] (https://github.com/sunng87/handlebars-rust/compare/0.30.1...0.32.0) - 2018-02-16
+
+* [Added] Strict mode that raises `RenderError` on accessing
+  non-existed field or array index.
+
+## [0.31.0](https://github.com/sunng87/handlebars-rust/compare/0.30.1...0.31.0) - 2018-02-09
+* [Changed] Fixed handlebars comment support, added html comment output
+* [Changed] Removed some wasted string clones
+
+## [0.30.1](https://github.com/sunng87/handlebars-rust/compare/0.30.0...0.30.1) - 2018-01-31
+* [Changed] Added `Debug` for public types
+
+## [0.30.0](https://github.com/sunng87/handlebars-rust/compare/0.30.0-beta.5...0.30.0) - 2018-01-21
+* [Changed] Use pest 1.0
+
+## [0.30.0-beta.5](https://github.com/sunng87/handlebars-rust/compare/0.30.0-beta.4...0.30.0-beta.5) - 2018-01-19
+
+* [Changed] Improve `TemplateError` display. Now includes a segment of
+  template string.
+* [Changed] Updated `lazy_static` to 1.0
+* [Changed] Renamed some render functions names.
+
+## [0.30.0-beta.4](https://github.com/sunng87/handlebars-rust/compare/0.30.0-beta.3...0.30.0-beta.4) - 2017-11-20
+* [Changed] Added `Sync` to the nested error of `RenderError`
+
+## [0.30.0-beta.3](https://github.com/sunng87/handlebars-rust/compare/0.30.0-beta.2...0.30.0-beta.3) - 2017-11-16
+* [Changed] Fixed issue `template_render` methods doesn't respect `source_map` setting
+
+## [0.30.0-beta.2](https://github.com/sunng87/handlebars-rust/compare/0.30.0-beta.1...0.30.0-beta.2) - 2017-10-07
+* [Changed] Fixed parsing keywords like `as`
+
+## [0.30.0-beta.1](https://github.com/sunng87/handlebars-rust/compare/0.29.1...0.30.0-beta.1) - 2017-10-03
+
+* [Changed] Upgrade pest to 1.0
+* [Changed] Fixed template parsing issue when parameter starts with "as"
+* [Changed] Added new HelperDef function to return JSON value
+* [Changed] Added support for @root
+
+## [0.29.1](https://github.com/sunng87/handlebars-rust/compare/0.29.0...0.29.1) - 2017-09-01
+
+* [Changed] Remove `debug!` logging from render to avoid conflict when
+  using handlebars as logging backend
+
+## [0.29.0](https://github.com/sunng87/handlebars-rust/compare/0.28.3...0.29.0) - 2017-08-23
+
+* [Changed] Align JSON path with original JavaScript implementation
+
+## [0.28.3](https://github.com/sunng87/handlebars-rust/compare/0.28.2...0.28.3) - 2017-08-02
+
+* [Changed] fixed support for escape, again
+
+## [0.28.2](https://github.com/sunng87/handlebars-rust/compare/0.28.1...0.28.2) - 2017-08-01
+
+* [Changed] Fixed support for escape `\\{{`. [#170](https://github.com/sunng87/handlebars-rust/issues/170)
+
+## [0.28.1](https://github.com/sunng87/handlebars-rust/compare/0.28.0...0.28.1) - 2017-07-16
+
+* [Changed] Mark `RenderError` with `Send` trait
+
+## [0.28.0](https://github.com/sunng87/handlebars-rust/compare/0.27.0...0.28.0) - 2017-07-15
+
+* [Changed] Fixed performance issue discussed in [#166](https://github.com/sunng87/handlebars-rust/issues/166)
+* [Added] Added error cause `RenderError`
+
+## [0.27.0](https://github.com/sunng87/handlebars-rust/compare/0.26.2...0.27.0) - 2017-06-03
+
+* [Changed] `partial_legacy` is dropped
+* [Changed] `context.navigate` now returns a `Result<&Json,RenderError>`. Error is raised when
+  given path cannot be not parsed.
+* [Changed] removed `context::extend` because it's like to ruin your context outside the helper.
+* [Changed] `RenderContext` now owns `Context`, you can host a new Context for particular block
+  helper.
+* [Changed] Added some convenience functions to `RenderContext`. However, `RenderContext` may
+  still change in future release.
+
+## [0.26.1](https://github.com/sunng87/handlebars-rust/compare/0.25.3...0.26.1) - 2017-04-23
+
+* [Changed] Updated to Serde 1.0
+* [Changed] Dropped rustc_serialize, serde is now the default type system
+
+## [0.25.3](https://github.com/sunng87/handlebars-rust/compare/0.25.2...0.25.3) - 2017-04-19
+
+* [Changed] Fixed path up [#147](https://github.com/sunng87/handlebars-rust/issues/147)
+* [Changed] Fixed duplicated template inclusion [#146](https://github.com/sunng87/handlebars-rust/issues/146)
+
 ## [0.25.2](https://github.com/sunng87/handlebars-rust/compare/0.25.1...0.25.2) - 2017-03-22
 
 * [Changed] Fixed bug when including two partials with same name [#143](https://github.com/sunng87/handlebars-rust/issues/143)