handlebars-jaylinski 4.7.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (118) hide show
  1. package/LICENSE +19 -0
  2. package/README.markdown +169 -0
  3. package/bin/.eslintrc.js +6 -0
  4. package/bin/handlebars +176 -0
  5. package/dist/amd/handlebars/base.js +106 -0
  6. package/dist/amd/handlebars/compiler/ast.js +31 -0
  7. package/dist/amd/handlebars/compiler/base.js +45 -0
  8. package/dist/amd/handlebars/compiler/code-gen.js +165 -0
  9. package/dist/amd/handlebars/compiler/compiler.js +562 -0
  10. package/dist/amd/handlebars/compiler/helpers.js +228 -0
  11. package/dist/amd/handlebars/compiler/javascript-compiler.js +1150 -0
  12. package/dist/amd/handlebars/compiler/parser.js +737 -0
  13. package/dist/amd/handlebars/compiler/printer.js +186 -0
  14. package/dist/amd/handlebars/compiler/visitor.js +138 -0
  15. package/dist/amd/handlebars/compiler/whitespace-control.js +219 -0
  16. package/dist/amd/handlebars/decorators/inline.js +25 -0
  17. package/dist/amd/handlebars/decorators.js +16 -0
  18. package/dist/amd/handlebars/exception.js +64 -0
  19. package/dist/amd/handlebars/helpers/block-helper-missing.js +35 -0
  20. package/dist/amd/handlebars/helpers/each.js +99 -0
  21. package/dist/amd/handlebars/helpers/helper-missing.js +22 -0
  22. package/dist/amd/handlebars/helpers/if.js +41 -0
  23. package/dist/amd/handlebars/helpers/log.js +24 -0
  24. package/dist/amd/handlebars/helpers/lookup.js +14 -0
  25. package/dist/amd/handlebars/helpers/with.js +38 -0
  26. package/dist/amd/handlebars/helpers.js +44 -0
  27. package/dist/amd/handlebars/internal/create-new-lookup-object.js +22 -0
  28. package/dist/amd/handlebars/internal/proto-access.js +71 -0
  29. package/dist/amd/handlebars/internal/wrapHelper.js +21 -0
  30. package/dist/amd/handlebars/logger.js +44 -0
  31. package/dist/amd/handlebars/no-conflict.js +28 -0
  32. package/dist/amd/handlebars/runtime.js +356 -0
  33. package/dist/amd/handlebars/safe-string.js +15 -0
  34. package/dist/amd/handlebars/utils.js +126 -0
  35. package/dist/amd/handlebars.js +52 -0
  36. package/dist/amd/handlebars.runtime.js +44 -0
  37. package/dist/amd/precompiler.js +314 -0
  38. package/dist/cjs/handlebars/base.js +116 -0
  39. package/dist/cjs/handlebars/compiler/ast.js +31 -0
  40. package/dist/cjs/handlebars/compiler/base.js +57 -0
  41. package/dist/cjs/handlebars/compiler/code-gen.js +168 -0
  42. package/dist/cjs/handlebars/compiler/compiler.js +566 -0
  43. package/dist/cjs/handlebars/compiler/helpers.js +228 -0
  44. package/dist/cjs/handlebars/compiler/javascript-compiler.js +1158 -0
  45. package/dist/cjs/handlebars/compiler/parser.js +737 -0
  46. package/dist/cjs/handlebars/compiler/printer.js +186 -0
  47. package/dist/cjs/handlebars/compiler/visitor.js +140 -0
  48. package/dist/cjs/handlebars/compiler/whitespace-control.js +221 -0
  49. package/dist/cjs/handlebars/decorators/inline.js +29 -0
  50. package/dist/cjs/handlebars/decorators.js +16 -0
  51. package/dist/cjs/handlebars/exception.js +64 -0
  52. package/dist/cjs/handlebars/helpers/block-helper-missing.js +39 -0
  53. package/dist/cjs/handlebars/helpers/each.js +104 -0
  54. package/dist/cjs/handlebars/helpers/helper-missing.js +25 -0
  55. package/dist/cjs/handlebars/helpers/if.js +46 -0
  56. package/dist/cjs/handlebars/helpers/log.js +26 -0
  57. package/dist/cjs/handlebars/helpers/lookup.js +16 -0
  58. package/dist/cjs/handlebars/helpers/with.js +43 -0
  59. package/dist/cjs/handlebars/helpers.js +56 -0
  60. package/dist/cjs/handlebars/internal/create-new-lookup-object.js +22 -0
  61. package/dist/cjs/handlebars/internal/proto-access.js +73 -0
  62. package/dist/cjs/handlebars/internal/wrapHelper.js +19 -0
  63. package/dist/cjs/handlebars/logger.js +47 -0
  64. package/dist/cjs/handlebars/no-conflict.js +30 -0
  65. package/dist/cjs/handlebars/runtime.js +372 -0
  66. package/dist/cjs/handlebars/safe-string.js +15 -0
  67. package/dist/cjs/handlebars/utils.js +124 -0
  68. package/dist/cjs/handlebars.js +66 -0
  69. package/dist/cjs/handlebars.runtime.js +66 -0
  70. package/dist/cjs/precompiler.js +328 -0
  71. package/dist/handlebars.amd.js +4639 -0
  72. package/dist/handlebars.amd.min.js +29 -0
  73. package/dist/handlebars.js +5972 -0
  74. package/dist/handlebars.min.js +29 -0
  75. package/dist/handlebars.runtime.amd.js +1302 -0
  76. package/dist/handlebars.runtime.amd.min.js +27 -0
  77. package/dist/handlebars.runtime.js +2563 -0
  78. package/dist/handlebars.runtime.min.js +27 -0
  79. package/lib/.eslintrc.js +8 -0
  80. package/lib/handlebars/base.js +94 -0
  81. package/lib/handlebars/compiler/ast.js +32 -0
  82. package/lib/handlebars/compiler/base.js +34 -0
  83. package/lib/handlebars/compiler/code-gen.js +171 -0
  84. package/lib/handlebars/compiler/compiler.js +594 -0
  85. package/lib/handlebars/compiler/helpers.js +219 -0
  86. package/lib/handlebars/compiler/javascript-compiler.js +1293 -0
  87. package/lib/handlebars/compiler/parser.js +622 -0
  88. package/lib/handlebars/compiler/printer.js +178 -0
  89. package/lib/handlebars/compiler/visitor.js +136 -0
  90. package/lib/handlebars/compiler/whitespace-control.js +234 -0
  91. package/lib/handlebars/decorators/inline.js +22 -0
  92. package/lib/handlebars/decorators.js +5 -0
  93. package/lib/handlebars/exception.js +68 -0
  94. package/lib/handlebars/helpers/block-helper-missing.js +35 -0
  95. package/lib/handlebars/helpers/each.js +101 -0
  96. package/lib/handlebars/helpers/helper-missing.js +15 -0
  97. package/lib/handlebars/helpers/if.js +33 -0
  98. package/lib/handlebars/helpers/log.js +19 -0
  99. package/lib/handlebars/helpers/lookup.js +9 -0
  100. package/lib/handlebars/helpers/with.js +39 -0
  101. package/lib/handlebars/helpers.js +26 -0
  102. package/lib/handlebars/internal/create-new-lookup-object.js +11 -0
  103. package/lib/handlebars/internal/proto-access.js +70 -0
  104. package/lib/handlebars/internal/wrapHelper.js +13 -0
  105. package/lib/handlebars/logger.js +39 -0
  106. package/lib/handlebars/no-conflict.js +23 -0
  107. package/lib/handlebars/runtime.js +450 -0
  108. package/lib/handlebars/safe-string.js +10 -0
  109. package/lib/handlebars/utils.js +116 -0
  110. package/lib/handlebars.js +46 -0
  111. package/lib/handlebars.runtime.js +37 -0
  112. package/lib/index.js +26 -0
  113. package/lib/precompiler.js +341 -0
  114. package/package.json +135 -0
  115. package/release-notes.md +1101 -0
  116. package/runtime.d.ts +5 -0
  117. package/runtime.js +3 -0
  118. package/types/index.d.ts +422 -0
@@ -0,0 +1,1101 @@
1
+ # Release Notes
2
+
3
+ ## Development
4
+
5
+ [Commits](https://github.com/handlebars-lang/handlebars.js/compare/v4.7.8...master)
6
+
7
+ ## v4.7.8 - July 27th, 2023
8
+
9
+ - Make library compatible with workers (#1894) - 3d3796c
10
+ - Don't rely on Node.js global object (#1776) - 2954e7e
11
+ - Fix compiling of each block params in strict mode (#1855) - 30dbf04
12
+ - Fix rollup warning when importing Handlebars as ESM - 03d387b
13
+ - Use https instead of git for mustache submodule - 88ac068
14
+
15
+ [Commits](https://github.com/handlebars-lang/handlebars.js/compare/v4.7.7...v4.7.8)
16
+
17
+ ## v4.7.7 - February 15th, 2021
18
+
19
+ - fix weird error in integration tests - eb860c0
20
+ - fix: check prototype property access in strict-mode (#1736) - b6d3de7
21
+ - fix: escape property names in compat mode (#1736) - f058970
22
+ - refactor: In spec tests, use expectTemplate over equals and shouldThrow (#1683) - 77825f8
23
+ - chore: start testing on Node.js 12 and 13 - 3789a30
24
+
25
+ (POSSIBLY) BREAKING CHANGES:
26
+
27
+ - the changes from version [4.6.0](https://github.com/handlebars-lang/handlebars.js/blob/master/release-notes.md#v460---january-8th-2020) now also apply
28
+ in when using the compile-option "strict: true". Access to prototype properties is forbidden completely by default, specific properties or methods
29
+ can be allowed via runtime-options. See #1633 for details. If you are using Handlebars as documented, you should not be accessing prototype properties
30
+ from your template anyway, so the changes should not be a problem for you. Only the use of undocumented features can break your build.
31
+
32
+ That is why we only bump the patch version despite mentioning breaking changes.
33
+
34
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.7.6...v4.7.7)
35
+
36
+ ## v4.7.6 - April 3rd, 2020
37
+
38
+ Chore/Housekeeping:
39
+
40
+ - [#1672](https://github.com/wycats/handlebars.js/issues/1672) - Switch cmd parser to latest minimist ([@dougwilson](https://api.github.com/users/dougwilson)
41
+
42
+ Compatibility notes:
43
+
44
+ - Restored Node.js compatibility
45
+
46
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.7.5...v4.7.6)
47
+
48
+ ## v4.7.5 - April 2nd, 2020
49
+
50
+ Chore/Housekeeping:
51
+
52
+ - ~Node.js version support has been changed to v6+~ Reverted in 4.7.6
53
+
54
+ Compatibility notes:
55
+
56
+ - ~Node.js < v6 is no longer supported~ Reverted in 4.7.6
57
+
58
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.7.4...v4.7.5)
59
+
60
+ ## v4.7.4 - April 1st, 2020
61
+
62
+ Chore/Housekeeping:
63
+
64
+ - [#1666](https://github.com/wycats/handlebars.js/issues/1666) - Replaced minimist with yargs for handlebars CLI ([@aorinevo](https://api.github.com/users/aorinevo), [@AviVahl](https://api.github.com/users/AviVahl) & [@fabb](https://api.github.com/users/fabb))
65
+
66
+ Compatibility notes:
67
+
68
+ - No incompatibilities are to be expected
69
+
70
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.7.3...v4.7.4)
71
+
72
+ ## v4.7.3 - February 5th, 2020
73
+
74
+ Chore/Housekeeping:
75
+
76
+ - [#1644](https://github.com/wycats/handlebars.js/issues/1644) - Download links to aws broken on handlebarsjs.com - access denied ([@Tea56](https://api.github.com/users/Tea56))
77
+ - Fix spelling and punctuation in changelog - d78cc73
78
+
79
+ Bugfixes:
80
+
81
+ - Add Type Definition for Handlebars.VERSION, Fixes #1647 - 4de51fe
82
+ - Include Type Definition for runtime.js in Package - a32d05f
83
+
84
+ Compatibility notes:
85
+
86
+ - No incompatibilities are to be expected
87
+
88
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.7.2...v4.7.3)
89
+
90
+ ## v4.7.2 - January 13th, 2020
91
+
92
+ Bugfixes:
93
+
94
+ - fix: don't wrap helpers that are not functions - 9d5aa36, #1639
95
+
96
+ Chore/Build:
97
+
98
+ - chore: execute saucelabs-task only if access-key exists - a4fd391
99
+
100
+ Compatibility notes:
101
+
102
+ - No breaking changes are to be expected
103
+
104
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.7.1...v4.7.2)
105
+
106
+ ## v4.7.1 - January 12th, 2020
107
+
108
+ Bugfixes:
109
+
110
+ - fix: fix log output in case of illegal property access - f152dfc
111
+ - fix: log error for illegal property access only once per property - 3c1e252
112
+
113
+ Compatibility notes:
114
+
115
+ - no incompatibilities are to be expected.
116
+
117
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.7.0...v4.7.1)
118
+
119
+ ## v4.7.0 - January 10th, 2020
120
+
121
+ Features:
122
+
123
+ - feat: default options for controlling proto access - 7af1c12, #1635
124
+ - This makes it possible to disable the prototype access restrictions added in 4.6.0
125
+ - an error is logged in the console, if access to prototype properties is attempted and denied
126
+ and no explicit configuration has taken place.
127
+
128
+ Compatibility notes:
129
+
130
+ - no compatibilities are expected
131
+
132
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.6.0...v4.7.0)
133
+
134
+ ## v4.6.0 - January 8th, 2020
135
+
136
+ Features:
137
+
138
+ - feat: access control to prototype properties via whitelist (#1633)- d03b6ec
139
+
140
+ Bugfixes:
141
+
142
+ - fix(runtime.js): partials compile not caching (#1600) - 23d58e7
143
+
144
+ Chores, docs:
145
+
146
+ - various refactorings and improvements to tests - d7f0dcf, 187d611, d337f40
147
+ - modernize the build-setup
148
+ - use prettier to format and eslint to verify - c40d9f3, 8901c28, e97685e, 1f61f21
149
+ - use nyc instead of istanbul to collect coverage - 164b7ff, 1ebce2b
150
+ - update build code to use modern javascript and make it cleaner - 14b621c, 1ec1737, 3a5b65e, dde108e, 04b1984, 587e7a3
151
+ - restructur build commands - e913dc5,
152
+ - eslint rule changes - ac4655e, dc54952
153
+ - Update (C) year in the LICENSE file - d1fb07b
154
+ - chore: try to fix saucelabs credentials (#1627) -
155
+ - Update readme.md with updated links (#1620) - edcc84f
156
+
157
+ BREAKING CHANGES:
158
+
159
+ - access to prototype properties is forbidden completely by default,
160
+ specific properties or methods can be allowed via runtime-options.
161
+ See #1633 for details.
162
+ If you are using Handlebars as documented, you should not be accessing prototype
163
+ properties from your template anyway, so the changes should not be a problem
164
+ for you. Only the use of undocumented features can break your build.
165
+
166
+ That is why we only bump the minor version despite mentioning breaking changes.
167
+
168
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.5.3...v4.6.0)
169
+
170
+ ## v4.5.3 - November 18th, 2019
171
+
172
+ Bugfixes:
173
+
174
+ - fix: add "no-prototype-builtins" eslint-rule and fix all occurences - f7f05d7
175
+ - fix: add more properties required to be enumerable - 1988878
176
+
177
+ Chores / Build:
178
+
179
+ - fix: use !== 0 instead of != 0 - c02b05f
180
+ - add chai and dirty-chai and sinon, for cleaner test-assertions and spies,
181
+ deprecate old assertion-methods - 93e284e, 886ba86, 0817dad, 93516a0
182
+
183
+ Security:
184
+
185
+ - The properties `__proto__`, `__defineGetter__`, `__defineSetter__` and `__lookupGetter__`
186
+ have been added to the list of "properties that must be enumerable".
187
+ If a property by that name is found and not enumerable on its parent,
188
+ it will silently evaluate to `undefined`. This is done in both the compiled template and the "lookup"-helper.
189
+ This will prevent new Remote-Code-Execution exploits that have been
190
+ published recently.
191
+
192
+ Compatibility notes:
193
+
194
+ - Due to the security-fixes. The semantics of the templates using
195
+ `__proto__`, `__defineGetter__`, `__defineSetter__` and `__lookupGetter__` in the respect that those expression now return
196
+ `undefined` rather than their actual value from the proto.
197
+ - The semantics have not changed in cases where the properties are enumerable, as in:
198
+
199
+ ```js
200
+ {
201
+ __proto__: 'some string';
202
+ }
203
+ ```
204
+
205
+ - The change may be breaking in that respect, but we still only
206
+ increase the patch-version, because the incompatible use-cases
207
+ are not intended, undocumented and far less important than fixing
208
+ Remote-Code-Execution exploits on existing systems.
209
+
210
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.5.2...v4.5.3)
211
+
212
+ ## v4.5.2 - November 13th, 2019
213
+
214
+ # Bugfixes
215
+
216
+ - fix: use String(field) in lookup when checking for "constructor" - d541378
217
+ - test: add fluent API for testing Handlebars - c2ac79c
218
+
219
+ Compatibility notes:
220
+
221
+ - no incompatibility are to be expected
222
+
223
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.5.1...v4.5.2)
224
+
225
+ ## v4.5.1 - October 29th, 2019
226
+
227
+ Bugfixs
228
+
229
+ - fix: move "eslint-plugin-compat" to devDependencies - 5e9d17f (#1589)
230
+
231
+ Compatibility notes:
232
+
233
+ - No compatibility issues are to be expected
234
+
235
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.5.0...v4.5.1)
236
+
237
+ ## v4.5.0 - October 28th, 2019
238
+
239
+ Features / Improvements
240
+
241
+ - Add method Handlebars.parseWithoutProcessing (#1584) - 62ed3c2
242
+ - add guard to if & unless helpers (#1549)
243
+ - show source location for the strict lookup exceptions - feb60f8
244
+
245
+ Bugfixes:
246
+
247
+ - Use objects for hash value tracking - 7fcf9d2
248
+
249
+ Chore:
250
+
251
+ - Resolve deprecation warning message from eslint while running eslint (#1586) - 7052e88
252
+ - chore: add eslint-plugin-compat and eslint-plugin-es5 - 088e618
253
+
254
+ Compatibility notes:
255
+
256
+ - No compatibility issues are to be expected
257
+
258
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.4.5...v4.5.0)
259
+
260
+ ## v4.4.5 - October 20th, 2019
261
+
262
+ Bugfixes:
263
+
264
+ - Contents of raw-blocks must be matched with non-eager regex-matching - 8d5530e, #1579
265
+
266
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.4.4...v4.4.5)
267
+
268
+ ## v4.4.4 - October 20th, 2019
269
+
270
+ Bugfixes:
271
+
272
+ - fix: prevent zero length tokens in raw-blocks (#1577, #1578) - f1752fe
273
+
274
+ Chore:
275
+
276
+ - chore: link to s3 bucket with https, add "npm ci" to build instructions - 0b593bf
277
+
278
+ Compatibility notes:
279
+
280
+ - no compatibility issues are expected
281
+
282
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.4.3...v4.4.4)
283
+
284
+ ## v4.4.3 - October 8th, 2019
285
+
286
+ Bugfixes
287
+
288
+ Typings:
289
+
290
+ - add missing type fields to AST typings and add tests for them - 0440af2
291
+
292
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.4.2...v4.4.3)
293
+
294
+ ## v4.4.2 - October 2nd, 2019
295
+
296
+ - chore: fix grunt-saucelabs dependency - b7eada0
297
+
298
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.4.1...v4.4.2)
299
+
300
+ ## v4.4.1 - October 2nd, 2019
301
+
302
+ - [#1562](https://github.com/wycats/handlebars.js/issues/1562) - Error message for syntax error missing location in 4.2.1+
303
+
304
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.4.0...v4.4.1)
305
+
306
+ ## v4.4.0 - September 29th, 2019
307
+
308
+ - Added support for iterable objects in {{#each}} helper (#1557) - cf7545e
309
+
310
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.3.4...v4.4.0)
311
+
312
+ ## v4.3.4 - September 28th, 2019
313
+
314
+ - fix: harden "propertyIsEnumerable"-check - ff4d827
315
+
316
+ Compatibility notes:
317
+
318
+ - No incompatibilities are known.
319
+
320
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.3.3...v4.3.4)
321
+
322
+ ## v4.3.3 - September 27th, 2019
323
+
324
+ - fix test case for browsers that do not support **defineGetter** - 8742bde
325
+
326
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.3.2...v4.3.3)
327
+
328
+ ## v4.3.2 - September 26th, 2019
329
+
330
+ - Use Object.prototype.propertyIsEnumerable to check for constructors - 213c0bb, #1563
331
+
332
+ Compatibility notes:
333
+
334
+ - There are no breaking changes
335
+
336
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.3.1...v4.3.2)
337
+
338
+ ## v4.3.1 - September 25th, 2019
339
+
340
+ Fixes:
341
+
342
+ - do not break on precompiled templates from Handlebars >=4.0.0 <4.3.0 - 1266838, #1561
343
+ - Ensure allowCallsToHelperMissing runtime option is optional in typings - 93444c5, 64ecb9e, #1560
344
+
345
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.3.0...v4.3.1)
346
+
347
+ ## v4.3.0 - September 24th, 2019
348
+
349
+ Fixes:
350
+
351
+ - Security: Disallow calling "helperMissing" and "blockHelperMissing" directly - 2078c72
352
+ - Disallow calling "helperMissing" and "blockHelperMissing" directly - 2078c72
353
+
354
+ Features:
355
+
356
+ - Add new runtime option `allowCallsToHelperMissing` to allow calling `blockHelperMissing` and `helperMissing`.
357
+
358
+ Breaking changes:
359
+
360
+ Compatibility notes:
361
+
362
+ - Compiler revision increased - 06b7224
363
+
364
+ - This means that template compiled with versions prior to 4.3.0 will not work with runtimes >= 4.3.0
365
+ The increase was done because the "helperMissing" and "blockHelperMissing" are now moved from the helpers
366
+ to the internal "container.hooks" object, so old templates will not be able to call them anymore. We suggest
367
+ that you always recompile your templates with the latest compiler in your build pipelines.
368
+
369
+ - Disallow calling "helperMissing" and "blockHelperMissing" directly - 2078c72
370
+ - Calling "helperMissing" and "blockHelperMissing" directly from a template (like in `{{blockHelperMissing}}` was
371
+ never intended and was part of the exploits that have been revealed early in 2019
372
+ (see https://github.com/wycats/handlebars.js/issues/1495). _It is also part of a new exploit that
373
+ is not captured by the earlier fix._ In order to harden Handlebars against such exploits, calling thos helpers
374
+ is now not possible anymore. _Overriding_ those helpers is still possible.
375
+ - If you really need this behavior, you can set the runtime option `allowCallsToHelperMissing` to `true` and the
376
+ calls will again be possible
377
+
378
+ Both bullet points imly that Handlebars is not 100% percent compatible to 4.2.0, despite the minor version bump.
379
+
380
+ We consider it more important to resolve a major security issue than to maintain 100% compatibility.
381
+
382
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.2.1...v4.3.0)
383
+
384
+ ## v4.2.1 - September 20th, 2019
385
+
386
+ Bugfixes:
387
+
388
+ - The "browser" property in the package.json has been updated to use the common-js builds instead of the minified UMD - c55a7be, #1553
389
+
390
+ Compatibility notes:
391
+
392
+ - No compatibility issues should arise
393
+
394
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.2.0...v4.2.1)
395
+
396
+ ## v4.2.0 - September 3rd, 2019
397
+
398
+ Chore/Test:
399
+
400
+ - Use custom `grunt-saucelab` with current sauce-connect proxy - f119497
401
+ - Add framework for various integration tests - f9cce4d
402
+ - Add integration test for webpack - a57b682
403
+
404
+ Bugfixes:
405
+
406
+ - [#1544](https://github.com/wycats/handlebars.js/issues/1544) - Typescript types: `knownHelpers` doesnt allow for custom helpers ([@NickCis](https://api.github.com/users/NickCis))
407
+ - [#1534](https://github.com/wycats/handlebars.js/pull/1534) - Add typings for "Handlebars.VM.resolvePartial ([@AndrewLeedham](https://api.github.com/users/AndrewLeedham))
408
+
409
+ Features:
410
+
411
+ - [#1540](https://github.com/wycats/handlebars.js/pull/1540) - added "browser"-property to package.json, resolves #1102 ([@ouijan](https://api.github.com/users/ouijan))
412
+
413
+ Compatibility notes:
414
+
415
+ - The new "browser"-property should not break anything, but you can never be sure. The integration test for webpack
416
+ shows that it works, but if it doesn't please open an issue.
417
+
418
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.1.2-0...v4.2.0)
419
+
420
+ ## v4.1.2-0 - August 25th, 2019
421
+
422
+ [#1540](https://github.com/wycats/handlebars.js/pull/1540) - added browser to package.json, resolves #1102 ([@ouijan](https://api.github.com/users/ouijan))
423
+
424
+ Compatibility notes:
425
+
426
+ - We are not sure if imports via webpack are still working, which is why this release is a pre-release
427
+
428
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.1.2...v4.1.2-0)
429
+
430
+ ## v4.1.2 - April 13th, 2019
431
+
432
+ Chore/Test:
433
+
434
+ - [#1515](https://github.com/wycats/handlebars.js/pull/1515) - Port over linting and test for typings ([@zimmi88](https://api.github.com/users/zimmi88))
435
+ - chore: add missing typescript dependency, add package-lock.json - 594f1e3
436
+ - test: remove safari from saucelabs - 871accc
437
+
438
+ Bugfixes:
439
+
440
+ - fix: prevent RCE through the "lookup"-helper - cd38583
441
+
442
+ Compatibility notes:
443
+
444
+ Access to the constructor of a class thought `{{lookup obj "constructor" }}` is now prohibited. This closes
445
+ a leak that only half closed in versions 4.0.13 and 4.1.0, but it is a slight incompatibility.
446
+
447
+ This kind of access is not the intended use of Handlebars and leads to the vulnerability described
448
+ in #1495. We will **not** increase the major version, because such use is not intended or documented,
449
+ and because of the potential impact of the issue (we fear that most people won't use a new major version
450
+ and the issue may not be resolved on many systems).
451
+
452
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.1.1...v4.1.2)
453
+
454
+ ## v4.1.1 - March 16th, 2019
455
+
456
+ Bugfixes:
457
+
458
+ - fix: add "runtime.d.ts" to allow "require('handlebars/runtime')" in TypeScript - 5cedd62
459
+
460
+ Refactorings:
461
+
462
+ - replace "async" with "neo-async" - 048f2ce
463
+ - use "substring"-function instead of "substr" - 445ae12
464
+
465
+ Compatibility notes:
466
+
467
+ - This is a bugfix release. There are no breaking change and no new features.
468
+
469
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.1.0...v4.1.1)
470
+
471
+ ## v4.1.0 - February 7th, 2019
472
+
473
+ New Features
474
+
475
+ - import TypeScript typings - 27ac1ee
476
+
477
+ Security fixes:
478
+
479
+ - disallow access to the constructor in templates to prevent RCE - 42841c4, #1495
480
+
481
+ Housekeeping
482
+
483
+ - chore: fix components/handlebars package.json and auto-update on release - bacd473
484
+ - chore: Use node 10 to build handlebars - 78dd89c
485
+ - chore/doc: Add more release docs - 6b87c21
486
+
487
+ Compatibility notes:
488
+
489
+ Access to class constructors (i.e. `({}).constructor`) is now prohibited to prevent
490
+ Remote Code Execution. This means that following construct will no work anymore:
491
+
492
+ ```
493
+ class SomeClass {
494
+ }
495
+
496
+ SomeClass.staticProperty = 'static'
497
+
498
+ var template = Handlebars.compile('{{constructor.staticProperty}}');
499
+ document.getElementById('output').innerHTML = template(new SomeClass());
500
+ // expected: 'static', but now this is empty.
501
+ ```
502
+
503
+ This kind of access is not the intended use of Handlebars and leads to the vulnerability described in #1495. We will **not** increase the major version, because such use is not intended or documented, and because of the potential impact of the issue (we fear that most people won't use a new major version and the issue may not be resolved on many systems).
504
+
505
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.0.12...v4.1.0)
506
+
507
+ ## v4.0.12 - September 4th, 2018
508
+
509
+ New features:
510
+
511
+ - none
512
+
513
+ Various dependency updates
514
+
515
+ - [#1464](https://github.com/wycats/handlebars.js/pull/1464) - Bump versions of grunt-plugins to 1.x
516
+ - [#1398](https://github.com/wycats/handlebars.js/pull/1398) - Chore: updated various dev dependencies
517
+ - upgrade uglify-js - d3d3942
518
+ - Update grunt-eslint to 20.1.0 - 7729aa9
519
+ - Update dependencies "async" to 2.5.0 and "source-map" to 0.6.1 (73d5637)
520
+
521
+ Bugfixes:
522
+
523
+ - [components/handlebars.js#24](https://github.com/components/handlebars.js#24) Add package.json to components shim
524
+ - Updated `source-map`-package should work better with `rollup`[#1463](https://github.com/wycats/handlebars.js/issues/1463)
525
+
526
+ Removed obsolete code:
527
+
528
+ - unnecessary check - 0ddff8b
529
+ - Use `files` field - 69c6ca5
530
+ - Update jsfiddle to 4.0.11 - 8947dd0
531
+
532
+ Compatibility notes:
533
+
534
+ - No compatibility issues are to be expected
535
+
536
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.0.11...v4.0.12)
537
+
538
+ ## v4.0.11 - October 17th, 2017
539
+
540
+ - [#1391](https://github.com/wycats/handlebars.js/issues/1391) - `uglify-js` is unconditionally imported, but only listed as optional dependency ([@Turbo87](https://github.com/Turbo87))
541
+ - [#1233](https://github.com/wycats/handlebars.js/issues/1233) - Unable to build under windows - error at test:bin task ([@blikblum](https://github.com/blikblum))
542
+ - Update (C) year in the LICENSE file - 21386b6
543
+
544
+ Compatibility notes:
545
+
546
+ - This is a bugfix release. There are no breaking change and no new features.
547
+
548
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.0.10...v4.0.11)
549
+
550
+ ## v4.0.10 - May 21st, 2017
551
+
552
+ - Fix regression in 4.0.9: Replace "Object.assign" (not support in IE) by "util/extend" - 0e953d1
553
+
554
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.0.9...v4.0.10)
555
+
556
+ ## v4.0.9 - May 21st, 2017
557
+
558
+ - [#1327](https://github.com/wycats/handlebars.js/issues/1327) Handlebars.compile() does not modify "options" anymore
559
+ - pending [#1331](https://github.com/wycats/handlebars.js/issues/1331) Attempts to build Handlebars in a Windows environment
560
+ - Fix build in windows - cc554a5
561
+ - Ensure LF line-edings in handlebars-template fixtures (\*.hbs) - ed879a6
562
+ - Run integration test with `node handlebars -a ...` on Windows - 2e21e2b
563
+ - Ensure LF line-edings in lexer-files (\*.l) - bdfdbea
564
+ - Force LF line-endings for spec/artifacts - b50ef03
565
+ - Use istanbul/lib/cli.js instead of node_modules/.bin/istanbul - 6e6269f
566
+ - TravisCI: Publish valid semver tags independently of the branch - 7378f85
567
+
568
+ Compatibility notes:
569
+
570
+ - No compatibility issues are expected.
571
+
572
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.0.8...v4.0.9)
573
+
574
+ ## v4.0.8 - May 2nd, 2017
575
+
576
+ - [#1341](https://github.com/wycats/handlebars.js/issues/1341) [#1342](https://github.com/wycats/handlebars.js/issues/1342) Allow partial-blocks to be executed without "options" ([@nknapp](https://github.com/nknapp)) - a00c598
577
+
578
+ Compatibility notes:
579
+
580
+ - No breaking changes
581
+
582
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.0.7...v4.0.8)
583
+
584
+ ## v4.0.7 - April 29th, 2017
585
+
586
+ - [#1319](https://github.com/wycats/handlebars.js/issues/1319): Fix context-stack when calling block-helpers on null values ([@nknapp](https://github.com/nknapp)) - c8f4b57
587
+ - [#1315](https://github.com/wycats/handlebars.js/pull/1315) Parser: Change suffix to use ES6 default module export ([@Turbo87](https://github.com/Turbo87))- b617375
588
+ - [#1290](https://github.com/wycats/handlebars.js/pull/1290) [#1252](https://github.com/wycats/handlebars.js/issue/1290) Add more tests for partial-blocks and inline partials ([@nknapp](https://github.com/nknapp)) - 63a8e0c
589
+ - [#1252](https://github.com/wycats/handlebars.js/issue/1290) Using @partial-block twice in a template not possible ([@nknapp](https://github.com/nknapp)) - 5a164d0
590
+ - [#1310](https://github.com/wycats/handlebars.js/pull/1310) Avoid duplicate "sourceMappingURL=" lines. ([@joonas-lahtinen](https://github.com/joonas-lahtinen)) - 01b0f65
591
+ - [#1275](https://github.com/wycats/handlebars.js/pull/1275) require('sys') is deprecated, using 'util' instead ([@travnels](https://github.com/travnels)) - 406f2ee
592
+ - [#1285](https://github.com/wycats/handlebars.js/pull/1285) [#1284](https://github.com/wycats/handlebars.js/issues/1284) Make "column"-property of Errors enumerable ([@nknapp](https://github.com/nknapp)) - a023cb4
593
+ - [#1285](https://github.com/wycats/handlebars.js/pull/1285) Testcase to verify that compile-errors have a column-property ([@nknapp](https://github.com/nknapp)) - c7dc353
594
+
595
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.0.6...v4.0.7)
596
+
597
+ ## v4.0.6 - November 12th, 2016
598
+
599
+ - [#1243](https://github.com/wycats/handlebars.js/pull/1243) - Walk up data frames for nested @partial-block ([@lawnsea](https://github.com/lawnsea))
600
+ - [#1210](https://github.com/wycats/handlebars.js/pull/1210) - Add a new lightweight package based on handlebars in the README ([@kabirbaidhya](https://github.com/kabirbaidhya))
601
+ - [#1187](https://github.com/wycats/handlebars.js/pull/1187) - Ensure that existing blockParams and depths are respected on dupe programs ([@charleso](https://github.com/charleso))
602
+ - [#1191](https://github.com/wycats/handlebars.js/pull/1191) - Added cory ([@leo](https://github.com/leo))
603
+ - [#1177](https://github.com/wycats/handlebars.js/pull/1177) - Preserve License info in Closure Compiler ([@gennadiylitvinyuk](https://github.com/gennadiylitvinyuk))
604
+ - [#1171](https://github.com/wycats/handlebars.js/pull/1171) - Contributing doc fix: failing thats -> failing tests ([@paulfalgout](https://github.com/paulfalgout))
605
+ - [#1166](https://github.com/wycats/handlebars.js/pull/1166) - Update license date ([@timwangdev](https://github.com/timwangdev))
606
+ - Update jsfiddle to point to latest - 959ee55 (originally dfc7554 by [@kpdecker](https://github.com/kpdecker))
607
+ - [#1163](https://github.com/wycats/handlebars.js/pull/1163) - Fix typos on decorators-api.md. ([@adjohnson916](https://github.com/adjohnson916))
608
+ - Drop extra Error params - 8c19874 (originally 63fdb92 by [@kpdecker](https://github.com/kpdecker))
609
+ - [#1153](https://github.com/wycats/handlebars.js/pull/1153) - Add documentation for running tests to contributing.md ([@ryanmurakami](https://github.com/ryanmurakami))
610
+ - Avoid error in older browsers in test - 400916c (originally a6121ca by [@kpdecker](https://github.com/kpdecker))
611
+ - Update target browser test versions - fee2334 (originally 871c32a by [@kpdecker](https://github.com/kpdecker))
612
+ - Exclude coverage check in exception conditional - 32d6363 (originally 326734b by [@kpdecker](https://github.com/kpdecker))
613
+ - Fix throw when creating exception object in Safari - 20c965c (originally 2ea6119 by [@kpdecker](https://github.com/kpdecker))
614
+ - Update build for modern node versions - 6c9f98c (originally 8289c0b by [@kpdecker](https://github.com/kpdecker))
615
+ - [#1135](https://github.com/wycats/handlebars.js/issues/1135) - Relax depth check for context push - c393c81 (originally 25458fd by [@kpdecker](https://github.com/kpdecker))
616
+
617
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.0.5...v4.0.6)
618
+
619
+ ## v4.0.5 - November 19th, 2015
620
+
621
+ - [#1132](https://github.com/wycats/handlebars.js/pull/1132) - Update uglify-js to avoid vulnerability ([@plynchnlm](https://github.com/plynchnlm))
622
+ - [#1129](https://github.com/wycats/handlebars.js/issues/1129) - Minified lib returns an empty string ([@bricss](https://github.com/bricss))
623
+ - Return current handlebars instance from noConflict - 685cf92
624
+ - Add webpack to dev dependency to support npm 3 - 7a6c228
625
+ - Further relax uglify dependency - 0a3b3c2
626
+ - Include tests for minimized artifacts - c21118d
627
+ - Fix lint errors under latest eslint - 9f59de9
628
+ - Add print-script helper script - 98a6717
629
+
630
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.0.4...v4.0.5)
631
+
632
+ ## v4.0.4 - October 29th, 2015
633
+
634
+ - [#1121](https://github.com/wycats/handlebars.js/pull/1121) - Include partial name in 'undefined partial' exception message ([@shinypb](https://github.com/shinypb))
635
+ - [#1125](https://github.com/wycats/handlebars.js/pull/1125) - Add promised-handlebars to "in-the-wild"-list ([@nknapp](https://github.com/nknapp))
636
+
637
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.0.3...v4.0.4)
638
+
639
+ ## v4.0.3 - September 23rd, 2015
640
+
641
+ - [#1099](https://github.com/wycats/handlebars.js/issues/1099) - @partial-block is overridden ([@btmorex](https://github.com/btmorex))
642
+ - [#1093](https://github.com/wycats/handlebars.js/issues/1093) - #each skips iteration on undefined values ([@florianpilz](https://github.com/florianpilz))
643
+ - [#1092](https://github.com/wycats/handlebars.js/issues/1092) - Square braces in key name ([@distantnative](https://github.com/distantnative))
644
+ - [#1091](https://github.com/wycats/handlebars.js/pull/1091) - fix typo in release notes ([@nikolas](https://github.com/nikolas))
645
+ - [#1090](https://github.com/wycats/handlebars.js/pull/1090) - grammar fixes in 4.0.0 release notes ([@nikolas](https://github.com/nikolas))
646
+
647
+ Compatibility notes:
648
+
649
+ - `each` iteration with `undefined` values has been restored to the 3.0 behaviors. Helper calls with undefined context values will now execute against an arbitrary empty object to avoid executing against global object in non-strict mode.
650
+ - `]` can now be included in `[]` wrapped identifiers by escaping with `\`. Any `[]` identifiers that include `\` will now have to properly escape these values.
651
+
652
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.0.2...v4.0.3)
653
+
654
+ ## v4.0.2 - September 4th, 2015
655
+
656
+ - [#1089](https://github.com/wycats/handlebars.js/issues/1089) - "Failover content" not working in multiple levels of inline partials ([@michaellopez](https://github.com/michaellopez))
657
+
658
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.0.1...v4.0.2)
659
+
660
+ ## v4.0.1 - September 2nd, 2015
661
+
662
+ - Fix failure when using decorators in partials - 05b82a2
663
+
664
+ [Commits](https://github.com/wycats/handlebars.js/compare/v4.0.0...v4.0.1)
665
+
666
+ ## v4.0.0 - September 1st, 2015
667
+
668
+ - [#1082](https://github.com/wycats/handlebars.js/pull/1082) - Decorators and Inline Partials ([@kpdecker](https://github.com/kpdecker))
669
+ - [#1076](https://github.com/wycats/handlebars.js/pull/1076) - Implement partial blocks ([@kpdecker](https://github.com/kpdecker))
670
+ - [#1087](https://github.com/wycats/handlebars.js/pull/1087) - Fix #each when last object entry has empty key ([@denniskuczynski](https://github.com/denniskuczynski))
671
+ - [#1084](https://github.com/wycats/handlebars.js/pull/1084) - Bump uglify version to fix vulnerability ([@John-Steidley](https://github.com/John-Steidley))
672
+ - [#1068](https://github.com/wycats/handlebars.js/pull/1068) - Fix typo ([@0xack13](https://github.com/0xack13))
673
+ - [#1060](https://github.com/wycats/handlebars.js/pull/1060) - #1056 Fixed grammar for nested raw blocks ([@ericbn](https://github.com/ericbn))
674
+ - [#1052](https://github.com/wycats/handlebars.js/pull/1052) - Updated year in License ([@maqnouch](https://github.com/maqnouch))
675
+ - [#1037](https://github.com/wycats/handlebars.js/pull/1037) - Fix minor typos in README ([@tomxtobin](https://github.com/tomxtobin))
676
+ - [#1032](https://github.com/wycats/handlebars.js/issues/1032) - Is it possible to render a partial without the parent scope? ([@aputinski](https://github.com/aputinski))
677
+ - [#1019](https://github.com/wycats/handlebars.js/pull/1019) - Fixes typo in tests ([@aymerick](https://github.com/aymerick))
678
+ - [#1016](https://github.com/wycats/handlebars.js/issues/1016) - Version mis-match ([@mayankdedhia](https://github.com/mayankdedhia))
679
+ - [#1023](https://github.com/wycats/handlebars.js/issues/1023) - is it possible for nested custom helpers to communicate between each other?
680
+ - [#893](https://github.com/wycats/handlebars.js/issues/893) - [Proposal] Section blocks.
681
+ - [#792](https://github.com/wycats/handlebars.js/issues/792) - feature request: inline partial definitions
682
+ - [#583](https://github.com/wycats/handlebars.js/issues/583) - Parent path continues to drill down depth with multiple conditionals
683
+ - [#404](https://github.com/wycats/handlebars.js/issues/404) - Add named child helpers that can be referenced by block helpers
684
+ - Escape = in HTML content - [83b8e84](https://github.com/wycats/handlebars.js/commit/83b8e84)
685
+ - Drop AST constructors in favor of JSON - [95d84ba](https://github.com/wycats/handlebars.js/commit/95d84ba)
686
+ - Pass container rather than exec as context - [9a2d1d6](https://github.com/wycats/handlebars.js/commit/9a2d1d6)
687
+ - Add ignoreStandalone compiler option - [ea3a5a1](https://github.com/wycats/handlebars.js/commit/ea3a5a1)
688
+ - Ignore empty when iterating on sparse arrays - [06d515a](https://github.com/wycats/handlebars.js/commit/06d515a)
689
+ - Add support for string and stdin precompilation - [0de8dac](https://github.com/wycats/handlebars.js/commit/0de8dac)
690
+ - Simplify object assignment generation logic - [77e6bfc](https://github.com/wycats/handlebars.js/commit/77e6bfc)
691
+ - Bulletproof AST.helpers.helperExpression - [93b0760](https://github.com/wycats/handlebars.js/commit/93b0760)
692
+ - Always return string responses - [8e868ab](https://github.com/wycats/handlebars.js/commit/8e868ab)
693
+ - Pass undefined fields to helpers in strict mode - [5d4b8da](https://github.com/wycats/handlebars.js/commit/5d4b8da)
694
+ - Avoid depth creation when context remains the same - [279e038](https://github.com/wycats/handlebars.js/commit/279e038)
695
+ - Improve logging API - [9a49d35](https://github.com/wycats/handlebars.js/commit/9a49d35)
696
+ - Fix with operator in no @data mode - [231a8d7](https://github.com/wycats/handlebars.js/commit/231a8d7)
697
+ - Allow empty key name in each iteration - [1bb640b](https://github.com/wycats/handlebars.js/commit/1bb640b)
698
+ - Add with block parameter support - [2a85106](https://github.com/wycats/handlebars.js/commit/2a85106)
699
+ - Fix escaping of non-javascript identifiers - [410141c](https://github.com/wycats/handlebars.js/commit/410141c)
700
+ - Fix location information for programs - [93faffa](https://github.com/wycats/handlebars.js/commit/93faffa)
701
+
702
+ Compatibility notes:
703
+
704
+ - Depthed paths are now conditionally pushed on to the stack. If the helper uses the same context, then a new stack is not created. This leads to behavior that better matches expectations for helpers like `if` that do not seem to alter the context. Any instances of `../` in templates will need to be checked for the correct behavior under 4.0.0. In general templates will either reduce the number of `../` instances or leave them as is. See [#1028](https://github.com/wycats/handlebars.js/issues/1028).
705
+ - The `=` character is now HTML escaped. This closes a potential exploit case when using unquoted attributes, i.e. `<div foo={{bar}}>`. In general it's recommended that attributes always be quoted when their values are generated from a mustache to avoid any potential exploit surfaces.
706
+ - AST constructors have been dropped in favor of plain old javascript objects
707
+ - The runtime version has been increased. Precompiled templates will need to use runtime of at least 4.0.0.
708
+
709
+ [Commits](https://github.com/wycats/handlebars.js/compare/v3.0.3...v4.0.0)
710
+
711
+ ## v3.0.3 - April 28th, 2015
712
+
713
+ - [#1004](https://github.com/wycats/handlebars.js/issues/1004) - Latest version breaks with RequireJS (global is undefined) ([@boskee](https://github.com/boskee))
714
+
715
+ [Commits](https://github.com/wycats/handlebars.js/compare/v3.0.2...v3.0.3)
716
+
717
+ ## v3.0.2 - April 20th, 2015
718
+
719
+ - [#998](https://github.com/wycats/handlebars.js/pull/998) - Add full support for es6 ([@kpdecker](https://github.com/kpdecker))
720
+ - [#994](https://github.com/wycats/handlebars.js/issues/994) - Access Handlebars.Visitor in browser ([@tamlyn](https://github.com/tamlyn))
721
+ - [#990](https://github.com/wycats/handlebars.js/issues/990) - Allow passing null/undefined literals subexpressions ([@blimmer](https://github.com/blimmer))
722
+ - [#989](https://github.com/wycats/handlebars.js/issues/989) - Source-map error with requirejs ([@SteppeEagle](https://github.com/SteppeEagle))
723
+ - [#967](https://github.com/wycats/handlebars.js/issues/967) - can't access "this" property ([@75lb](https://github.com/75lb))
724
+ - Use captureStackTrace for error handler - a009a97
725
+ - Ignore branches tested without coverage monitoring - 37a664b
726
+
727
+ [Commits](https://github.com/wycats/handlebars.js/compare/v3.0.1...v3.0.2)
728
+
729
+ ## v3.0.1 - March 24th, 2015
730
+
731
+ - [#984](https://github.com/wycats/handlebars.js/pull/984) - Adding documentation for passing arguments into partials ([@johneke](https://github.com/johneke))
732
+ - [#973](https://github.com/wycats/handlebars.js/issues/973) - version 3 is slower than version 2 ([@elover](https://github.com/elover))
733
+ - [#966](https://github.com/wycats/handlebars.js/issues/966) - "handlebars --version" does not work with v3.0.0 ([@abloomston](https://github.com/abloomston))
734
+ - [#964](https://github.com/wycats/handlebars.js/pull/964) - default is a reserved word ([@grassick](https://github.com/grassick))
735
+ - [#962](https://github.com/wycats/handlebars.js/pull/962) - Add dashbars' link on README. ([@pismute](https://github.com/pismute))
736
+
737
+ [Commits](https://github.com/wycats/handlebars.js/compare/v3.0.0...v3.0.1)
738
+
739
+ ## v3.0.0 - February 10th, 2015
740
+
741
+ - [#941](https://github.com/wycats/handlebars.js/pull/941) - Add support for dynamic partial names ([@kpdecker](https://github.com/kpdecker))
742
+ - [#940](https://github.com/wycats/handlebars.js/pull/940) - Add missing reserved words so compiler knows to use array syntax: ([@mattflaschen](https://github.com/mattflaschen))
743
+ - [#938](https://github.com/wycats/handlebars.js/pull/938) - Fix example using #with helper ([@diwo](https://github.com/diwo))
744
+ - [#930](https://github.com/wycats/handlebars.js/pull/930) - Add parent tracking and mutation to AST visitors ([@kpdecker](https://github.com/kpdecker))
745
+ - [#926](https://github.com/wycats/handlebars.js/issues/926) - Depthed lookups fail when program duplicator runs ([@kpdecker](https://github.com/kpdecker))
746
+ - [#918](https://github.com/wycats/handlebars.js/pull/918) - Add instructions for 'spec/mustache' to CONTRIBUTING.md, fix a few typos ([@oneeman](https://github.com/oneeman))
747
+ - [#915](https://github.com/wycats/handlebars.js/pull/915) - Ast update ([@kpdecker](https://github.com/kpdecker))
748
+ - [#910](https://github.com/wycats/handlebars.js/issues/910) - Different behavior of {{@last}} when {{#each}} in {{#each}} ([@zordius](https://github.com/zordius))
749
+ - [#907](https://github.com/wycats/handlebars.js/issues/907) - Implement named helper variable references ([@kpdecker](https://github.com/kpdecker))
750
+ - [#906](https://github.com/wycats/handlebars.js/pull/906) - Add parser support for block params ([@mmun](https://github.com/mmun))
751
+ - [#903](https://github.com/wycats/handlebars.js/issues/903) - Only provide aliases for multiple use calls ([@kpdecker](https://github.com/kpdecker))
752
+ - [#902](https://github.com/wycats/handlebars.js/pull/902) - Generate Source Maps ([@kpdecker](https://github.com/kpdecker))
753
+ - [#901](https://github.com/wycats/handlebars.js/issues/901) - Still escapes with noEscape enabled on isolated Handlebars environment ([@zedknight](https://github.com/zedknight))
754
+ - [#896](https://github.com/wycats/handlebars.js/pull/896) - Simplify BlockNode by removing intermediate MustacheNode ([@mmun](https://github.com/mmun))
755
+ - [#892](https://github.com/wycats/handlebars.js/pull/892) - Implement parser for else chaining of helpers ([@kpdecker](https://github.com/kpdecker))
756
+ - [#889](https://github.com/wycats/handlebars.js/issues/889) - Consider extensible parser API ([@kpdecker](https://github.com/kpdecker))
757
+ - [#887](https://github.com/wycats/handlebars.js/issues/887) - Handlebars.noConflict() option? ([@bradvogel](https://github.com/bradvogel))
758
+ - [#886](https://github.com/wycats/handlebars.js/issues/886) - Add SafeString to context (or use duck-typing) ([@dominicbarnes](https://github.com/dominicbarnes))
759
+ - [#870](https://github.com/wycats/handlebars.js/pull/870) - Registering undefined partial throws exception. ([@max-b](https://github.com/max-b))
760
+ - [#866](https://github.com/wycats/handlebars.js/issues/866) - comments don't respect whitespace control ([@75lb](https://github.com/75lb))
761
+ - [#863](https://github.com/wycats/handlebars.js/pull/863) - + jsDelivr CDN info ([@tomByrer](https://github.com/tomByrer))
762
+ - [#858](https://github.com/wycats/handlebars.js/issues/858) - Disable new default auto-indent at included partials ([@majodev](https://github.com/majodev))
763
+ - [#856](https://github.com/wycats/handlebars.js/pull/856) - jspm compatibility ([@MajorBreakfast](https://github.com/MajorBreakfast))
764
+ - [#805](https://github.com/wycats/handlebars.js/issues/805) - Request: "strict" lookups ([@nzakas](https://github.com/nzakas))
765
+
766
+ - Export the default object for handlebars/runtime - 5594416
767
+ - Lookup partials when undefined - 617dd57
768
+
769
+ Compatibility notes:
770
+
771
+ - Runtime breaking changes. Must match 3.x runtime and precompiler.
772
+ - The AST has been upgraded to a public API.
773
+ - There are a number of changes to this, but the format is now documented in docs/compiler-api.md
774
+ - The Visitor API has been expanded to support mutation and provide a base implementation
775
+ - The `JavaScriptCompiler` APIs have been formalized and documented. As part of the sourcemap handling these should be updated to return arrays for concatenation.
776
+ - `JavaScriptCompiler.namespace` has been removed as it was unused.
777
+ - `SafeString` is now duck typed on `toHTML`
778
+
779
+ New Features:
780
+
781
+ - noConflict
782
+ - Source Maps
783
+ - Block Params
784
+ - Strict Mode
785
+ - @last and other each changes
786
+ - Chained else blocks
787
+ - @data methods can now have helper parameters passed to them
788
+ - Dynamic partials
789
+
790
+ [Commits](https://github.com/wycats/handlebars.js/compare/v2.0.0...v3.0.0)
791
+
792
+ ## v2.0.0 - September 1st, 2014
793
+
794
+ - Update jsfiddle to 2.0.0-beta.1 - 0670f65
795
+ - Add contrib note regarding handlebarsjs.com docs - 4d17e3c
796
+ - Play nice with gemspec version numbers - 64d5481
797
+
798
+ [Commits](https://github.com/wycats/handlebars.js/compare/v2.0.0-beta.1...v2.0.0)
799
+
800
+ ## v2.0.0-beta.1 - August 26th, 2014
801
+
802
+ - [#787](https://github.com/wycats/handlebars.js/pull/787) - Remove whitespace surrounding standalone statements ([@kpdecker](https://github.com/kpdecker))
803
+ - [#827](https://github.com/wycats/handlebars.js/issues/827) - Render false literal as “false” ([@scoot557](https://github.com/scoot557))
804
+ - [#767](https://github.com/wycats/handlebars.js/issues/767) - Subexpressions bug with hash and context ([@evensoul](https://github.com/evensoul))
805
+ - Changes to 0/undefined handling
806
+ - [#731](https://github.com/wycats/handlebars.js/pull/731) - Strange behavior for {{#foo}} {{bar}} {{/foo}} when foo is 0 ([@kpdecker](https://github.com/kpdecker))
807
+ - [#820](https://github.com/wycats/handlebars.js/issues/820) - strange behavior for {{foo.bar}} when foo is 0 or null or false ([@zordius](https://github.com/zordius))
808
+ - [#837](https://github.com/wycats/handlebars.js/issues/837) - Strange input for custom helper ( foo.bar == false when foo is undefined ) ([@zordius](https://github.com/zordius))
809
+ - [#819](https://github.com/wycats/handlebars.js/pull/819) - Implement recursive field lookup ([@kpdecker](https://github.com/kpdecker))
810
+ - [#764](https://github.com/wycats/handlebars.js/issues/764) - This reference not working for helpers ([@kpdecker](https://github.com/kpdecker))
811
+ - [#773](https://github.com/wycats/handlebars.js/issues/773) - Implicit parameters in {{#each}} introduces a peculiarity in helpers calling convention ([@Bertrand](https://github.com/Bertrand))
812
+ - [#783](https://github.com/wycats/handlebars.js/issues/783) - helperMissing and consistency for different expression types ([@ErisDS](https://github.com/ErisDS))
813
+ - [#795](https://github.com/wycats/handlebars.js/pull/795) - Turn the precompile script into a wrapper around a module. ([@jwietelmann](https://github.com/jwietelmann))
814
+ - [#823](https://github.com/wycats/handlebars.js/pull/823) - Support inverse sections on the with helper ([@dan-manges](https://github.com/dan-manges))
815
+ - [#834](https://github.com/wycats/handlebars.js/pull/834) - Refactor blocks, programs and inverses ([@mmun](https://github.com/mmun))
816
+ - [#852](https://github.com/wycats/handlebars.js/issues/852) - {{foo~}} space control behavior is different from older version ([@zordius](https://github.com/zordius))
817
+ - [#835](https://github.com/wycats/handlebars.js/issues/835) - Templates overwritten if file is loaded twice
818
+
819
+ - Expose escapeExpression on the root object - 980c38c
820
+ - Remove nested function eval in blockHelperMissing - 6f22ec1
821
+ - Fix compiler program de-duping - 9e3f824
822
+
823
+ Compatibility notes:
824
+
825
+ - The default build now outputs a generic UMD wrapper. This should be transparent change but may cause issues in some environments.
826
+ - Runtime compatibility breaks in both directions. Ensure that both compiler and client are upgraded to 2.0.0-beta.1 or higher at the same time.
827
+ - `programWithDepth` has been removed an instead an array of context values is passed to fields needing depth lookups.
828
+ - `false` values are now printed to output rather than silently dropped
829
+ - Lines containing only block statements and whitespace are now removed. This matches the Mustache spec but may cause issues with code that expects whitespace to exist but would not otherwise.
830
+ - Partials that are standalone will now indent their rendered content
831
+ - `AST.ProgramNode`'s signature has changed.
832
+ - Numerious methods/features removed from pseudo-API classes
833
+ - `JavaScriptCompiler.register`
834
+ - `JavaScriptCompiler.replaceStack` no longer supports non-inline replace
835
+ - `Compiler.disassemble`
836
+ - `DECLARE` opcode
837
+ - `strip` opcode
838
+ - `lookup` opcode
839
+ - Content nodes may have their `string` values mutated over time. `original` field provides the unmodified value.
840
+ - Removed unused `Handlebars.registerHelper` `inverse` parameter
841
+ - `each` helper requires iterator parameter
842
+
843
+ [Commits](https://github.com/wycats/handlebars.js/compare/v2.0.0-alpha.4...v2.0.0-beta.1)
844
+
845
+ ## v2.0.0-alpha.4 - May 19th, 2014
846
+
847
+ - Expose setup wrappers for compiled templates - 3638874
848
+
849
+ [Commits](https://github.com/wycats/handlebars.js/compare/v2.0.0-alpha.3...v2.0.0-alpha.4)
850
+
851
+ ## v2.0.0-alpha.3 - May 19th, 2014
852
+
853
+ - [#797](https://github.com/wycats/handlebars.js/pull/797) - Pass full helper ID to helperMissing when options are provided ([@tomdale](https://github.com/tomdale))
854
+ - [#793](https://github.com/wycats/handlebars.js/pull/793) - Ensure isHelper is coerced to a boolean ([@mmun](https://github.com/mmun))
855
+ - Refactor template init logic - 085e5e1
856
+
857
+ [Commits](https://github.com/wycats/handlebars.js/compare/v2.0.0-alpha.2...v2.0.0-alpha.3)
858
+
859
+ ## v2.0.0-alpha.2 - March 6th, 2014
860
+
861
+ - [#756](https://github.com/wycats/handlebars.js/pull/756) - fix bug in IE<=8 (no Array::map), closes #751 ([@jenseng](https://github.com/jenseng))
862
+ - [#749](https://github.com/wycats/handlebars.js/pull/749) - properly handle multiple subexpressions in the same hash, fixes #748 ([@jenseng](https://github.com/jenseng))
863
+ - [#743](https://github.com/wycats/handlebars.js/issues/743) - subexpression confusion/problem? ([@waynedpj](https://github.com/waynedpj))
864
+ - [#746](https://github.com/wycats/handlebars.js/issues/746) - [CLI] support `handlebars --version` ([@apfelbox](https://github.com/apfelbox))
865
+ - [#747](https://github.com/wycats/handlebars.js/pull/747) - updated grunt-saucelabs, failing tests revealed ([@Jonahss](https://github.com/Jonahss))
866
+ - Make JSON a requirement for the compiler. - 058c0fb
867
+ - Temporarily kill the AWS publish CI step - 8347ee2
868
+
869
+ Compatibility notes:
870
+
871
+ - A JSON polyfill is required to run the compiler under IE8 and below. It's recommended that the precompiler be used in lieu of running the compiler on these legacy environments.
872
+
873
+ [Commits](https://github.com/wycats/handlebars.js/compare/v2.0.0-alpha.1...v2.0.0-alpha.2)
874
+
875
+ ## v2.0.0-alpha.1 - February 10th, 2014
876
+
877
+ - [#182](https://github.com/wycats/handlebars.js/pull/182) - Allow passing hash parameters to partials ([@kpdecker](https://github.com/kpdecker))
878
+ - [#392](https://github.com/wycats/handlebars.js/pull/392) - Access to root context in partials and helpers ([@kpdecker](https://github.com/kpdecker))
879
+ - [#472](https://github.com/wycats/handlebars.js/issues/472) - Helpers cannot have decimal parameters ([@kayleg](https://github.com/kayleg))
880
+ - [#569](https://github.com/wycats/handlebars.js/pull/569) - Unable to lookup array values using @index ([@kpdecker](https://github.com/kpdecker))
881
+ - [#491](https://github.com/wycats/handlebars.js/pull/491) - For nested helpers: get the @ variables of the outer helper from the inner one ([@kpdecker](https://github.com/kpdecker))
882
+ - [#669](https://github.com/wycats/handlebars.js/issues/669) - Ability to unregister a helper ([@dbachrach](https://github.com/dbachrach))
883
+ - [#730](https://github.com/wycats/handlebars.js/pull/730) - Raw block helpers ([@kpdecker](https://github.com/kpdecker))
884
+ - [#634](https://github.com/wycats/handlebars.js/pull/634) - It would be great to have the helper name passed to `blockHelperMissing` ([@kpdecker](https://github.com/kpdecker))
885
+ - [#729](https://github.com/wycats/handlebars.js/pull/729) - Convert template spec to object literal ([@kpdecker](https://github.com/kpdecker))
886
+
887
+ - [#658](https://github.com/wycats/handlebars.js/issues/658) - Depthed helpers do not work after an upgrade from 1.0.0 ([@xibxor](https://github.com/xibxor))
888
+ - [#671](https://github.com/wycats/handlebars.js/issues/671) - Crashes on no-parameter {{#each}} ([@stepancheg](https://github.com/stepancheg))
889
+ - [#689](https://github.com/wycats/handlebars.js/issues/689) - broken template precompilation ([@AAS](https://github.com/AAS))
890
+ - [#698](https://github.com/wycats/handlebars.js/pull/698) - Fix parser generation under windows ([@osiris43](https://github.com/osiris43))
891
+ - [#699](https://github.com/wycats/handlebars.js/issues/699) - @DATA not compiles to invalid JS in stringParams mode ([@kpdecker](https://github.com/kpdecker))
892
+ - [#705](https://github.com/wycats/handlebars.js/issues/705) - 1.3.0 can not be wrapped in an IIFE ([@craigteegarden](https://github.com/craigteegarden))
893
+ - [#706](https://github.com/wycats/handlebars.js/pull/706) - README: Use with helper instead of relying on blockHelperMissing ([@scottgonzalez](https://github.com/scottgonzalez))
894
+
895
+ - [#700](https://github.com/wycats/handlebars.js/pull/700) - Remove redundant conditions ([@blakeembrey](https://github.com/blakeembrey))
896
+ - [#704](https://github.com/wycats/handlebars.js/pull/704) - JavaScript Compiler Cleanup ([@blakeembrey](https://github.com/blakeembrey))
897
+
898
+ Compatibility notes:
899
+
900
+ - `helperMissing` helper no longer has the indexed name argument. Helper name is now available via `options.name`.
901
+ - Precompiler output has changed, which breaks compatibility with prior versions of the runtime and precompiled output.
902
+ - `JavaScriptCompiler.compilerInfo` now returns generic objects rather than javascript source.
903
+ - AST changes
904
+ - INTEGER -> NUMBER
905
+ - Additional PartialNode hash parameter
906
+ - New RawBlockNode type
907
+ - Data frames now have a `_parent` field. This is internal but is enumerable for performance/compatibility reasons.
908
+
909
+ [Commits](https://github.com/wycats/handlebars.js/compare/v1.3.0...v2.0.0-alpha.1)
910
+
911
+ ## v1.3.0 - January 1st, 2014
912
+
913
+ - [#690](https://github.com/wycats/handlebars.js/pull/690) - Added support for subexpressions ([@machty](https://github.com/machty))
914
+ - [#696](https://github.com/wycats/handlebars.js/pull/696) - Fix for reserved keyword "default" ([@nateirwin](https://github.com/nateirwin))
915
+ - [#692](https://github.com/wycats/handlebars.js/pull/692) - add line numbers to nodes when parsing ([@fivetanley](https://github.com/fivetanley))
916
+ - [#695](https://github.com/wycats/handlebars.js/pull/695) - Pull options out from param setup to allow easier extension ([@blakeembrey](https://github.com/blakeembrey))
917
+ - [#694](https://github.com/wycats/handlebars.js/pull/694) - Make the environment reusable ([@blakeembrey](https://github.com/blakeembrey))
918
+ - [#636](https://github.com/wycats/handlebars.js/issues/636) - Print line and column of errors ([@sgronblo](https://github.com/sgronblo))
919
+ - Use literal for data lookup - c1a93d3
920
+ - Add stack handling sanity checks - cd885bf
921
+ - Fix stack id "leak" on replaceStack - ddfe457
922
+ - Fix incorrect stack pop when replacing literals - f4d337d
923
+
924
+ [Commits](https://github.com/wycats/handlebars.js/compare/v1.2.1...v1.3.0)
925
+
926
+ ## v1.2.1 - December 26th, 2013
927
+
928
+ - [#684](https://github.com/wycats/handlebars.js/pull/684) - Allow any number of trailing characters for valid JavaScript variable ([@blakeembrey](https://github.com/blakeembrey))
929
+ - [#686](https://github.com/wycats/handlebars.js/pull/686) - Falsy AMD module names in version 1.2.0 ([@kpdecker](https://github.com/kpdecker))
930
+
931
+ [Commits](https://github.com/wycats/handlebars.js/compare/v1.2.0...v1.2.1)
932
+
933
+ ## v1.2.0 - December 23rd, 2013
934
+
935
+ - [#675](https://github.com/wycats/handlebars.js/issues/675) - Cannot compile empty template for partial ([@erwinw](https://github.com/erwinw))
936
+ - [#677](https://github.com/wycats/handlebars.js/issues/677) - Triple brace statements fail under IE ([@hamzaCM](https://github.com/hamzaCM))
937
+ - [#655](https://github.com/wycats/handlebars.js/issues/655) - Loading Handlebars using bower ([@niki4810](https://github.com/niki4810))
938
+ - [#657](https://github.com/wycats/handlebars.js/pull/657) - Fixes issue where cli compiles non handlebars templates ([@chrishoage](https://github.com/chrishoage))
939
+ - [#681](https://github.com/wycats/handlebars.js/pull/681) - Adds in-browser testing and Saucelabs CI ([@kpdecker](https://github.com/kpdecker))
940
+ - [#661](https://github.com/wycats/handlebars.js/pull/661) - Add @first and @index to #each object iteration ([@cgp](https://github.com/cgp))
941
+ - [#650](https://github.com/wycats/handlebars.js/pull/650) - Handlebars is MIT-licensed ([@thomasboyt](https://github.com/thomasboyt))
942
+ - [#641](https://github.com/wycats/handlebars.js/pull/641) - Document ember testing process ([@kpdecker](https://github.com/kpdecker))
943
+ - [#662](https://github.com/wycats/handlebars.js/issues/662) - handlebars-source 1.1.2 is missing from RubyGems.
944
+ - [#656](https://github.com/wycats/handlebars.js/issues/656) - Expose COMPILER_REVISION checks as a hook ([@machty](https://github.com/machty))
945
+ - [#668](https://github.com/wycats/handlebars.js/issues/668) - Consider publishing handlebars-runtime as a separate module on npm ([@dlmanning](https://github.com/dlmanning))
946
+ - [#679](https://github.com/wycats/handlebars.js/issues/679) - Unable to override invokePartial ([@mattbrailsford](https://github.com/mattbrailsford))
947
+ - [#646](https://github.com/wycats/handlebars.js/pull/646) - Fix "\\{{" immediately following "\{{" ([@dmarcotte](https://github.com/dmarcotte))
948
+ - Allow extend to work with non-prototyped objects - eb53f2e
949
+ - Add JavascriptCompiler public API tests - 1a751b2
950
+ - Add AST test coverage for more complex paths - ddea5be
951
+ - Fix handling of boolean escape in MustacheNode - b4968bb
952
+
953
+ Compatibility notes:
954
+
955
+ - `@index` and `@first` are now supported for `each` iteration on objects
956
+ - `Handlebars.VM.checkRevision` and `Handlebars.JavaScriptCompiler.prototype.compilerInfo` now available to modify the version checking behavior.
957
+ - Browserify users may link to the runtime library via `require('handlebars/runtime')`
958
+
959
+ [Commits](https://github.com/wycats/handlebars.js/compare/v1.1.2...v1.2.0)
960
+
961
+ ## v1.1.2 - November 5th, 2013
962
+
963
+ - [#645](https://github.com/wycats/handlebars.js/issues/645) - 1.1.1 fails under IE8 ([@kpdecker](https://github.com/kpdecker))
964
+ - [#644](https://github.com/wycats/handlebars.js/issues/644) - Using precompiled templates (AMD mode) with handlebars.runtime 1.1.1 ([@fddima](https://github.com/fddima))
965
+
966
+ - Add simple binary utility tests - 96a45a4
967
+ - Fix empty string compilation - eea708a
968
+
969
+ [Commits](https://github.com/wycats/handlebars.js/compare/v1.1.1...v1.1.2)
970
+
971
+ ## v1.1.1 - November 4th, 2013
972
+
973
+ - [#642](https://github.com/wycats/handlebars.js/issues/642) - handlebars 1.1.0 are broken with nodejs
974
+
975
+ - Fix release notes link - 17ba258
976
+
977
+ [Commits](https://github.com/wycats/handlebars.js/compare/v1.1.0...v1.1.1)
978
+
979
+ ## v1.1.0 - November 3rd, 2013
980
+
981
+ - [#628](https://github.com/wycats/handlebars.js/pull/628) - Convert code to ES6 modules ([@kpdecker](https://github.com/kpdecker))
982
+ - [#336](https://github.com/wycats/handlebars.js/pull/336) - Add whitespace control syntax ([@kpdecker](https://github.com/kpdecker))
983
+ - [#535](https://github.com/wycats/handlebars.js/pull/535) - Fix for probable JIT error under Safari ([@sorentwo](https://github.com/sorentwo))
984
+ - [#483](https://github.com/wycats/handlebars.js/issues/483) - Add first and last @ vars to each helper ([@denniskuczynski](https://github.com/denniskuczynski))
985
+ - [#557](https://github.com/wycats/handlebars.js/pull/557) - `\\{{foo}}` escaping only works in some situations ([@dmarcotte](https://github.com/dmarcotte))
986
+ - [#552](https://github.com/wycats/handlebars.js/pull/552) - Added BOM removal flag. ([@blessenm](https://github.com/blessenm))
987
+ - [#543](https://github.com/wycats/handlebars.js/pull/543) - publish passing master builds to s3 ([@fivetanley](https://github.com/fivetanley))
988
+
989
+ - [#608](https://github.com/wycats/handlebars.js/issues/608) - Add `includeZero` flag to `if` conditional
990
+ - [#498](https://github.com/wycats/handlebars.js/issues/498) - `Handlebars.compile` fails on empty string although a single blank works fine
991
+ - [#599](https://github.com/wycats/handlebars.js/issues/599) - lambda helpers only receive options if used with arguments
992
+ - [#592](https://github.com/wycats/handlebars.js/issues/592) - Optimize array and subprogram performance
993
+ - [#571](https://github.com/wycats/handlebars.js/issues/571) - uglify upgrade breaks compatibility with older versions of node
994
+ - [#587](https://github.com/wycats/handlebars.js/issues/587) - Partial inside partial breaks?
995
+
996
+ Compatibility notes:
997
+
998
+ - The project now includes separate artifacts for AMD, CommonJS, and global objects.
999
+ - 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.
1000
+ - CommonJS/Node: Node loading occurs as normal via `require`
1001
+ - Globals: The `handlebars.js` and `handlebars.runtime.js` files should behave in the same manner as the v1.0.12 / 1.0.0 release.
1002
+ - 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.
1003
+ - Context-stored helpers are now always passed the `options` hash. Previously no-argument helpers did not have this argument.
1004
+
1005
+ [Commits](https://github.com/wycats/handlebars.js/compare/v1.0.12...v1.1.0)
1006
+
1007
+ ## v1.0.12 / 1.0.0 - May 31 2013
1008
+
1009
+ - [#515](https://github.com/wycats/handlebars.js/issues/515) - Add node require extensions support ([@jjclark1982](https://github.com/jjclark1982))
1010
+ - [#517](https://github.com/wycats/handlebars.js/issues/517) - Fix amd precompiler output with directories ([@blessenm](https://github.com/blessenm))
1011
+ - [#433](https://github.com/wycats/handlebars.js/issues/433) - Add support for unicode ids
1012
+ - [#469](https://github.com/wycats/handlebars.js/issues/469) - Add support for `?` in ids
1013
+ - [#534](https://github.com/wycats/handlebars.js/issues/534) - Protect from object prototype modifications
1014
+ - [#519](https://github.com/wycats/handlebars.js/issues/519) - Fix partials with . name ([@jamesgorrie](https://github.com/jamesgorrie))
1015
+ - [#519](https://github.com/wycats/handlebars.js/issues/519) - Allow ID or strings in partial names
1016
+ - [#437](https://github.com/wycats/handlebars.js/issues/437) - Require matching brace counts in escaped expressions
1017
+ - Merge passed partials and helpers with global namespace values
1018
+ - Add support for complex ids in @data references
1019
+ - Docs updates
1020
+
1021
+ Compatibility notes:
1022
+
1023
+ - The parser is now stricter on `{{{`, requiring that the end token be `}}}`. Templates that do not
1024
+ follow this convention should add the additional brace value.
1025
+ - 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.
1026
+ - The compiler version has changed. Precompiled templates with 1.0.12 or higher must use the 1.0.0 or higher runtime.
1027
+
1028
+ [Commits](https://github.com/wycats/handlebars.js/compare/v1.0.11...v1.0.12)
1029
+
1030
+ ## v1.0.11 / 1.0.0-rc4 - May 13 2013
1031
+
1032
+ - [#458](https://github.com/wycats/handlebars.js/issues/458) - Fix `./foo` syntax ([@jpfiset](https://github.com/jpfiset))
1033
+ - [#460](https://github.com/wycats/handlebars.js/issues/460) - Allow `:` in unescaped identifiers ([@jpfiset](https://github.com/jpfiset))
1034
+ - [#471](https://github.com/wycats/handlebars.js/issues/471) - Create release notes (These!)
1035
+ - [#456](https://github.com/wycats/handlebars.js/issues/456) - Allow escaping of `\\`
1036
+ - [#211](https://github.com/wycats/handlebars.js/issues/211) - Fix exception in `escapeExpression`
1037
+ - [#375](https://github.com/wycats/handlebars.js/issues/375) - Escape unicode newlines
1038
+ - [#461](https://github.com/wycats/handlebars.js/issues/461) - Do not fail when compiling `""`
1039
+ - [#302](https://github.com/wycats/handlebars.js/issues/302) - Fix sanity check in knownHelpersOnly mode
1040
+ - [#369](https://github.com/wycats/handlebars.js/issues/369) - Allow registration of multiple helpers and partial by passing definition object
1041
+ - Add bower package declaration ([@DevinClark](https://github.com/DevinClark))
1042
+ - Add NuSpec package declaration ([@MikeMayer](https://github.com/MikeMayer))
1043
+ - Handle empty context in `with` ([@thejohnfreeman](https://github.com/thejohnfreeman))
1044
+ - Support custom template extensions in CLI ([@matteoagosti](https://github.com/matteoagosti))
1045
+ - Fix Rhino support ([@broady](https://github.com/broady))
1046
+ - Include contexts in string mode ([@leshill](https://github.com/leshill))
1047
+ - Return precompiled scripts when compiling to AMD ([@JamesMaroney](https://github.com/JamesMaroney))
1048
+ - Docs updates ([@iangreenleaf](https://github.com/iangreenleaf), [@gilesbowkett](https://github.com/gilesbowkett), [@utkarsh2012](https://github.com/utkarsh2012))
1049
+ - Fix `toString` handling under IE and browserify ([@tommydudebreaux](https://github.com/tommydudebreaux))
1050
+ - Add program metadata
1051
+
1052
+ [Commits](https://github.com/wycats/handlebars.js/compare/v1.0.10...v1.0.11)
1053
+
1054
+ ## v1.0.10 - Node - Feb 27 2013
1055
+
1056
+ - [#428](https://github.com/wycats/handlebars.js/issues/428) - Fix incorrect rendering of nested programs
1057
+ - Fix exception message ([@tricknotes](https://github.com/tricknotes))
1058
+ - Added negative number literal support
1059
+ - Concert library to single IIFE
1060
+ - Add handlebars-source gemspec ([@machty](https://github.com/machty))
1061
+
1062
+ [Commits](https://github.com/wycats/handlebars.js/compare/v1.0.9...v1.0.10)
1063
+
1064
+ ## v1.0.9 - Node - Feb 15 2013
1065
+
1066
+ - Added `Handlebars.create` API in node module for sandboxed instances ([@tommydudebreaux](https://github.com/tommydudebreaux))
1067
+
1068
+ [Commits](https://github.com/wycats/handlebars.js/compare/1.0.0-rc.3...v1.0.9)
1069
+
1070
+ ## 1.0.0-rc3 - Browser - Feb 14 2013
1071
+
1072
+ - Prevent use of `this` or `..` in illogical place ([@leshill](https://github.com/leshill))
1073
+ - Allow AST passing for `parse`/`compile`/`precompile` ([@machty](https://github.com/machty))
1074
+ - Optimize generated output by inlining statements where possible
1075
+ - Check compiler version when evaluating templates
1076
+ - Package browser dist in npm package
1077
+
1078
+ [Commits](https://github.com/wycats/handlebars.js/compare/v1.0.8...1.0.0-rc.3)
1079
+
1080
+ ## Prior Versions
1081
+
1082
+ When upgrading from the Handlebars 0.9 series, be aware that the
1083
+ signature for passing custom helpers or partials to templates has
1084
+ changed.
1085
+
1086
+ Instead of:
1087
+
1088
+ ```js
1089
+ template(context, helpers, partials, [data]);
1090
+ ```
1091
+
1092
+ Use:
1093
+
1094
+ ```js
1095
+ template(context, { helpers: helpers, partials: partials, data: data });
1096
+ ```
1097
+
1098
+ [builds-page]: http://builds.handlebarsjs.com.s3.amazonaws.com/index.html
1099
+ [cdnjs]: http://cdnjs.com/libraries/handlebars.js/
1100
+ [components]: https://github.com/components/handlebars.js
1101
+ [npm]: https://npmjs.org/package/handlebars