Skip to content

Commit 6fc3953

Browse files
author
Seth Kinast
committed
Release v2.7.0
1 parent 35bca5e commit 6fc3953

9 files changed

+501
-204
lines changed

CHANGELOG.md

+17-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11
## Change Log
22

3-
### v2.6.2 (2015/03/26 20:27 +00:00)
3+
### v2.7.0 (2015/04/17 23:23 +00:00)
4+
- [#636](https://github.com/linkedin/dustjs/pull/636) Fix failing tests in IE8 (@sethkinast)
5+
- [#633](https://github.com/linkedin/dustjs/pull/633) Drop Node 0.8 (@sethkinast)
6+
- [#635](https://github.com/linkedin/dustjs/pull/635) Resolve dynamic partial names via original context (@sethkinast)
7+
- [#631](https://github.com/linkedin/dustjs/pull/631) Try to avoid creating Stacks with no content when possible (@sethkinast)
8+
- [#613](https://github.com/linkedin/dustjs/pull/613) Refactor template compilation * `dust.render` and `dust.stream` now accept a compiled template function in addition to a template name. * `dust.compile` no longer requires a template name, and will compile an anonymous template without one (so `--name` is no longer required for dustc either) * `dust.load` is removed from the public API * `dust.renderSource` is moved to the compiler, so it's only included in dust-full now (Fixes #412) * `dust.compileFn` is moved to the compiler, so it's only included in dust-full now * add `dust.isTemplateFn` * add `dust.config.cache = true`, set to `false` to disable caching and load templates again every time (Fixes #451) * add `dust.config.cjs = false`, set to `true` to compile templates as CommonJS modules * add `--cjs` flag to `dustc` * Move a bunch of exposed compiler stuff under `dust.compiler` (but leave it exposed until 2.8) (@sethkinast)
9+
- [#624](https://github.com/linkedin/dustjs/pull/624) dustc always creates templates with forward slashes (@sethkinast)
10+
- [#617](https://github.com/linkedin/dustjs/pull/617) Add `chunk.stream` to allow streamables in context (@sethkinast)
11+
- [#610](https://github.com/linkedin/dustjs/pull/610) clean up PEG grammar a little bit (@sethkinast)
12+
- [#622](https://github.com/linkedin/dustjs/pull/622) Fix behavior of `Context#resolve` when resolving a context function that returns a Chunk (@sethkinast)
13+
- [#611](https://github.com/linkedin/dustjs/pull/611) Add grunt-github-changes plugin to automatically update changelog before releases (@sethkinast)
14+
- [#627](https://github.com/linkedin/dustjs/pull/627) Move to Travis CI Container builds (@sethkinast)
15+
- [#623](https://github.com/linkedin/dustjs/pull/623) Update to stable chokidar. (@paulmillr)
16+
- [#592](https://github.com/linkedin/dustjs/pull/592) Remove benchmark and old docs (@sethkinast)
17+
- [#609](https://github.com/linkedin/dustjs/pull/609) Clarify a few examples and add a new explicitly-incremental streaming example (@sethkinast)
18+
19+
### v2.6.2 (2015/03/26 20:28 +00:00)
420
- [#593](https://github.com/linkedin/dustjs/pull/593) npm upgrade (@sethkinast)
521
- [#590](https://github.com/linkedin/dustjs/pull/590) Add deep resolution of Thenables in context (@sethkinast)
622
- [#583](https://github.com/linkedin/dustjs/pull/583) Move lib/server to index (@sethkinast)

Gruntfile.js

+1
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,7 @@ module.exports = function(grunt) {
257257
options: {
258258
owner: "linkedin",
259259
repository: "dustjs",
260+
tagName: "v<%= pkg.version %>",
260261
onlyPulls: true,
261262
useCommitBody: true,
262263
auth: true

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dustjs-linkedin",
3-
"version": "2.6.2",
3+
"version": "2.7.0",
44
"homepage": "https://github.com/linkedin/dustjs",
55
"authors": [
66
"Veena Basavaraj <[email protected]>",

0 commit comments

Comments
 (0)