UNPKG

120 kBMarkdownView Raw
1# rollup changelog
2
3## 1.16.6
4*2019-07-04*
5
6### Bug Fixes
7* Do not pass undefined to resolveDynamicImport for unresolvable template literals (#2984)
8
9### Pull Requests
10* [#2984](https://github.com/rollup/rollup/pull/2984): Always forward AST nodes for unresolvable dynamic imports (@lukastaegert)
11
12## 1.16.5
13*2019-07-04*
14
15### Bug Fixes
16* onwarn should still be called when --silent is used (#2982)
17* Properly clean up watchers for files that are deleted between builds (#2982)
18
19### Pull Requests
20* [#2981](https://github.com/rollup/rollup/pull/2981): Do not skip onwarn handler when --silent is used (@lukastaegert)
21* [#2982](https://github.com/rollup/rollup/pull/2982): Make tests run on Node 12, fix watcher cleanup issue (@lukastaegert)
22
23## 1.16.4
24*2019-07-02*
25
26### Bug Fixes
27* Do not show a TypeScript error when providing a location as number to this.warn and this.error (#2974)
28* Use the correct TypeScript type for Sourcemap.version (#2976)
29
30### Pull Requests
31* [#2965](https://github.com/rollup/rollup/pull/2965): Use async readFile in getRollupDefaultPlugin (@kaksmet)
32* [#2974](https://github.com/rollup/rollup/pull/2974): Align TS types, docs and implementation for this.warn and this.error (@lukastaegert)
33* [#2976](https://github.com/rollup/rollup/pull/2976): Fix sourcemap type and update dependencies (@lukastaegert)
34
35## 1.16.3
36*2019-06-29*
37
38### Bug Fixes
39* Prevent name conflicts with unused function parameters (#2972)
40
41### Pull Requests
42* [#2972](https://github.com/rollup/rollup/pull/2972): Deconflict unused parameters (@lukastaegert)
43
44## 1.16.2
45*2019-06-22*
46
47### Bug Fixes
48* Properly wrap dynamic imports in Promises that can be caught when generating CJS output (#2958)
49
50### Pull Requests
51* [#2958](https://github.com/rollup/rollup/pull/2958): Make sure errors from dynamic imports can be caught (@lukastaegert)
52
53## 1.16.1
54*2019-06-21*
55
56### Pull Requests
57* [#2956](https://github.com/rollup/rollup/pull/2956): Add missing CLI docs for strictDeprecations (@lukastaegert)
58
59## 1.16.0
60*2019-06-21*
61
62### Features
63* Add strictDeprecations option to throw when currently or upcoming deprecated features are used (#2945)
64* Keep annotations and comments when simplifying logical and conditional expressions (#2955)
65
66### Bug Fixes
67* Generate proper namespace objects when dynamically importing external dependencies for AMD or CJS formats (#2954)
68* Fix dynamically imported variables not being resolved correctly when importing from an entry chunk with only a default export (#2954)
69* Do not reexport default when reexporting a namespace (#2954)
70
71### Pull Requests
72* [#2945](https://github.com/rollup/rollup/pull/2945): Add option to handle use of features marked for deprecation as errors (@lukastaegert)
73* [#2954](https://github.com/rollup/rollup/pull/2954): Improve dynamic import interop (@lukastaegert)
74* [#2955](https://github.com/rollup/rollup/pull/2955): Keep annotations and comments when simplifying logical and conditional expressions (@lukastaegert)
75
76## 1.15.6
77*2019-06-16*
78
79### Bug Fixes
80* No longer use an alternate screen in watch mode to allow scrolling (#2942)
81* Prioritize non-external imports over external ones when resolving conflicting namespace re-exports (#2893)
82
83### Pull Requests
84* [#2893](https://github.com/rollup/rollup/pull/2893): Improve handling of conflicting namespace exports (@aleclarson)
85* [#2942](https://github.com/rollup/rollup/pull/2942): Get rid of alternate screen and simplify screen clearing (@lukastaegert)
86
87## 1.15.5
88*2019-06-14*
89
90### Bug Fixes
91* Do not include any comments for completely tree-shaken files so that `renderedLength === 0` is a reliable check (#2940)
92* Do not cause type errors when returning `null` from `resolveId` (#2941)
93
94### Pull Requests
95* [#2940](https://github.com/rollup/rollup/pull/2940): Completely omit files that do not have any included statements (@lukastaegert)
96* [#2941](https://github.com/rollup/rollup/pull/2941): Explicitly allow null as return value for various hooks (@lukastaegert)
97
98## 1.15.4
99*2019-06-14*
100
101### Bug Fixes
102* Improve how asset and chunk URLs are resolved for UMD, IIFE and CJS output (#2937)
103
104### Pull Requests
105* [#2937](https://github.com/rollup/rollup/pull/2937): Fix URL resolution to work when the current script contains query parameters (@lukastaegert)
106
107## 1.15.3
108*2019-06-13*
109
110### Bug Fixes
111* Always reemit assets and chunks from cached transform hooks (#2936)
112
113### Pull Requests
114* [#2936](https://github.com/rollup/rollup/pull/2936): Fix repeated re-emission of files emitted from a transform hook (@lukastaegert)
115
116## 1.15.2
117*2019-06-13*
118
119### Bug Fixes
120* Make sure chunks emitted from transform hooks are also emitted for incremental builds in watch mode (#2933)
121
122### Pull Requests
123* [#2933](https://github.com/rollup/rollup/pull/2933): Reemit chunks emitted from transform hooks (@lukastaegert)
124
125## 1.15.1
126*2019-06-11*
127
128### Bug Fixes
129* Do not fail when reexporting variables in dynamic entry points from other chunks (#2928)
130
131### Pull Requests
132* [#2928](https://github.com/rollup/rollup/pull/2928): Handle reexports from dynamic entries across chunk (@lukastaegert)
133
134## 1.15.0
135*2019-06-11*
136
137### Features
138* Tone down try-catch deoptimization while maintaining polyfill support (#2918)
139
140### Bug Fixes
141* Handle feature detection with "typeof" for regular expressios (#2916)
142* Deoptimize `'' + variable'` type coercion as expression statement for feature detection (#2917)
143* Always observe argument side-effects when tree-shaking (#2924)
144
145### Pull Requests
146* [#2916](https://github.com/rollup/rollup/pull/2916): Deoptimize typeof for regular expression literals to better support es6-shim (@lukastaegert)
147* [#2917](https://github.com/rollup/rollup/pull/2917): Support implicit type coercion errors in es5-shim (@lukastaegert)
148* [#2918](https://github.com/rollup/rollup/pull/2918): Deoptimize try-catch less radically (@lukastaegert)
149* [#2924](https://github.com/rollup/rollup/pull/2924): Do not tree-shake arguments with side-effects (@lukastaegert)
150
151## 1.14.6
152*2019-06-10*
153
154### Bug Fixes
155* Fix an issue where call arguments were not included in try statements (#2914)
156
157### Pull Requests
158* [#2914](https://github.com/rollup/rollup/pull/2914): Properly include try statements for each pass when deoptimization is deactivated (@lukastaegert)
159
160## 1.14.5
161*2019-06-09*
162
163### Bug Fixes
164* Keep external ids unmodified when using the object form of resolveId (#2907)
165* Cache dynamic import resolutions when using Rollup cache (#2908)
166* Keep all necessary parentheses when tree-shaking call arguments (#2911)
167
168### Pull Requests
169* [#2906](https://github.com/rollup/rollup/pull/2906): Update dependencies (@lukastaegert)
170* [#2907](https://github.com/rollup/rollup/pull/2907): Do not renormalize external ids when using the object form (@lukastaegert)
171* [#2908](https://github.com/rollup/rollup/pull/2908): Cache dynamic ids if possible (@lukastaegert)
172* [#2911](https://github.com/rollup/rollup/pull/2911): Fix treeshaken parameters around parentheses (@manucorporat)
173
174## 1.14.4
175*2019-06-07*
176
177### Bug Fixes
178* Do not omit external re-exports for `moduleSideEffects: false` (#2905)
179
180### Pull Requests
181* [#2905](https://github.com/rollup/rollup/pull/2905): Make sure external re-exports are included for moduleSideEffects: false (@lukastaegert)
182
183## 1.14.3
184*2019-06-06*
185
186### Bug Fixes
187* Generate correct external imports when importing from a directory that would be above the root of the current working directory (#2902)
188
189### Pull Requests
190* [#2902](https://github.com/rollup/rollup/pull/2902): Use browser relative path algorithm for chunks (@lukastaegert)
191
192## 1.14.2
193*2019-06-05*
194
195### Bug Fixes
196* Prevent unnecessary inclusion of external namespace import in certain situations (#2900)
197
198### Pull Requests
199* [#2900](https://github.com/rollup/rollup/pull/2900): Handle early bind for member expressions (@lukastaegert)
200
201## 1.14.1
202*2019-06-05*
203
204### Bug Fixes
205* Fix an issue where try-statements were not included properly when a variable declared inside the statement was accessed outside it (#2898)
206* Fix an issue where `await` expressions were not included properly (#2899)
207
208### Pull Requests
209* [#2898](https://github.com/rollup/rollup/pull/2898): Properly include try-catch-statements even if they have already been included in some way (@lukastaegert)
210* [#2899](https://github.com/rollup/rollup/pull/2899): Fix unintended early return in await inclusion handling (@lukastaegert)
211
212## 1.14.0
213*2019-06-05*
214
215### Features
216* Deoptimize code inside and called from try-statements for feature detection (#2892)
217* Tree-shake unused call arguments (#2892)
218
219### Pull Requests
220* [#2892](https://github.com/rollup/rollup/pull/2892): Implement try-statement-deoptimization for feature detection, tree-shake unused arguments (@lukastaegert)
221
222
223## 1.13.1
224*2019-06-01*
225
226### Bug Fixes
227* Avoid conflicts between top-level module, require etc. and CommonJS runtimes (#2889)
228
229### Pull Requests
230* [#2888](https://github.com/rollup/rollup/pull/2888): Enable full TypeScript strict mode (@lukastaegert)
231* [#2889](https://github.com/rollup/rollup/pull/2889): Protect all module globals for CJS output from being redefined (@lukastaegert)
232
233## 1.13.0
234*2019-05-31*
235
236### Features
237* Omit `exports` and `module` from SystemJS wrapper if possible (#2880)
238* Try to use the first letters of names when mangling exports (#2885)
239
240### Bug Fixes
241* Avoid conflicts with local variables when using format specific globals to render dynamic imports and file URLs (#2880)
242* Do not produce undefined reexports when reexporting from entry points (#2885)
243
244### Pull Requests
245* [#2880](https://github.com/rollup/rollup/pull/2880): Deconflict global variables used inside format-specific code (@lukastaegert)
246* [#2885](https://github.com/rollup/rollup/pull/2885): Do not produce undefined reexports when reexporting from entry points and refactor chunk linking (@lukastaegert)
247
248## 1.12.5
249*2019-05-30*
250
251### Pull Requests
252* [#2884](https://github.com/rollup/rollup/pull/2884): Update pluginutils for new micormatch and reduced bundle size (@lukastaegert)
253
254## 1.12.4
255*2019-05-27*
256
257### Bug Fixes
258* Show correct error stack trace for errors throw in "load" hooks (#2871)
259
260### Pull Requests
261* [#2875](https://github.com/rollup/rollup/pull/2875): Mention subfolders in docs (@lukastaegert)
262* [#2871](https://github.com/rollup/rollup/pull/2871): Reserve error stack information (@LongTengDao)
263
264## 1.12.3
265*2019-05-19*
266
267### Bug Fixes
268* Prevent duplicate imports when exports are reexported as default exports (#2866)
269
270### Pull Requests
271* [#2755](https://github.com/rollup/rollup/pull/2755): Enable TypeScript strictNullChecks (@edsrzf)
272* [#2866](https://github.com/rollup/rollup/pull/2866): Properly deduplicate reexported default exports (@lukastaegert)
273
274## 1.12.2
275*2019-05-17*
276
277### Bug Fixes
278* Do not fail when using clearScreen:false in watchMode (#2858)
279* Properly resolve star reexports when preserving modules (#2860)
280
281### Pull Requests
282* [#2858](https://github.com/rollup/rollup/pull/2858): Declare processConfigsErr before use (@humphd)
283* [#2860](https://github.com/rollup/rollup/pull/2860): Keep nested exports with preserveModules (@TomCaserta)
284* [#2864](https://github.com/rollup/rollup/pull/2864): Cache transitive reexport detection (@lukastaegert)
285
286## 1.12.1
287*2019-05-16*
288
289### Bug Fixes
290* Extend file name sanitation to also replace "?" and "*" e.g. when preserving modules with the updated commonjs plugin (#2860)
291* Do not ignore module transformer that return an empty string (#2861)
292
293### Pull Requests
294* [#2860](https://github.com/rollup/rollup/pull/2860): Update to latest plugins and extend file name sanitation (@lukastaegert)
295* [#2861](https://github.com/rollup/rollup/pull/2861): Allow transformers to return an empty string (@lukastaegert)
296
297## 1.12.0
298*2019-05-15*
299
300### Features
301* Add `treeshake.moduleSideEffects` option to allow removing empty imports without a side-effect check (#2844)
302* Extend plugin API to allow marking modules as side-effect-free (#2844)
303* Extend `this.resolve` plugin context function with an option to skip the `resolveId` hook of the calling plugin (#2844)
304* Add `isEntry` flag to `this.getModuleInfo` plugin context function (#2844)
305* Distribute Rollup as optimized ES2015 code (#2851)
306
307### Pull Requests
308* [#2844](https://github.com/rollup/rollup/pull/2844): Add options and hooks to control module side effects (@lukastaegert)
309* [#2851](https://github.com/rollup/rollup/pull/2851): Switch to ES2015 output (@lukastaegert)
310
311## 1.11.3
312*2019-05-05*
313
314### Bug Fixes
315* Quote es3 keywords in namespace objects (#2825)
316
317### Pull Requests
318* [#2825](https://github.com/rollup/rollup/pull/2825): Add es3 support for namespace object import (@sormy)
319
320## 1.11.2
321*2019-05-04*
322
323### Bug Fixes
324* Prevent a crash when handling circular namespace exports (#2836)
325
326### Pull Requests
327* [#2836](https://github.com/rollup/rollup/pull/2836): Make sure circular `export * from X` does not stack overflow (@Swatinem)
328
329## 1.11.1
330*2019-05-04*
331
332### Bug Fixes
333* Fix an issue where rendered exports were reported as "removed" in the bundle information (#2835)
334
335### Pull Requests
336* [#2835](https://github.com/rollup/rollup/pull/2835): Fix `removedExports` to correctly track the exported item (@Swatinem)
337
338## 1.11.0
339*2019-05-03*
340
341### Features
342* Add `emitChunk` plugin context function to emit additional entry chunks that can be referenced from the code (#2809)
343* Allow `manualChunks` to be a function (#2831)
344* Omit `.js` extensions in AMD imports to make sure an AMD `baseUrl` would work (#2809)
345* Automatically use the name of the imported module as a base for dynamically imported chunks (#2809)
346* Add `resolveFileUrl` plugin hook to replace `resolveAssetUrl` and handle emitted chunks as well (#2809)
347* Add `resolve` plugin hook to replace `resolveId` and `isExternal` that returns an object (#2829)
348* Allow `resolveDynamicImport` to return an `{id, external}` object to also resolve unresolvable dynamic imports to a module (#2829)
349
350### Bug Fixes
351* Do not create invalid code if a dynamic import contains nothing but reexports (#2809)
352* Do not fail if modules that define a manual chunk depend on each other (#2809)
353* Do not fail if a module that defines a manual chunk is the dependency of a module defining a different manual chunk (#2809)
354* No longer fail for unnamed duplicate entry points but combine them (#2809)
355* Always return `string | null` from `this.resolveId` even if some `resolveId` hooks return objects (#2829)
356* Show proper warnings when `resolveDynamicImport` resolves to a non-external module that does not exist (#2829)
357
358### Pull Requests
359* [#2809](https://github.com/rollup/rollup/pull/2809): Add hook for dynamic entry chunk emission (@lukastaegert)
360* [#2821](https://github.com/rollup/rollup/pull/2821): Fix syntax error in documentation (@FFxSquall)
361* [#2829](https://github.com/rollup/rollup/pull/2829): Improve id resolution (@lukastaegert)
362* [#2831](https://github.com/rollup/rollup/pull/2831): Allow manualChunks to be a function (@lukastaegert)
363* [#2832](https://github.com/rollup/rollup/pull/2832): Improve `generateBundle` documentation (@lukastaegert)
364* [#2833](https://github.com/rollup/rollup/pull/2833): Update dependencies (@lukastaegert)
365
366## 1.10.1
367*2019-04-19*
368
369### Bug Fixes
370* Invalid options.format values will now trigger a helpful error (#2813)
371
372### Pull Requests
373* [#2812](https://github.com/rollup/rollup/pull/2812): Minor documentation update (@dnalborczyk)
374* [#2813](https://github.com/rollup/rollup/pull/2813): Catch invalid options.format values (@marijnh)
375* [#2816](https://github.com/rollup/rollup/pull/2816): Update all dependencies to fix security issues (@lukastaegert)
376
377## 1.10.0
378*2019-04-11*
379
380### Features
381* Improve generated code to polyfill `import.meta.url` (#2785)
382* Add plugin hook to configure handling of `import.meta` (#2785)
383* Improve generated code when accessing URLs of emitted assets (#2796)
384* Add plugin hook to configure the generated code when accessing URLs of emitted assets (#2796)
385
386### Bug Fixes
387* No longer resolve assets to their parent URL in some cases (#2796)
388
389### Pull Requests
390* [#2785](https://github.com/rollup/rollup/pull/2785): Refactor handling of import.meta.url and add option to configure behaviour (@lukastaegert)
391* [#2796](https://github.com/rollup/rollup/pull/2796): Improve and fix asset emission (@lukastaegert)
392
393## 1.9.3
394*2019-04-10*
395
396### Bug Fixes
397* Simplify return expressions that are evaluated before the surrounding function is bound (#2803)
398
399### Pull Requests
400* [#2803](https://github.com/rollup/rollup/pull/2803): Handle out-of-order binding of identifiers to improve tree-shaking (@lukastaegert)
401
402## 1.9.2
403*2019-04-10*
404
405### Bug Fixes
406* Allowing replacing `output.file` with `output.dir` in the `outputOptions` hook (#2802)
407
408### Pull Requests
409* [#2802](https://github.com/rollup/rollup/pull/2802): Observe modified output options in bundle.write (@lukastaegert)
410
411## 1.9.1
412*2019-04-10*
413
414### Bug Fixes
415* Make sure inline comments in dynamic imports are preserved (#2797)
416
417### Pull Requests
418* [#2797](https://github.com/rollup/rollup/pull/2797): Emit inline comments inside dynamic import (@manucorporat)
419
420## 1.9.0
421*2019-04-05*
422
423### Features
424* Add built-in support for bigint (#2789)
425
426### Pull Requests
427* [#2789](https://github.com/rollup/rollup/pull/2789): Ship with bigint support built-in (@danielgindi)
428* [#2791](https://github.com/rollup/rollup/pull/2791): Use shared extractAssignedNames from rollup-pluginutils (@lukastaegert)
429* [#2792](https://github.com/rollup/rollup/pull/2792): Test that rollup-plugin-commonjs works with preserveModules (@lukastaegert)
430
431## 1.8.0
432*2019-04-02*
433
434### Features
435* Support `module` as alias for `esm` and `commonjs` for `cjs` to match Node (#2783)
436
437### Pull Requests
438* [#2782](https://github.com/rollup/rollup/pull/2782): Inline interopDefault in config loading (@guybedford)
439* [#2783](https://github.com/rollup/rollup/pull/2783): Support Node-style format aliases (@guybedford)
440
441## 1.7.4
442*2019-03-28*
443
444### Bug Fixes
445* Improve TypeScript type of the treeshaking options (#2779)
446
447### Pull Requests
448* [#2779](https://github.com/rollup/rollup/pull/2779): Make all properties in TreeshakingOptions optional (@ndelangen)
449
450## 1.7.3
451*2019-03-24*
452
453### Bug Fixes
454* Use getters when re-exporting live-bindings (#2765)
455
456### Pull Requests
457* [#2765](https://github.com/rollup/rollup/pull/2765): Support exporting live-bindings from other chunks or external dependencies (@lukastaegert)
458
459## 1.7.2
460*2019-03-24*
461
462### Bug Fixes
463* Make sure relative external ids are resolved correctly (#2774)
464
465### Pull Requests
466* [#2774](https://github.com/rollup/rollup/pull/2774): Resolve relative external ids (@lukastaegert)
467
468## 1.7.1
469*2019-03-24*
470
471### Bug Fixes
472* Prevent invalid code when exporting several hundred identifiers from a chunk (#2768)
473* Do not wrongly deconflict labels (#2776)
474
475### Pull Requests
476* [#2768](https://github.com/rollup/rollup/pull/2768): Sanitize shortened internal export names (@lukastaegert)
477* [#2769](https://github.com/rollup/rollup/pull/2769): Update dependencies and fix security issue (@lukastaegert)
478* [#2776](https://github.com/rollup/rollup/pull/2776): Do not treat break labels as identifiers (@lukastaegert)
479
480## 1.7.0
481*2019-03-20*
482
483### Features
484* Sort chunk exports by name for greater consistency (#2757)
485
486### Bug Fixes
487* Fix a situation where tree-shakeable code would not be removed in an indeterminate manner (#2757)
488
489### Pull Requests
490* [#2757](https://github.com/rollup/rollup/pull/2757): Sort modules before binding, sort exports (@lukastaegert)
491
492## 1.6.1
493*2019-03-20*
494
495### Bug Fixes
496* Avoid name clashes of unused default exports when tree-shaking is false (#2758)
497* Do not crash when generating SystemJS bundles containing array patterns with member expressions (#2760)
498
499### Pull Requests
500* [#2758](https://github.com/rollup/rollup/pull/2758): Make sure unused default exports are deconflicted when tree-shaking is false (@lukastaegert)
501* [#2760](https://github.com/rollup/rollup/pull/2760): Handle member expressions in array patterns (@lukastaegert)
502
503## 1.6.0
504*2019-03-08*
505
506### Features
507* Add plugin hook to modify output options (#2736)
508
509### Pull Requests
510* [#2736](https://github.com/rollup/rollup/pull/2736): Add hook for modifying OutputOptions (@Comandeer)
511
512## 1.5.0
513*2019-03-07*
514
515### Features
516* Allow resolving to a different id while marking it as external at the same time (#2734)
517
518### Pull Requests
519* [#2734](https://github.com/rollup/rollup/pull/2734): Allow resolveId to return an object (@lukastaegert)
520
521## 1.4.2
522*2019-03-07*
523
524### Bug Fixes
525* Respect variable identity of exports when hashing (#2741)
526* Resolve a situations where a variable was imported twice with the same name (#2737)
527
528### Pull Requests
529* [#2741](https://github.com/rollup/rollup/pull/2741): Fix hashing when different variable are exported using the same name (@lukastaegert)
530* [#2737](https://github.com/rollup/rollup/pull/2737): Fix duplicate imports with conflicting names (@lukastaegert)
531
532## 1.4.1
533*2019-03-04*
534
535### Bug Fixes
536* Do not treat the import target "" as external by default (#2733)
537
538### Pull Requests
539* [#2733](https://github.com/rollup/rollup/pull/2733): Do not treat the import target "" as external by default (@LongTengDao)
540
541## 1.4.0
542*2019-03-01*
543
544### Features
545* Add option to change the name of the dynamic import function to allow polyfilling it (#2723)
546
547### Pull Requests
548* [#2723](https://github.com/rollup/rollup/pull/2723): Add dynamicImportFunction option (@keithamus)
549
550## 1.3.3
551*2019-03-01*
552
553### Bug Fixes
554* Fix performance regression when handling long chains of calls to property methods (#2732)
555
556### Pull Requests
557* [#2730](https://github.com/rollup/rollup/pull/2730): Order types, interfaces, classes, and object members (@lukastaegert)
558* [#2732](https://github.com/rollup/rollup/pull/2732): Take chunk export mode into account when reexporting default (@lukastaegert)
559
560## 1.3.2
561*2019-02-27*
562
563### Bug Fixes
564* Allow ids of default exported classes to be exported separately (#2728)
565
566### Pull Requests
567* [#2728](https://github.com/rollup/rollup/pull/2728): Update dependencies (@lukastaegert)
568
569## 1.3.1
570*2019-02-27*
571
572### Bug Fixes
573* Correctly reexport the default export from entry chunks (#2727)
574
575### Pull Requests
576* [#2727](https://github.com/rollup/rollup/pull/2727): Take chunk export mode into account when reexporting default (@lukastaegert)
577
578## 1.3.0
579*2019-02-26*
580
581### Features
582* Treeshake call expressions prefixed with UglifyJS style `@__PURE__` annotations (#2429)
583
584### Pull Requests
585* [#2429](https://github.com/rollup/rollup/pull/2429): Add support for /*#__PURE__*/ comments (@conartist6 and @lukastaegert)
586
587## 1.2.5
588*2019-02-26*
589
590### Bug Fixes
591* Store external ids reported by plugins in watch mode (#2718)
592
593### Pull Requests
594* [#2718](https://github.com/rollup/rollup/pull/2718): Incremental external (@andreas-karlsson)
595
596## 1.2.4
597*2019-02-26*
598
599### Bug Fixes
600* Fix an issue where a variable was imported twice under the same name (#2715)
601
602### Pull Requests
603* [#2715](https://github.com/rollup/rollup/pull/2715): Deduplicate imports referencing default exports and their original variables (@lukastaegert)
604
605## 1.2.3
606*2019-02-23*
607
608### Bug Fixes
609* Use correct path when rendering dynamic imports where the entry module is empty (#2714)
610
611### Pull Requests
612* [#2714](https://github.com/rollup/rollup/pull/2714): Properly render dynamic imports when imported module is empty (@lukastaegert)
613
614## 1.2.2
615*2019-02-19*
616
617### Bug Fixes
618* Fix wrong external imports when using the `paths` options only for some outputs (#2706)
619
620### Pull Requests
621* [#2706](https://github.com/rollup/rollup/pull/2706): Always recreate paths for external modules (@lukastaegert)
622
623## 1.2.1
624*2019-02-17*
625
626### Bug Fixes
627* Fix ESM version of Rollup (#2705)
628
629### Pull Requests
630* [#2705](https://github.com/rollup/rollup/pull/2705): Fix ESM version of Rollup (@lukastaegert)
631
632## 1.2.0
633*2019-02-17*
634
635### Features
636* Fewer renamed variables due to a completely reimplemented deconflicting logic (#2689)
637
638### Bug Fixes
639* Respect rendered and tree-shaken exports when determining chunk hashes (#2695)
640* Fix an error when dynamic imports end up in the same chunk as one of their importees (#2677)
641* Do not generate invalid code when expressions containing IIFEs are simplified (#2696)
642* Do not throw an error when more than ten bundles are watched (#2700)
643* Treat re-exported globals in a spec-compliant way (#2691)
644* Fix issues related to wrongly renamed variables (#2689)
645* Do not throw an error if config files contain non-default exports (#2673)
646* Improve type of `RollupOutput.output` to guarantee at least one chunk (#2679)
647
648### Pull Requests
649* [#2673](https://github.com/rollup/rollup/pull/2673): Allow config files to have non-default exports (@swansontec)
650* [#2677](https://github.com/rollup/rollup/pull/2677): Prevent final resolution and facade creation for inlined dynamic imports (@Rich-Harris and @lukastaegert)
651* [#2679](https://github.com/rollup/rollup/pull/2679): Improve type of `RollupOutput.output` (@MattiasBuelens)
652* [#2689](https://github.com/rollup/rollup/pull/2689): Reimplement variable deconflicting logic (@lukastaegert)
653* [#2691](https://github.com/rollup/rollup/pull/2691): Fix CI issues and update acorn dependency (@lukastaegert)
654* [#2693](https://github.com/rollup/rollup/pull/2693): Fix typo in export-globals test (@MattiasBuelens)
655* [#2695](https://github.com/rollup/rollup/pull/2695): Respect rendered exports when generating chunk hashes (@lukastaegert)
656* [#2696](https://github.com/rollup/rollup/pull/2696): Correctly render function expression inside simplified expression statements (@lukastaegert)
657* [#2700](https://github.com/rollup/rollup/pull/2700): Add a fix for MaxListenersExceededWarning (@luwes)
658* [#2703](https://github.com/rollup/rollup/pull/2703): Update rollup-pluginutils (@lukastaegert)
659
660## 1.1.2
661*2019-01-21*
662
663### Bug Fixes
664* Tree-shaken dynamic imports no longer leave behind `undefined` entries in the bundle information (#2663)
665* Dynamic imports in dynamically imported files could lead to crashes and would not always create new chunks (#2664)
666
667### Pull Requests
668* [#2663](https://github.com/rollup/rollup/pull/2663): Do not include tree-shaken dynamic imports in bundle information (@lukastaegert)
669* [#2664](https://github.com/rollup/rollup/pull/2664): Properly handle dynamic imports declared in dynamically imported files (@everdimension)
670
671## 1.1.1
672*2019-01-19*
673
674### Bug Fixes
675* Make sure object prototype methods are not considered to be falsy when tree-shaking (#2652)
676
677### Pull Requests
678* [#2652](https://github.com/rollup/rollup/pull/2652): Make sure object prototype methods are not considered to be falsy (@lukastaegert)
679* [#2654](https://github.com/rollup/rollup/pull/2654): Use correct signature for `this.setAssetSource` in docs (@everdimension)
680* [#2656](https://github.com/rollup/rollup/pull/2656): Swap descriptions for `[extname]` and `[ext]` in docs (@tivac)
681
682## 1.1.0
683*2019-01-09*
684
685### Features
686* Make `this.meta` available from the `options` plugin hook (#2642)
687* Add a new `writeBundle` plugin hook that is called *after* all files have been written (#2643)
688
689### Bug Fixes
690* Make sure the `acorn` import of the bundled non-ESM acorn plugins is correctly translated to ESM (#2636)
691* Make sure input options are actually passed to the `buildStart` hook (#2642)
692
693### Pull Requests
694* [#2636](https://github.com/rollup/rollup/pull/2636): Improve how acorn is imported, update dependencies (@lukastaegert)
695* [#2642](https://github.com/rollup/rollup/pull/2642): Make this.meta available in options hook, pass input options to buildStart (@lukastaegert)
696* [#2643](https://github.com/rollup/rollup/pull/2643): Implement writeBundle hook (@lukastaegert)
697
698## 1.0.2
699*2019-01-05*
700
701### Bug Fixes
702* Make sure the transform hook is always reevaluated when a file watched by the hook changes (#2633)
703* Fix a crash when generating hashes for tree-shaken dynamic imports (#2638)
704* Fix a crash and some inconsistencies when using the acorn-bigint plugin (#2640)
705
706### Pull Requests
707* [#2633](https://github.com/rollup/rollup/pull/2633): Document `this.addWatchFile` and make sure it also declares transform dependencies (@lukastaegert)
708* [#2635](https://github.com/rollup/rollup/pull/2635): Make sure `code` is optional in warning type (@lukastaegert)
709* [#2638](https://github.com/rollup/rollup/pull/2638): Do not fail when generating hashes for tree-shaken dynamic imports (@lukastaegert)
710* [#2640](https://github.com/rollup/rollup/pull/2640): Always treat bigints as unknown (@lukastaegert)
711* [#2641](https://github.com/rollup/rollup/pull/2641): Make sure all CLI options are listed in the summary (@lukastaegert)
712
713## 1.0.1
714*2019-01-03*
715
716### Bug Fixes
717* Properly handle reexporting an external default export for non-ESM targets when using named exports mode (#2620)
718* Do not (wrongly) re-declare input options in the merged `RollupOptions` type (#2622)
719
720### Pull Requests
721* [#2620](https://github.com/rollup/rollup/pull/2620): Fixed issue with reexporting default as default with `{exports: named, interop: true}` options (@Andarist)
722* [#2622](https://github.com/rollup/rollup/pull/2622): Simplify RollupOptions (@Kinrany)
723* [#2627](https://github.com/rollup/rollup/pull/2627): Show how to skip imports for optional plugins (@chris-morgan)
724
725## 1.0.0
726*2018-12-28*
727
728### Breaking Changes
729* Several (mostly deprecated) options have been removed or renamed (#2293, #2409):
730 - banner -> output.banner
731 - dest -> output.file
732 - entry -> input
733 - experimentalCodeSplitting -> now always active
734 - experimentalDynamicImport -> now always active
735 - experimentalPreserveModules -> preserveModules
736 - exports -> output.exports
737 - extend -> output.extend
738 - footer -> output.footer
739 - format -> output.format
740 - freeze -> output.freeze
741 - globals -> output.globals
742 - indent -> output.indent
743 - interop -> output.interop
744 - intro -> output.intro
745 - load -> use plugin API
746 - moduleName -> output.name
747 - name -> output.name
748 - noConflict -> output.noConflict
749 - output.moduleId -> output.amd.id
750 - outro -> output.outro
751 - paths -> output.paths
752 - preferConst -> output.preferConst
753 - pureExternalModules -> treeshake.pureExternalModules
754 - resolveExternal -> use plugin API
755 - resolveId -> use plugin API
756 - sourcemap -> output.sourcemap
757 - sourceMap -> output.sourcemap
758 - sourceMapFile -> output.sourcemapFile
759 - strict -> output.strict
760 - targets -> use output as an array
761 - transform -> use plugin API
762 - useStrict -> output.strict
763* In general, output options can no longer be used as input options (#2409)
764* `bundle.generate` and `bundle.write` now return a new format (#2293)
765* Several plugin hooks have become deprecated and will display warnings when used (#2409):
766 - transformBundle
767 - transformChunk
768 - ongenerate
769 - onwrite
770* Plugin transform dependencies are deprecated in favour of using the `this.addWatchFile` plugin context function (#2409)
771* Accessing `this.watcher` in plugin hooks is deprecated in favour of the `watchChange` plugin hook and the `this.addWatchFile` plugin context function (#2409)
772* Using dynamic import statements will by default create a new chunk unless `inlineDynamicImports` is used (#2293)
773* Rollup now uses acorn@6 which means that acorn plugins must be compatible with this version; acorn is now external for non-browser builds to make plugins work (#2293)
774
775### Features
776* The `--dir` ClI option can now be aliased as `-d` (#2293)
777* The `--input` option now supports named entry points via `=` (#2293)
778
779### Bug Fixes
780* Both the `--input` option as well as the default CLI option now support named inputs (#2293)
781
782### Pull Requests
783* [#2293](https://github.com/rollup/rollup/pull/2293): Unify code paths for 1.0 relase and update documentation (@guybedford and @lukastaegert)
784* [#2409](https://github.com/rollup/rollup/pull/2409): Remove old deprecated features and add new deprecation warnings (@guybedford)
785* [#2486](https://github.com/rollup/rollup/pull/2486): Upgrade to acorn 6 (@marijnh)
786* [#2611](https://github.com/rollup/rollup/pull/2611): Fix hook's name in test description (@Andarist)
787* [#2612](https://github.com/rollup/rollup/pull/2612): Fix a self-contradicting comment in the docs (@LongTengDao)
788
789## 0.68.2
790*2018-12-23*
791
792### Bug Fixes
793* Do not assume hoisted variables to have been initialized (#2607)
794
795### Pull Requests
796* [#2607](https://github.com/rollup/rollup/pull/2607): Fix an issues where hoisted variables were assumed to have been initialized (@lye)
797
798## 0.68.1
799*2018-12-19*
800
801### Bug Fixes
802* Fix an issue with UMD wrappers where a variable is used without being defined (#2600)
803
804### Pull Requests
805* [#2600](https://github.com/rollup/rollup/pull/2600): Fix UMD and IIFE wrapper issues and add comprehensive functional wrapper tests (@lukastaegert)
806
807## 0.68.0
808*2018-12-16*
809
810### Breaking Changes
811* `optimizeChunks` is renamed to `experimentalOptimizeChunks` to reflect this feature is not production-ready yet (#2575)
812
813### Features
814* Plugins can iterate all module ids via `this.moduleIds` (#2565)
815* Plugins can get graph information about a module via `this.getModuleInfo(id)` (#2565)
816* Plugins and JS API users get more information about the generated chunks: `dynamicImports`, `facadeModuleId`, `isDynamicEntry`, `name` (#2575)
817* Tree-shaken dynamic imports will no longer create chunks or influence chunking in any way (#2575)
818* Dynamic imports will no longer follow the `entryFileNames` but the `chunkFileNames` property reflecting those are solely internally used (#2575)
819* If there are chunk naming conflicts, entry chunks will always take precedence (#2575)
820* If an entry facade is created, only the facade chunk is marked as `isEntry` (#2575)
821* Dynamic chunks will only be marked as `isEntry` if they are actually entry chunks as well; thus there is now a 1-to-1 correspondence between modules listed in `input` and chunks marked as `isEntry` (#2575)
822* Chunks no longer contain imports for variables that are tree-shaken in the chunk but used in other chunks (#2584)
823* Chunks will always import re-exported variables directly from the chunk where they are originally exported from (#2584)
824* Null characters will be pruned from chunk ids to allow for virtually created chunks and make `rollup-plugin-multi-entry` compatible with code-splitting and thus the upcoming 1.0 version (#2590)
825* Simplify the UMD wrapper code as much as possible, especially if there are no exports (#2594)
826* The UMD wrapper will now work in strict mode by checking for `self` before `this` when determining the global variable (#2594)
827
828### Bug Fixes
829* If a facade is created for a dynamic entry point, this facade will be imported instead of the facaded chunk (#2575)
830* Manual chunks that include multiple entry points will have proper facades created for all entry points if necessary (#2575)
831* If missing exports are shimmed, the shim variable will not be global but created on a per-module basis and is deconflicted with variables having the same name (#2584)
832* Missing export shims work properly in SystemJS (#2584)
833* `preserveModules` now handles dynamic namespace imports (#2584)
834* Fix chunk execution order in certain scenarios (#2584)
835* Exports and assignments using destructuring syntax will properly update the exported variables when generating SystemJS output (#2587)
836* Hashes in chunk names will now also take dynamic imports into account (#2596)
837
838### Pull Requests
839* [#2565](https://github.com/rollup/rollup/pull/2565): Provide module graph information on the plugin context (@samccone)
840* [#2575](https://github.com/rollup/rollup/pull/2575): Extend bundle information, tree-shake dynamic imports, fix dynamic import facade creation, support manual chunks with multiple entry points, make `optimizeChunks` experimental (@lukastaegert)
841* [#2577](https://github.com/rollup/rollup/pull/2577): Update dependencies (@lukastaegert)
842* [#2584](https://github.com/rollup/rollup/pull/2584): Prune tree-shaken chunk imports, fix missing export shimming, support dynamic namespaces when preserving modules, improve chunk execution order (@lukastaegert)
843* [#2587](https://github.com/rollup/rollup/pull/2587): Support exports using destructuring declarations and assignments in SystemJS (@lukastaegert)
844* [#2590](https://github.com/rollup/rollup/pull/2590): Make sure chunk ids do not contain invalid characters to allow for chunks to correspond to virtual modules (@lukastaegert)
845* [#2594](https://github.com/rollup/rollup/pull/2594): Simplify UMD wrapper code and make sure it works in strict mode (@lukastaegert)
846* [#2596](https://github.com/rollup/rollup/pull/2596): Take both static and dynamic dependencies into account when calculating hashes (@lukastaegert)
847
848## 0.67.4
849*2018-12-03*
850
851### Bug Fixes
852* Prevent corrupt source maps for files with very long lines (#2571)
853
854### Pull Requests
855* [#2571](https://github.com/rollup/rollup/pull/2571): Fix an issue with long lines in sourcemaps (@mislav)
856
857## 0.67.3
858*2018-11-17*
859
860### Bug Fixes
861* Make sure the ESM browser build is actually published to npm (#2560)
862* Throw proper error when using `inlineDynamicImports` with `experimentalPreserveModules` (#2560)
863
864### Pull Requests
865* [#2552](https://github.com/rollup/rollup/pull/2552): Properly include ESM browser build in package (@lukastaegert)
866* [#2560](https://github.com/rollup/rollup/pull/2560): Show proper error when using `inlineDynamicImports` with `experimentalPreserveModules` (@clarkdo)
867
868## 0.67.2
869*2018-11-17*
870
871### Bug Fixes
872* Prevent crash when not returning sourcemaps from `renderChunk` plugin hook (#2558)
873
874### Pull Requests
875* [#2558](https://github.com/rollup/rollup/pull/2558): Prevent crash when not returning sourcemaps from `renderChunk` (@kyle1320)
876
877## 0.67.1
878*2018-11-11*
879
880### Bug Fixes
881* Deconflict CLI entry points with same name but on different paths if no explicit naming is used (#2548)
882
883### Pull Requests
884* [#2548](https://github.com/rollup/rollup/pull/2548): Deconflict CLI entry points with same name but on different paths if no explicit naming is used (@lukastaegert)
885
886## 0.67.0
887*2018-11-04*
888
889### Breaking Changes
890none
891
892### Features
893* Do not resolve external dynamic imports via plugins to match the logic for static external imports again (#2505)
894* Support virtual modules created by plugins when preserving modules (#2511)
895* Add new `output.sourcemapExcludeSources` option to exclude the actual sources from sourcemaps (#2531)
896
897### Bug Fixes
898* Fix TypeScript type for sourcemaps (#2507)
899* Fix order of external and inter-chunk imports to match the proper execution order (#2508)
900* Do not tree-shake children of unknown nodes to e.g. properly handle do-expressions via acorn plugin (#2510)
901* Prevent memory leak when using the bundle as cache (#2522)
902* Fix mis-placed semicolons for certain SystemJS exports (#2529)
903
904### Pull Requests
905* [#2505](https://github.com/rollup/rollup/pull/2505): Do not resolve external dynamic imports via plugins (@lukastaegert)
906* [#2507](https://github.com/rollup/rollup/pull/2507): Fix public sourcemap type (@aMarCruz)
907* [#2508](https://github.com/rollup/rollup/pull/2508): Improve execution order of chunks and externals (@lukastaegert)
908* [#2510](https://github.com/rollup/rollup/pull/2510): Do not tree-shake children of unknown nodes to e.g. properly handle do-expressions via acorn plugin (@devsnek)
909* [#2511](https://github.com/rollup/rollup/pull/2511): Create chunks for virtual modules when preserving modules (@lukastaegert)
910* [#2522](https://github.com/rollup/rollup/pull/2522): Prevent memory leak when using the bundle as cache (@kyle1320)
911* [#2529](https://github.com/rollup/rollup/pull/2529): Fix mis-placed semicolons for certain SystemJS exports (@kyle1320)
912* [#2531](https://github.com/rollup/rollup/pull/2531): add `sourcemapExcludeSources` option to exclude the source content from sourcemaps (@kitsonk)
913
914## 0.66.6
915*2018-10-10*
916* Properly deconflict function and class declaration ids of reassigned default exports ([#2502](https://github.com/rollup/rollup/pull/2502))
917
918## 0.66.5
919*2018-10-09*
920* Remove cache from memory once no longer needed ([#2496](https://github.com/rollup/rollup/pull/2496))
921* Provide better error message when reexporting external namespace reexports ([#2499](https://github.com/rollup/rollup/pull/2499))
922
923## 0.66.4
924*2018-10-04*
925* Fix links in warnings and errors ([#2471](https://github.com/rollup/rollup/pull/2471))
926
927## 0.66.3
928*2018-10-03*
929* Detect side-effects in string.replace function arguments ([#2476](https://github.com/rollup/rollup/pull/2476))
930* Make sure chunk ids are assigned before creating output bundle ([#2483](https://github.com/rollup/rollup/pull/2483))
931* Use proper plugin name in error ([#2470](https://github.com/rollup/rollup/pull/2470))
932* Update TypeScript version and fix type errors ([#2488](https://github.com/rollup/rollup/pull/2488))
933
934## 0.66.2
935*2018-09-21*
936* Add additional information to parse errors messages in JSON and other non-JS files ([#2466](https://github.com/rollup/rollup/pull/2466))
937
938## 0.66.1
939*2018-09-19*
940* Ignore falsy plugins ([#2464](https://github.com/rollup/rollup/pull/2464))
941* Switch back to official TypeScript plugin ([#2465](https://github.com/rollup/rollup/pull/2465))
942
943## 0.66.0
944*2018-09-16*
945* Support ES2019 optional catch bindings ([#2455](https://github.com/rollup/rollup/pull/2455))
946* Add option to transform paths within sourcemaps ([#2430](https://github.com/rollup/rollup/pull/2430))
947* Add renderStart and renderEnd plugin hooks ([#2438](https://github.com/rollup/rollup/pull/2438))
948* Expose ESM browser build and minify browser builds ([#2437](https://github.com/rollup/rollup/pull/2437)
949* Associate hoisted variables in function bodys with function parameters ([#2456](https://github.com/rollup/rollup/pull/2456))
950* Fix issue when deconflicting variables used as pattern defaults ([#2446](https://github.com/rollup/rollup/pull/2446))
951* Properly deconflict default exported class and function expressions with ids ([#2458](https://github.com/rollup/rollup/pull/2458))
952* Faster internal test builds ([#2457](https://github.com/rollup/rollup/pull/2457))
953* Switch to rollup-plugin-typescript2 ([#2460](https://github.com/rollup/rollup/pull/2460))
954* Fix internal "perf" script ([#2433](https://github.com/rollup/rollup/pull/2433))
955* Test that errors are passed to the buildEnd hook ([#2450](https://github.com/rollup/rollup/pull/2450))
956
957## 0.65.2
958*2018-09-05*
959* Prevent watch mode memory leak ([#2441](https://github.com/rollup/rollup/pull/2441))
960
961## 0.65.1
962*2018-09-05*
963* Prevent globbing when using chokidar ([#2432](https://github.com/rollup/rollup/pull/2432))
964
965## 0.65.0
966*2018-08-25*
967* Refactor and unify plugin system ([#2382](https://github.com/rollup/rollup/pull/2382))
968* Implement plugin cache API ([#2389](https://github.com/rollup/rollup/pull/2389))
969* Add watchChange plugin hook to watch changed files, deprecate asset dependencies ([#2405](https://github.com/rollup/rollup/pull/2405))
970* Refine asset handling ([#2369](https://github.com/rollup/rollup/pull/2369))
971* Implement `renderChunk` hook to replace `transformChunk` and `transformBundle` hooks ([#2406](https://github.com/rollup/rollup/pull/2406))
972* Add rollup version to plugin context ([#2394](https://github.com/rollup/rollup/pull/2394))
973* Do not resume stdin in watch mode to fix it for Lerna users ([#2410](https://github.com/rollup/rollup/pull/2410))
974* Allow `[format]` placeholder for id generation ([#2387](https://github.com/rollup/rollup/pull/2387))
975* Always log error stacks even when a code frame is given ([#2417](https://github.com/rollup/rollup/pull/2417))
976* Do not test module ids starting with `\0` as external ([#2400](https://github.com/rollup/rollup/pull/2400))
977* Fix tracing of namespace variables ([#2408](https://github.com/rollup/rollup/pull/2408))
978* Fix re-tracing of namespace variables ([#2420](https://github.com/rollup/rollup/pull/2420))
979* Properly wrap comment annotations in SystemJS exports ([#2408](https://github.com/rollup/rollup/pull/2408))
980* Fix renaming of destructured parameters ([#2419](https://github.com/rollup/rollup/pull/2419))
981* Do not display version in watch mode when using `--silent` ([#2392](https://github.com/rollup/rollup/pull/2392))
982* Make `cacheExpiry` an experimental option for now ([#2401](https://github.com/rollup/rollup/pull/2401))
983* Lint test configs on commit ([#2402](https://github.com/rollup/rollup/pull/2402))
984* Add code of conduct ([#2388](https://github.com/rollup/rollup/pull/2388))
985* Move to CircleCI ([#2390](https://github.com/rollup/rollup/pull/2390))
986* Update pull request template ([#2404](https://github.com/rollup/rollup/pull/2404))
987
988## 0.64.1
989*2018-08-07*
990* Do not render initializers of hoisted variables in dead branches ([#2384](https://github.com/rollup/rollup/pull/2384))
991
992## 0.64.0
993*2018-08-07*
994* Print memory consumption together with performance timings ([#2370](https://github.com/rollup/rollup/pull/2370))
995* Enable plugins to mark imports as external by returning false for resolveId ([#2351](https://github.com/rollup/rollup/pull/2351))
996* Always retain empty manual chunks ([#2362](https://github.com/rollup/rollup/pull/2362))
997* Ensure CLI warnings are shown on errors and add error for external id collisions ([#2334](https://github.com/rollup/rollup/pull/2334))
998* Remove unnecessary dependency, update dependencies, fix linting of test config ([#2376](https://github.com/rollup/rollup/pull/2376))
999* Add targeted Github issue templates ([#2356](https://github.com/rollup/rollup/pull/2356))
1000
1001## 0.63.5
1002*2018-08-01*
1003* Ensure onwrite plugin hooks execute in sequence ([#2364](https://github.com/rollup/rollup/pull/2364))
1004* Always warn when no name is provided for a global module ([#2359](https://github.com/rollup/rollup/pull/2359))
1005* Add utility type for user created plugins ([#2355](https://github.com/rollup/rollup/pull/2355))
1006* Remove deprecated es6 format from types ([#2349](https://github.com/rollup/rollup/pull/2349))
1007* Mark inlineDynamicImports as optional in types ([#2348](https://github.com/rollup/rollup/pull/2348))
1008
1009## 0.63.4
1010*2018-07-20*
1011* Use turbocolor instead of chalk ([#2339](https://github.com/rollup/rollup/pull/2339))
1012
1013## 0.63.3
1014*2018-07-20*
1015* Handle expressions where "in" and "instanceof" are applied to primitive values ([#2344](https://github.com/rollup/rollup/pull/2344))
1016
1017## 0.63.2
1018*2018-07-18*
1019* Fix bind order in for-of loops ([#2338](https://github.com/rollup/rollup/pull/2338))
1020
1021## 0.63.1
1022*2018-07-18*
1023
1024## 0.63.0
1025*2018-07-17*
1026* Fix many tree-shaking related issues ([#2315](https://github.com/rollup/rollup/pull/2315))
1027* Add experimental support for top-level await ([#2235](https://github.com/rollup/rollup/pull/2235))
1028* Prevent duplicate version printout in watch mode ([#2325](https://github.com/rollup/rollup/pull/2325))
1029* Respect error frames provided by plugins ([#2309](https://github.com/rollup/rollup/pull/2309))
1030* Add `esm` format alias to types ([#2327](https://github.com/rollup/rollup/pull/2327))
1031* Further unify internal test setup ([#2329](https://github.com/rollup/rollup/pull/2329))
1032
1033## 0.62.0
1034*2018-06-27*
1035* Add option to automatically shim missing exports ([#2118](https://github.com/rollup/rollup/pull/2118))
1036* Inline dynamic imports that are also imported statically and only used in a single chunk ([#2295](https://github.com/rollup/rollup/pull/2295))
1037* Handle caching and invalidation of assets ([#2267](https://github.com/rollup/rollup/pull/2267))
1038* Fix plugin related types ([#2299](https://github.com/rollup/rollup/pull/2299))
1039
1040## 0.61.2
1041*2018-06-23*
1042* Improve watcher error handling, only rebuild invalidated outputs ([#2296](https://github.com/rollup/rollup/pull/2296))
1043* Update dependencies, make watcher more stable ([#2297](https://github.com/rollup/rollup/pull/2297))
1044
1045## 0.61.1
1046*2018-06-21*
1047* Do not try to deconflict "undefined" ([#2291](https://github.com/rollup/rollup/pull/2291))
1048* Properly track values for loop interator declarations and reassigned namespaces, add smoke test ([#2292](https://github.com/rollup/rollup/pull/2292))
1049
1050## 0.61.0
1051*2018-06-20*
1052* Declare file dependencies via transform plugin hooks ([#2259](https://github.com/rollup/rollup/pull/2259))
1053* Handle undefined values when evaluating conditionals ([#2264](https://github.com/rollup/rollup/pull/2264))
1054* Handle known undefined properties when evaluating conditionals ([#2265](https://github.com/rollup/rollup/pull/2265))
1055* Access watch events via the plugin context ([#2261](https://github.com/rollup/rollup/pull/2261))
1056* Add option to suppress `__esModule` flag in output ([#2287](https://github.com/rollup/rollup/pull/2287))
1057* Fix issue when re-declaring variables, track reassignments in more cases ([#2279](https://github.com/rollup/rollup/pull/2279))
1058* Add VSCode debug settings ([#2276](https://github.com/rollup/rollup/pull/2276))
1059
1060## 0.60.7
1061*2018-06-14*
1062* Fix typing issue ([#2269](https://github.com/rollup/rollup/pull/2269))
1063
1064## 0.60.6
1065*2018-06-14*
1066* Track mutations of included virtual arrays ([#2263](https://github.com/rollup/rollup/pull/2263))
1067* Update readme ([#2266](https://github.com/rollup/rollup/pull/2266))
1068
1069## 0.60.5
1070*2018-06-14*
1071* Track deep reassignments of global and exported variables and improve performance ([#2254](https://github.com/rollup/rollup/pull/2254))
1072
1073## 0.60.4
1074*2018-06-13*
1075* Properly handle initially uninitialized exports and exports of globals in SystemJS output ([#2258](https://github.com/rollup/rollup/pull/2258))
1076
1077## 0.60.3
1078*2018-06-13*
1079* Fix types to allow watching an array of outputs ([#2262](https://github.com/rollup/rollup/pull/2262))
1080
1081## 0.60.2
1082*2018-06-11*
1083* Permit setting an asset's source in `generateBundle` ([#2256](https://github.com/rollup/rollup/pull/2256))
1084* Add automatic linting ([#2242](https://github.com/rollup/rollup/pull/2242))
1085
1086## 0.60.1
1087*2018-06-07*
1088* Fix plugin regressions ([#2246](https://github.com/rollup/rollup/pull/2246))
1089* Avoid conflicts for large numbers of variables ([#2244](https://github.com/rollup/rollup/pull/2244))
1090
1091## 0.60.0
1092*2018-06-06*
1093* New plugin hooks: transformChunk, buildStart, buildEnd; extended plugin context with warn, error, resolveId, isExternal, emitAsset, setAssetSource and getAssetFileName available to any hook ([#2208](https://github.com/rollup/rollup/pull/2208))
1094* [BREAKING] Deprecate the `legacy` option and thus IE8 support ([#2141](https://github.com/rollup/rollup/pull/2141))
1095* Detect more known extensions and load .mjs without extension ([#2211](https://github.com/rollup/rollup/pull/2211))
1096* Add compact output mode ([#2151](https://github.com/rollup/rollup/pull/2151))
1097* Significantly improve sourcemap generation performance ([#2228](https://github.com/rollup/rollup/pull/2228))
1098* Enable naming SystemJS modules ([#2028](https://github.com/rollup/rollup/pull/2028))
1099* Do not use alternate screen if clearScreen is set in watch mode ([#2125](https://github.com/rollup/rollup/pull/2125))
1100* Allow object input form for code-splitting in watch mode ([#2217](https://github.com/rollup/rollup/pull/2217))
1101* Track reassignments of methods of exports from outside ([#2240](https://github.com/rollup/rollup/pull/2240))
1102* Preserve id of default exported functions and classes ([#2234](https://github.com/rollup/rollup/pull/2234))
1103* Add semicolons after default exports ([#2209](https://github.com/rollup/rollup/pull/2209))
1104* Fix build problems on Windows ([#2232](https://github.com/rollup/rollup/pull/2232))
1105* Display install size in readme ([#2196](https://github.com/rollup/rollup/pull/2196))
1106* Improve preserve modules test ([#2236](https://github.com/rollup/rollup/pull/2236))
1107
1108## 0.59.4
1109*2018-05-28*
1110* Fix performance regression when many return statements are used ([#2218](https://github.com/rollup/rollup/pull/2218))
1111
1112## 0.59.3
1113*2018-05-24*
1114* Fix reassignment tracking for constructor parameters ([#2214](https://github.com/rollup/rollup/pull/2214))
1115
1116## 0.59.2
1117*2018-05-21*
1118* Fix reassignment tracking in for-in loops ([#2205](https://github.com/rollup/rollup/pull/2205))
1119
1120## 0.59.1
1121*2018-05-16*
1122* Fix infinite recursion when determining literal values of circular structures ([#2193](https://github.com/rollup/rollup/pull/2193))
1123* Fix invalid code when simplifying expressions without spaces ([#2194](https://github.com/rollup/rollup/pull/2194))
1124
1125## 0.59.0
1126*2018-05-15*
1127* Tree-shake statically analysable dynamic conditionals ([#2167](https://github.com/rollup/rollup/pull/2167))
1128* Do not emit empty chunks when code-splitting or empty files when preserving modules ([#2128](https://github.com/rollup/rollup/pull/2128))
1129* Support `import.meta.url` ([#2164](https://github.com/rollup/rollup/pull/2164))
1130* Add `esm` format alias ([#2102](https://github.com/rollup/rollup/pull/2102))
1131* Use alphanumeric base64 characters when deconflicting variables ([#2188](https://github.com/rollup/rollup/pull/2188))
1132* Improve handling of external modules imported as both default and named imports ([#2136](https://github.com/rollup/rollup/pull/2136))
1133* Properly deconflict named imports from other chunks ([#2177](https://github.com/rollup/rollup/pull/2177))
1134* Fix an issue with namespaces containing reexports ([#2157](https://github.com/rollup/rollup/pull/2157))
1135* Fix an issue with with incorrectly mapped default exports when code-splitting CJS or AMD modules ([#2178](https://github.com/rollup/rollup/pull/2178))
1136* Fix an issue with wrong paths of relative external imports ([#2160](https://github.com/rollup/rollup/pull/2160))
1137* Fix an issue when using default exports and `interop: false` ([#2149](https://github.com/rollup/rollup/pull/2149))
1138* Fix in issue with invalid syntax in SystemJS output ([#2187](https://github.com/rollup/rollup/pull/2187))
1139* Fix an issue when tree-shaking call expressions and reassigned variables ([#2186](https://github.com/rollup/rollup/pull/2186))
1140* Fix file paths in source maps ([#2161](https://github.com/rollup/rollup/pull/2161))
1141* Fix wrong file name in error message ([#2137](https://github.com/rollup/rollup/pull/2137))
1142* Always use npm 5 on CI ([#2185](https://github.com/rollup/rollup/pull/2185))
1143
1144## 0.58.2
1145*2018-04-23*
1146* Fix rendering of certain statically resolvable if statements ([#2146](https://github.com/rollup/rollup/pull/2146))
1147
1148## 0.58.1
1149*2018-04-18*
1150* Fix comment detection ([#2129](https://github.com/rollup/rollup/pull/2129))
1151
1152## 0.58.0
1153*2018-04-16*
1154* Support individual chunk names with optional content hashes ([#2068](https://github.com/rollup/rollup/pull/2068))
1155* Support manually created chunks ([#2084](https://github.com/rollup/rollup/pull/2084))
1156* Automatically import deep dependencies when code splitting for better performance ([#2073](https://github.com/rollup/rollup/pull/2073))
1157* Automatically minify internal export/import names for esm and system output ([#2087](https://github.com/rollup/rollup/pull/2087))
1158* Add option to automatically merge small chunks ([#2090](https://github.com/rollup/rollup/pull/2090))
1159* Significantly improve tree-shaking performance ([#2119](https://github.com/rollup/rollup/pull/2119))
1160* Enable tree-shaking for logical expressions ([#2098](https://github.com/rollup/rollup/pull/2098))
1161* Rework external types and reduce type related dependencies ([#2108](https://github.com/rollup/rollup/pull/2108))
1162* Support parallel dependency resolution ([#2116](https://github.com/rollup/rollup/pull/2116))
1163* Improve deprecation handling ([#2076](https://github.com/rollup/rollup/pull/2076))
1164* Enable `--perf` timings in watch mode ([#2065](https://github.com/rollup/rollup/pull/2065))
1165* Improve performance timers ([#2111](https://github.com/rollup/rollup/pull/2111))
1166* Improve error handling for plugins ([#2100](https://github.com/rollup/rollup/pull/2100))
1167* Improve error when using `--dir` in a single file build ([#2123](https://github.com/rollup/rollup/pull/2123))
1168* Do not warn for external imports that are unused due to tree-shaking ([#2124](https://github.com/rollup/rollup/pull/2124))
1169* Update mixed export warning message ([#2107](https://github.com/rollup/rollup/pull/2107))
1170* Remove duplicate badges from readme ([#2083](https://github.com/rollup/rollup/pull/2083))
1171* Update readme examples ([#2086](https://github.com/rollup/rollup/pull/2086))
1172
1173## 0.57.1
1174*2018-03-17*
1175* Improve sourcemap generation performance ([#2062](https://github.com/rollup/rollup/pull/2062))
1176* Add reserved config option namespace and improve CLI interface ([#2063](https://github.com/rollup/rollup/pull/2063))
1177* Fix issue with default exported function and class expressions ([#2059](https://github.com/rollup/rollup/pull/2059))
1178* Replace `forEach` with faster `for` loops in some places ([#2064](https://github.com/rollup/rollup/pull/2064))
1179
1180## 0.57.0
1181*2018-03-15*
1182* Add option to preserve the module structure instead of bundling ([#1922](https://github.com/rollup/rollup/pull/1922))
1183* Enable watch mode when code-splitting ([#2035](https://github.com/rollup/rollup/pull/2035))
1184* Optionally pass CLI commands to config file ([#1926](https://github.com/rollup/rollup/pull/1926))
1185* Option to add correct `.toString` tags to namespaces ([#2041](https://github.com/rollup/rollup/pull/2041))
1186* Option and scripts to display performance timings ([#2045](https://github.com/rollup/rollup/pull/2045))
1187* Fixes for exported or early accessed namespaces + improved namespace indentation ([#2041](https://github.com/rollup/rollup/pull/2041))
1188* Include missing TypeScript dependencies ([#1965](https://github.com/rollup/rollup/pull/1965))
1189* Add #_PURE annotation to frozen namespaces ([#2044](https://github.com/rollup/rollup/pull/2044))
1190* Improve sourcemap and tree-shaking performance ([#2052](https://github.com/rollup/rollup/pull/2052))
1191* Inline sourcemap lookups and make rollup smaller ([#2055](https://github.com/rollup/rollup/pull/2055))
1192* Use updated magic-string types ([#2057](https://github.com/rollup/rollup/pull/2057))
1193* [BREAKING] Revert class id preservation from #2025 ([#2048](https://github.com/rollup/rollup/pull/2048))
1194* [BREAKING] Refactor missing export plugin hook ([#1987](https://github.com/rollup/rollup/pull/1987))
1195
1196## 0.56.5
1197*2018-03-07*
1198* Preserve ids when deconflicting classes ([#2025](https://github.com/rollup/rollup/pull/2025))
1199* Fix an issue with re-exported namespace imports ([#2034](https://github.com/rollup/rollup/pull/2034))
1200* Prevent an infinite loop when binding member expressions ([#1963](https://github.com/rollup/rollup/pull/1963))
1201* Convert code style via prettier ([#2031](https://github.com/rollup/rollup/pull/2031))
1202* Fix links in documentation ([#2026](https://github.com/rollup/rollup/pull/2026))
1203
1204## 0.56.4
1205*2018-03-05*
1206* Make rollup builds reproducible ([#2024](https://github.com/rollup/rollup/pull/2024))
1207* Improve error handling for source maps ([#2012](https://github.com/rollup/rollup/pull/2012))
1208* Properly handle SystemJS default exports without semicolons ([#2019](https://github.com/rollup/rollup/pull/2019))
1209* Properly handle importing the same variable several times when code-splitting ([#2020](https://github.com/rollup/rollup/pull/2020))
1210* Improve re-export tracing ([#2021](https://github.com/rollup/rollup/pull/2021))
1211* Apply "prettier" on commit ([#2017](https://github.com/rollup/rollup/pull/2017))
1212* Automatically clean up outdated tests ([#2009](https://github.com/rollup/rollup/pull/2009))
1213* Add SystemJS output to form tests ([#2022](https://github.com/rollup/rollup/pull/2022))
1214* Improve internal build configuration ([#2016](https://github.com/rollup/rollup/pull/2016))
1215
1216## 0.56.3
1217*2018-02-25*
1218* Fix issues around default exports and module facades ([#2001](https://github.com/rollup/rollup/pull/2001))
1219* Improve and fix internal chunk interface ([#1994](https://github.com/rollup/rollup/pull/1994))
1220* Fix superfluous semicolons added after declarations ([#1999](https://github.com/rollup/rollup/pull/1999))
1221* Improve code-splitting tests ([#1990](https://github.com/rollup/rollup/pull/1990))
1222
1223## 0.56.2
1224*2018-02-19*
1225* Fix handling of reassigned default exports ([#1975](https://github.com/rollup/rollup/pull/1975))
1226* Fix handling of renamed exports in entry points ([#1977](https://github.com/rollup/rollup/pull/1977))
1227* Update internal TypeScript version ([#1980](https://github.com/rollup/rollup/pull/1980))
1228* Omit compiled source files from published types ([#1981](https://github.com/rollup/rollup/pull/1981))
1229* Fix example in readme file ([#1984](https://github.com/rollup/rollup/pull/1984))
1230* Fix non-replaced dynamic imports in non-ESM output ([#1985](https://github.com/rollup/rollup/pull/1985))
1231
1232## 0.56.1
1233*2018-02-16*
1234* Fix regression when rendering switch statements ([#1971](https://github.com/rollup/rollup/pull/1971))
1235
1236## 0.56.0
1237*2018-02-15*
1238* Update to ECMAScript 2018 ([#1953](https://github.com/rollup/rollup/pull/1953))
1239* Rework tree-shaking rendering algorithm ([#1949](https://github.com/rollup/rollup/pull/1949))
1240* Tree-shake pure prototype calls on literals ([#1916](https://github.com/rollup/rollup/pull/1916))
1241* Expose AST parser to plugins ([#1945](https://github.com/rollup/rollup/pull/1945))
1242* Fix namespace re-export deconflicting ([#1960](https://github.com/rollup/rollup/pull/1960))
1243* Allow globals to be re-exported ([#1959](https://github.com/rollup/rollup/pull/1959))
1244* Fix internal performance timers ([#1966](https://github.com/rollup/rollup/pull/1966))
1245
1246## 0.55.5
1247*2018-02-10*
1248* Remove OpenCollective dependency ([#1915](https://github.com/rollup/rollup/pull/1915))
1249
1250## 0.55.4
1251*2018-02-09*
1252* Improve name deconflicting of external variables ([#1930](https://github.com/rollup/rollup/pull/1930))
1253* Improve re-export handling ([#1947](https://github.com/rollup/rollup/pull/1947))
1254* Mark preserveSymlinks option as optional ([#1939](https://github.com/rollup/rollup/pull/1939))
1255* Enable code-splitting tests to check directory structures ([#1924](https://github.com/rollup/rollup/pull/1924))
1256* Improve TypeScript definition test ([#1954](https://github.com/rollup/rollup/pull/1954))
1257
1258## 0.55.3
1259*2018-02-01*
1260* Remove OpenCollective dependency ([#1915](https://github.com/rollup/rollup/pull/1915))
1261
1262## 0.55.2
1263*2018-02-01*
1264* Add option to not follow symlinks ([#1819](https://github.com/rollup/rollup/pull/1819))
1265* Fix crash in windows shell ([#1928](https://github.com/rollup/rollup/pull/1928))
1266* Fix and test for external TypeScript errors ([#1903](https://github.com/rollup/rollup/pull/1903))
1267* Activate OpenCollective ([#1915](https://github.com/rollup/rollup/pull/1915))
1268* Optimize CI scripts ([#1921](https://github.com/rollup/rollup/pull/1921))
1269
1270## 0.55.1
1271*2018-01-26*
1272* Improve dynamic import workflow ([#1907](https://github.com/rollup/rollup/pull/1907))
1273* Properly handle multiple dynamic imports of the same module ([#1911](https://github.com/rollup/rollup/pull/1911))
1274* Fix import specifier deshadowing ([#1912](https://github.com/rollup/rollup/pull/1912))
1275* Allow plugin load hook to return an empty string ([#1908](https://github.com/rollup/rollup/pull/1908))
1276* Let onwarn handler accept strings ([#1905](https://github.com/rollup/rollup/pull/1905))
1277
1278## 0.55.0
1279*2018-01-23*
1280* Support code splitting ([#1841](https://github.com/rollup/rollup/pull/1841))
1281* Support SystemJS as output format ([#1897](https://github.com/rollup/rollup/pull/1897))
1282* Allow injecting acorn plugins ([#1857](https://github.com/rollup/rollup/pull/1857))
1283* Add `missingExport` plugin hook ([#1845](https://github.com/rollup/rollup/pull/1845))
1284* No longer parse config files via bublé ([#1899](https://github.com/rollup/rollup/pull/1899))
1285* Use externally maintained dynamic import acorn plugin ([#1891](https://github.com/rollup/rollup/pull/1891))
1286* Fix an error message ([#1886](https://github.com/rollup/rollup/pull/1886))
1287* Refactor internal rendering options ([#1900](https://github.com/rollup/rollup/pull/1900))
1288* Extract internal path resolution ([#1879](https://github.com/rollup/rollup/pull/1879))
1289* Extract internal bundle option handling ([#1880](https://github.com/rollup/rollup/pull/1880))
1290* Add import description type ([#1884](https://github.com/rollup/rollup/pull/1884))
1291* Clean up watch options types ([#1860](https://github.com/rollup/rollup/pull/1860))
1292* Clean up some tests ([#1888](https://github.com/rollup/rollup/pull/1888))
1293
1294## 0.54.1
1295*2018-01-17*
1296* Fix TypeScript errors in emitted type definitions ([#1871](https://github.com/rollup/rollup/pull/1871))
1297
1298## 0.54.0
1299*2018-01-12*
1300* Automatically inline locally resolvable dynamic imports ([#1816](https://github.com/rollup/rollup/pull/1816))
1301* Preserve directives in function bodies ([#1856](https://github.com/rollup/rollup/pull/1856))
1302* Refactor an error notification ([#1846](https://github.com/rollup/rollup/pull/1846))
1303* Refactor a wrong import ([#1863](https://github.com/rollup/rollup/pull/1863))
1304* Improve emitted TypeScript definitions ([#1864](https://github.com/rollup/rollup/pull/1864))
1305* Refactor unused import ([#1866](https://github.com/rollup/rollup/pull/1866))
1306
1307## 0.53.4
1308*2018-01-10*
1309* More type cleanup ([#1858](https://github.com/rollup/rollup/pull/1858))
1310* Use chalks internal helper to detect if colors should be used ([#1853](https://github.com/rollup/rollup/pull/1853))
1311* Refactor entity handling to use interfaces ([#1840](https://github.com/rollup/rollup/pull/1840))
1312* Use immutable.js internal types ([#1844](https://github.com/rollup/rollup/pull/1844))
1313* Ship `TypeScript` declaration files ([#1837](https://github.com/rollup/rollup/pull/1837))
1314
1315## 0.53.3
1316*2018-01-02*
1317* Use correct name when re-exporting from external modules ([#1794](https://github.com/rollup/rollup/pull/1794))
1318* Disable warnings when `resolveId` returns false ([#1825](https://github.com/rollup/rollup/pull/1825))
1319
1320## 0.53.2
1321*2017-12-30*
1322* Properly handle output arrays in the JavaScript API ([#1827](https://github.com/rollup/rollup/pull/1827))
1323
1324## 0.53.1
1325*2017-12-28*
1326* Properly deprecate more config options ([#1812](https://github.com/rollup/rollup/pull/1812))
1327* Pass output options to `transformBundle` plugin hook ([#1813](https://github.com/rollup/rollup/pull/1813))
1328
1329## 0.53.0
1330*2017-12-22*
1331* Experimental dynamic import support ([#1790](https://github.com/rollup/rollup/pull/1790))
1332* Unify config validation ([#1805](https://github.com/rollup/rollup/pull/1805))
1333
1334## 0.52.3
1335*2017-12-19*
1336* Properly hoist default exported functions in more situations ([#1799](https://github.com/rollup/rollup/pull/1799))
1337* Allow plugin transformations to not overwrite source maps by returning null ([#1797](https://github.com/rollup/rollup/pull/1797))
1338* Provide more parameters to "external" handler ([#1792](https://github.com/rollup/rollup/pull/1792))
1339
1340## 0.52.2
1341*2017-12-15*
1342* No longer ignore side-effects in JSON.parse and JSON.stringify ([#1785](https://github.com/rollup/rollup/pull/1785))
1343* Updated links in warnings ([#1776](https://github.com/rollup/rollup/pull/1776))
1344* No longer prevent self-imports ([#1777](https://github.com/rollup/rollup/pull/1777))
1345* Properly hoist default exported functions ([#1787](https://github.com/rollup/rollup/pull/1787))
1346* Prevent corruption when re-exporting default exports ([#1765](https://github.com/rollup/rollup/pull/1765))
1347
1348## 0.52.1
1349*2017-12-05*
1350* Improve deprecation warnings ([#1765](https://github.com/rollup/rollup/pull/1765))
1351* Properly use stdin ([#1774](https://github.com/rollup/rollup/pull/1774))
1352* Let --environment be used multiple times ([#1768](https://github.com/rollup/rollup/pull/1768))
1353* Always transpile config files ([#1759](https://github.com/rollup/rollup/pull/1759))
1354* Respect globals option in headers of UMD and IIFE files ([#1747](https://github.com/rollup/rollup/pull/1747))
1355
1356## 0.52.0
1357*2017-11-25*
1358* Accept config as promise ([#1731](https://github.com/rollup/rollup/pull/1731))
1359* Accept promises for intro/outro/banner/footer ([#1253](https://github.com/rollup/rollup/pull/1253))
1360* Option to prevent freezing of namespace imports ([#1696](https://github.com/rollup/rollup/pull/1696))
1361* Option to retain all output in watch mode ([#1688](https://github.com/rollup/rollup/pull/1688))
1362* Options to fine-tune treeshaking ([#1760](https://github.com/rollup/rollup/pull/1760))
1363
1364## 0.51.8
1365*2017-11-19*
1366* Fix speed problems by simplifying treeshaking reassignment handling ([#1740](https://github.com/rollup/rollup/pull/1740))
1367* Update dependencies ([#1742](https://github.com/rollup/rollup/pull/1742))
1368
1369## 0.51.7
1370*2017-11-17*
1371* Keep "this"-context when calling sequence expressions ([#1724](https://github.com/rollup/rollup/pull/1724))
1372
1373## 0.51.6
1374*2017-11-16*
1375* Use sourcemaps to determine error locations ([#1728](https://github.com/rollup/rollup/pull/1728))
1376
1377## 0.51.5
1378*2017-11-11*
1379* Fix regressions with uninitialised conditional expressions ([#1720](https://github.com/rollup/rollup/pull/1720))
1380
1381## 0.51.4
1382*2017-11-11*
1383* Fix regressions preventing builds ([#1725](https://github.com/rollup/rollup/pull/1725))
1384
1385## 0.51.3
1386*2017-11-10*
1387* Fix regression when treeshaking sequence expressions ([#1717](https://github.com/rollup/rollup/pull/1717))
1388
1389## 0.51.2
1390*2017-11-09*
1391* Fix treeshaking regression when labels are used inside functions ([#1712](https://github.com/rollup/rollup/pull/1712))
1392
1393## 0.51.1
1394*2017-11-08*
1395* Fix an issue with empty return statements ([#1704](https://github.com/rollup/rollup/pull/1704))
1396
1397## 0.51.0
1398*2017-11-08*
1399* Massive improvements to the treeshaking algorithm ([#1667](https://github.com/rollup/rollup/pull/1667))
1400
1401## 0.50.1
1402*2017-11-08*
1403* Fix treeshaking regression ([#1695](https://github.com/rollup/rollup/pull/1695))
1404* Treeshaking improvements ([#1650](https://github.com/rollup/rollup/pull/1650))
1405* Enable installation from Github ([#1670](https://github.com/rollup/rollup/pull/1670))
1406* Update documentation ([#1660](https://github.com/rollup/rollup/pull/1660))
1407
1408## 0.50.0
1409*2017-09-16*
1410* Many treeshaking improvements ([#1624](https://github.com/rollup/rollup/pull/1624))
1411* Show finish time in watch mode ([#1620](https://github.com/rollup/rollup/pull/1620))
1412
1413## 0.49.3
1414*2017-09-08*
1415* Respect `watch` options ([#1596](https://github.com/rollup/rollup/issues/1596))
1416* Fix treeshaking regressions ([#1604](https://github.com/rollup/rollup/pull/1604))
1417* Allow `-o` to work with `output.format` ([#1606](https://github.com/rollup/rollup/pull/1606))
1418
1419## 0.49.2
1420*2017-08-29*
1421* Fix treeshaking regressions ([#1591](https://github.com/rollup/rollup/pull/1591))
1422
1423## 0.49.1
1424*2017-08-28*
1425* Fix treeshaking regressions ([#1586](https://github.com/rollup/rollup/pull/1586))
1426
1427## 0.49.0
1428*2017-08-27*
1429* Completely update the treeshaking algorithm ([#1582](https://github.com/rollup/rollup/pull/1582))
1430* Only flip screen buffer if appropriate ([#1574](https://github.com/rollup/rollup/pull/1574))
1431* Guard against two instances creating the same dir ([#1576](https://github.com/rollup/rollup/pull/1576))
1432
1433## 0.48.2
1434
1435* Paths is an output option ([#1569](https://github.com/rollup/rollup/pull/1569))
1436
1437## 0.48.1
1438
1439* Print deprecation warnings in watch mode, and fix options when watcher restarts ([#1568](https://github.com/rollup/rollup/pull/1568))
1440
1441## 0.48.0
1442
1443* Numerous changes to the `options` object and CLI arguments ([#1479](https://github.com/rollup/rollup/issues/1479)). See [this gist](https://gist.github.com/Rich-Harris/d472c50732dab03efeb37472b08a3f32) for a rundown.
1444
1445## 0.47.6
1446
1447* Set `process.env.ROLLUP_WATCH` *before* loading config file
1448
1449## 0.47.5
1450
1451* Fix broken multi-bundle configs with `rollup.watch` ([#1532](https://github.com/rollup/rollup/issues/1532))
1452
1453## 0.47.4
1454
1455* Delete cached config file before reloading in watch mode
1456
1457## 0.47.3
1458
1459* Deshadow aliased imports ([#1550](https://github.com/rollup/rollup/issues/1550))
1460
1461## 0.47.2
1462
1463* Rebuild with dependency that npm randomly deleted
1464
1465## 0.47.1
1466
1467* Ignore external namespace imports when deshadowing ([#1547](https://github.com/rollup/rollup/issues/1547))
1468
1469## 0.47.0
1470
1471* Watch config file, restart `rollup.watch` on change ([#1535](https://github.com/rollup/rollup/issues/1535))
1472* Correctly render `export { foo } from` declarations in `es` output ([#1543](https://github.com/rollup/rollup/pull/1543))
1473* Reinstate missing `rollup.VERSION`
1474
1475## 0.46.3
1476
1477* init for/for-of loop section head with correct scopes ([#1538](https://github.com/rollup/rollup/issues/1538), [#1539](https://github.com/rollup/rollup/issues/1539))
1478* Fix namespace imports and re-exports in `es` output ([#1511](https://github.com/rollup/rollup/issues/1511))
1479* Deshadow indirectly imported namespaces ([#1488](https://github.com/rollup/rollup/issues/1488), [#1505](https://github.com/rollup/rollup/issues/1505))
1480
1481## 0.46.2
1482
1483* Pass options to `bundle.write` correctly in `rollup.watch` ([#1533](https://github.com/rollup/rollup/issues/1533))
1484* init for-in loop section head with correct scopes ([#1480](https://github.com/rollup/rollup/issues/1480))
1485* support `--no-interop` flag ([#1524](https://github.com/rollup/rollup/issues/1524))
1486
1487## 0.46.1
1488
1489* Remove `rollup.watch` from browser build ([#1530](https://github.com/rollup/rollup/issues/1530))
1490* Remove `source-map-support` dependency ([#1528](https://github.com/rollup/rollup/issues/1528))
1491
1492## 0.46.0
1493
1494* `options.format` is now required ([#1491](https://github.com/rollup/rollup/pull/1491))
1495* if `options.format` is `es6`, it will now throw an error (should be `es`) ([#1491](https://github.com/rollup/rollup/pull/1491))
1496* Add experimental `rollup.watch` method, replacing [rollup-watch](https://github.com/rollup/rollup-watch) ([#1491](https://github.com/rollup/rollup/pull/1491))
1497* Batch warnings together in CLI output ([#1491](https://github.com/rollup/rollup/pull/1491))
1498* Clear screen between rebuilds in `--watch` mode ([#1491](https://github.com/rollup/rollup/pull/1491))
1499* `onwarn` function's second argument is the default handler, allowing easier filtering without reimplementing any logic ([#1491](https://github.com/rollup/rollup/pull/1491))
1500* Prevent semi-colon removal after variable declaration that is for loop body ([#1275](https://github.com/rollup/rollup/issues/1275))
1501* Return `exports` for namespaced but non-extended IIFE bundles ([#1492](https://github.com/rollup/rollup/issues/1492))
1502* Fix scoping in switch statements ([#1498](https://github.com/rollup/rollup/pull/1498))
1503* Handle side-effects in tagged template expressions ([#1508](https://github.com/rollup/rollup/pull/1508))
1504* More descriptive error for missing options.format ([#1510](https://github.com/rollup/rollup/pull/1510))
1505* Refactor scope handling ([#1517](https://github.com/rollup/rollup/pull/1517))
1506* Handle failure of a config in multi-config build ([#1513](https://github.com/rollup/rollup/issues/1513))
1507
1508
1509## 0.45.2
1510
1511* Fix interop when import is a string ([#1486](https://github.com/rollup/rollup/issues/1486))
1512* Separate `resolvedIds` from `resolvedExternalIds` ([#1490](https://github.com/rollup/rollup/pull/1490))
1513* Add `--extend` flag to CLI ([#1482](https://github.com/rollup/rollup/pull/1482))
1514
1515## 0.45.1
1516
1517* Remove `weak` from `optionalDependencies` ([#1483](https://github.com/rollup/rollup/issues/1483))
1518
1519## 0.45.0
1520
1521* [BREAKING] `bundle.generate(...)` returns a Promise, so that `transformBundle` plugin hooks can be asynchronous ([#1474](https://github.com/rollup/rollup/issues/1474))
1522
1523## 0.44.0
1524
1525* [BREAKING] Don't extend existing globals, unless `options.extend` is true ([#827](https://github.com/rollup/rollup/issues/827))
1526* Fix handling of catch clause parameters ([#1462](https://github.com/rollup/rollup/issues/1462))
1527
1528## 0.43.1
1529
1530* Fix memory leak on incremental rebuilds ([#883](https://github.com/rollup/rollup/issues/883))
1531* Allow `this.warn` and `this.error` to accept a `{line, column}` object as an alternative to a character index ([#1265](https://github.com/rollup/rollup/issues/1265))
1532* Print more useful error if entry module is 'external' ([#1264](https://github.com/rollup/rollup/issues/1264))
1533* Catch errors in `bundle.generate` options ([#1463](https://github.com/rollup/rollup/pull/1463))
1534* Fix magic-string deprecation warning ([#1445](https://github.com/rollup/rollup/pull/1445))
1535
1536## 0.43.0
1537
1538* Allow config files to import JSON ([#1426](https://github.com/rollup/rollup/issues/1426))
1539* Allow undefined imports in interop block ([#1341](https://github.com/rollup/rollup/issues/1341))
1540* Add `process.env.ROLLUP_WATCH = 'true'` in watch mode ([#1429](https://github.com/rollup/rollup/issues/1429))
1541* Add `pureExternalModules` option ([#1352](https://github.com/rollup/rollup/issues/1352))
1542* Allow plugins to specify `options.entry` ([#1270](https://github.com/rollup/rollup/issues/1270))
1543* Update dependencies
1544
1545## 0.42.0
1546
1547* Deprecate `options.moduleId` in favour of `options.amd.id` ([#1365](https://github.com/rollup/rollup/pull/1365))
1548* Add `options.amd.define` option to specify name of AMD `define` function ([#1365](https://github.com/rollup/rollup/pull/1365))
1549* Fix incorrect class removal with `treeshake: false` ([#1375](https://github.com/rollup/rollup/pull/1375))
1550* Deconflict module exports imported as namespaces ([#1384](https://github.com/rollup/rollup/issues/1384))
1551* Handle bare self-imports ([#1274](https://github.com/rollup/rollup/issues/1274))
1552* Allow config file to export an array of multiple configs ([#1389](https://github.com/rollup/rollup/pull/1389))
1553* Handle exponentiation operator, and fail gracefully on unknown operators ([#1416](https://github.com/rollup/rollup/issues/1416))
1554* Add `watch` option ([#1424](https://github.com/rollup/rollup/pull/1424))
1555
1556## 0.41.6
1557
1558* Preserve `originalSourceMap` on incremental rebuilds for loaders with sourcemaps ([#1336](https://github.com/rollup/rollup/issues/1336))
1559
1560## 0.41.5
1561
1562* Wrap ternary consequent/alternate sequences in parens ([#1273](https://github.com/rollup/rollup/issues/1273))
1563* Fix erroneous warning on multiple `export * from` declarations with defaults ([#1278](https://github.com/rollup/rollup/issues/1278))
1564* Prevent variable conflicts with `treeshake: false` ([#1268](https://github.com/rollup/rollup/issues/1268))
1565* Allow missing `source` when collapsing sourcemaps ([#1254](https://github.com/rollup/rollup/issues/1254))
1566* Allow plugins to log with strings ([#1316](https://github.com/rollup/rollup/pull/1316))
1567
1568## 0.41.4
1569
1570* Fix cases of multiple `export * from 'external'` declarations ([#1252](https://github.com/rollup/rollup/issues/1252))
1571* Fix 'TODO' error message ([#1257](https://github.com/rollup/rollup/issues/1257))
1572
1573## 0.41.3
1574
1575* Don't treat `this.foo` as possible namespace ([#1258](https://github.com/rollup/rollup/issues/1258))
1576
1577## 0.41.2
1578
1579* Optimize `namespace['foo']` references ([#1240](https://github.com/rollup/rollup/pull/1240))
1580
1581## 0.41.1
1582
1583* Include `new` expressions where callee is a class with side-effects ([#980](https://github.com/rollup/rollup/issues/980) [#1233](https://github.com/rollup/rollup/issues/1233))
1584
1585## 0.41.0
1586
1587* Add `this.warn(...)` and `this.error(...)` methods to plugin `transform` hook contexts ([#1140](https://github.com/rollup/rollup/issues/1140))
1588* `throw` always considered to be a side effect ([#1227](https://github.com/rollup/rollup/pull/1227))
1589
1590## 0.40.2
1591
1592* Add `file` property to sourcemaps for bundles with plugins ([#986](https://github.com/rollup/rollup/issues/986))
1593* Don't require globals for empty imports ([#1217](https://github.com/rollup/rollup/issues/1217))
1594
1595## 0.40.1
1596
1597* Allow missing space between `export default` and declaration ([#1218](https://github.com/rollup/rollup/pull/1218))
1598
1599## 0.40.0
1600
1601* [BREAKING] Better, more consistent error logging ([#1212](https://github.com/rollup/rollup/pull/1212))
1602* Don't use colours and emojis for non-TTY stderr ([#1201](https://github.com/rollup/rollup/issues/1201))
1603
1604## 0.39.2
1605
1606* Prevent mutation of cached ASTs (fixes stack overflow with rollup-watch) ([#1205](https://github.com/rollup/rollup/pull/1205))
1607
1608## 0.39.1
1609
1610* Ignore `var` initialisers in dead branches ([#1198](https://github.com/rollup/rollup/issues/1198))
1611
1612## 0.39.0
1613
1614* [BREAKING] Warnings are objects, rather than strings ([#1194](https://github.com/rollup/rollup/issues/1194))
1615
1616## 0.38.3
1617
1618* More informative warning for implicit external dependencies ([#1051](https://github.com/rollup/rollup/issues/1051))
1619* Warn when creating browser bundle with external dependencies on Node built-ins ([#1051](https://github.com/rollup/rollup/issues/1051))
1620* Statically analyse LogicalExpression nodes, for better dead code removal ([#1061](https://github.com/rollup/rollup/issues/1061))
1621
1622## 0.38.2
1623
1624* Preserve `var` declarations in dead branches ([#997](https://github.com/rollup/rollup/issues/997))
1625* Warn if exporting a call expression that looks like a function declaration ([#1011](https://github.com/rollup/rollup/issues/1011))
1626* Wrap function expressions in parentheses if necessary ([#1011](https://github.com/rollup/rollup/issues/1011))
1627
1628## 0.38.1
1629
1630* Fix sourcemap comment removal ([#1104](https://github.com/rollup/rollup/issues/1104))
1631* Warn if empty bundle is generated ([#444](https://github.com/rollup/rollup/issues/444))
1632* Support ES2017 syntax ([#492](https://github.com/rollup/rollup/issues/492))
1633* Remove unused imports from external modules ([#595](https://github.com/rollup/rollup/issues/595))
1634* Remove unused function and class declarations inside function bodies ([#1108](https://github.com/rollup/rollup/issues/1108), [#1178](https://github.com/rollup/rollup/issues/1178))
1635* Deconflict function expression IDs ([#1176](https://github.com/rollup/rollup/issues/1176))
1636
1637## 0.38.0
1638
1639* [BREAKING] `export { foo as default }` creates live binding ([#1078](https://github.com/rollup/rollup/issues/1078))
1640* Prevent sourceMappingURL removal edge case ([#988](https://github.com/rollup/rollup/issues/988))
1641* Bind function expression IDs to the correct scope ([#1083](https://github.com/rollup/rollup/issues/1083))
1642* Correctly deshadow destructured parameters with assignments ([#1008](https://github.com/rollup/rollup/issues/1008))
1643
1644## 0.37.2
1645
1646* Remove unused `new` expressions without side-effects ([#179](https://github.com/rollup/rollup/issues/179))
1647* Only remove valid sourceMappingURL comments ([#1132](https://github.com/rollup/rollup/issues/1132))
1648* Ensure blocks containing activated `var` declarations are included in output ([#1113](https://github.com/rollup/rollup/issues/1113))
1649* Support plugin outros ([#1116](https://github.com/rollup/rollup/issues/1116))
1650
1651## 0.37.1
1652
1653* Follow symlinks ([#447](https://github.com/rollup/rollup/issues/447))
1654* Fix tree-shaking of recursive functions and other cases ([#1120](https://github.com/rollup/rollup/issues/1120), [#1142](https://github.com/rollup/rollup/issues/1142))
1655* Support module names that require quotes ([#582](https://github.com/rollup/rollup/issues/582), [#584](https://github.com/rollup/rollup/issues/584))
1656* Fix [#957](https://github.com/rollup/rollup/issues/957)
1657
1658## 0.37.0
1659
1660* [BREAKING] Default exports are not included in reified namespaces ([#1028](https://github.com/rollup/rollup/issues/1028))
1661* Parentheses do not defeat tree-shaking ([#1101](https://github.com/rollup/rollup/issues/1101), [#1128](https://github.com/rollup/rollup/issues/1128))
1662* More `legacy` fixes: do not create getters ([#1069](https://github.com/rollup/rollup/pull/1069)), do not include `__esModule` ([#1068](https://github.com/rollup/rollup/pull/1068)), quote reserved property names ([#1057](https://github.com/rollup/rollup/pull/1057))
1663* Fix missing namespace member warnings ([#1045](https://github.com/rollup/rollup/issues/1045))
1664* Fix TypeError in arrow function without braces returning a function ([#1062](https://github.com/rollup/rollup/pull/1062))
1665
1666## 0.36.4
1667
1668* Only depend on program-level call expressions ([#977](https://github.com/rollup/rollup/issues/977))
1669
1670## 0.36.3
1671
1672* Add `legacy` option for IE8 support ([#989](https://github.com/rollup/rollup/pull/989))
1673
1674## 0.36.2
1675
1676* Insert semicolons where necessary to fix broken code ([#1004](https://github.com/rollup/rollup/issues/1004))
1677* Include module ID and location when warning about top-level `this` ([#1012](https://github.com/rollup/rollup/pull/1012))
1678* More informative error for missing exports ([#1033](https://github.com/rollup/rollup/issues/1033))
1679* `options.moduleContext` for per-module context overrides ([#1023](https://github.com/rollup/rollup/pull/1023))
1680
1681## 0.36.1
1682
1683* Include naked block statements ([#981](https://github.com/rollup/rollup/issues/981))
1684* Correctly include falsy alternate statements in optimised if blocks ([#973](https://github.com/rollup/rollup/issues/973))
1685* Prevent omission of default exports that are only used by the exporting module ([#967](https://github.com/rollup/rollup/pull/967))
1686* Prevent warning on `auto` exports with ES output ([#966](https://github.com/rollup/rollup/pull/966))
1687
1688## 0.36.0
1689
1690* `export { foo as default }` no longer creates a live binding ([#860](https://github.com/rollup/rollup/issues/860))
1691
1692## 0.35.15
1693
1694* Warn on missing unused imports in deshadowing phase ([#928](https://github.com/rollup/rollup/issues/928))
1695* Always add a newline to the end of bundles ([#958](https://github.com/rollup/rollup/issues/958))
1696
1697## 0.35.14
1698
1699* Include all parent statements of expression with effects, up to function boundary ([#930](https://github.com/rollup/rollup/issues/930))
1700
1701## 0.35.13
1702
1703* Include superclasses when including their subclasses ([#932](https://github.com/rollup/rollup/issues/932))
1704
1705## 0.35.12
1706
1707* Add `interop: false` option to disable unwrapping of external imports ([#939](https://github.com/rollup/rollup/issues/939))
1708
1709## 0.35.11
1710
1711* Deconflict reified namespaces with other declarations ([#910](https://github.com/rollup/rollup/issues/910))
1712
1713## 0.35.10
1714
1715* Only remove EmptyStatement nodes directly inside blocks ([#913](https://github.com/rollup/rollup/issues/931))
1716
1717## 0.35.9
1718
1719* Support Node 0.12 ([#909](https://github.com/rollup/rollup/issues/909))
1720
1721## 0.35.8
1722
1723* Correctly deshadow re-assigned module functions ([#910](https://github.com/rollup/rollup/issues/910))
1724
1725## 0.35.7
1726
1727* Refactor `flushTime.js` ([#922](https://github.com/rollup/rollup/pull/922))
1728
1729## 0.35.6
1730
1731* Fix browser build
1732
1733## 0.35.5
1734
1735* Allow empty for loop heads ([#919](https://github.com/rollup/rollup/issues/919))
1736
1737## 0.35.4
1738
1739* Preserve effects in for-of and for-in loops ([#870](https://github.com/rollup/rollup/issues/870))
1740* Remove empty statements ([#918](https://github.com/rollup/rollup/pull/918))
1741
1742## 0.35.3
1743
1744* Render identifiers inside template literals
1745
1746## 0.35.2
1747
1748* Fix broken build caused by out of date locally installed dependencies
1749
1750## 0.35.1
1751
1752* Rewrite deconflicted class identifiers ([#915](https://github.com/rollup/rollup/pull/915))
1753* Include `dependencies` in `bundle.modules` objects ([#903](https://github.com/rollup/rollup/issues/903))
1754* Update to Acorn 4 ([#914](https://github.com/rollup/rollup/pull/914))
1755
1756## 0.35.0
1757
1758* Rewrite analysis/tree-shaking code ([#902](https://github.com/rollup/rollup/pull/902))
1759* Include conditional mutations of global objects ([#901](https://github.com/rollup/rollup/issues/901))
1760* Only reify namespaces if necessary ([#898](https://github.com/rollup/rollup/issues/898))
1761* Track mutations of aliased globals ([#893](https://github.com/rollup/rollup/issues/893))
1762* Include duplicated var declarations ([#716](https://github.com/rollup/rollup/issues/716))
1763
1764## 0.34.13
1765
1766* Pass `{ format }` through to `transformBundle` ([#867](https://github.com/rollup/rollup/issues/867))
1767
1768## 0.34.12
1769
1770* Fix `rollup --watch` ([#887](https://github.com/rollup/rollup/issues/887))
1771* Case-sensitive paths ([#862](https://github.com/rollup/rollup/issues/862))
1772
1773## 0.34.11
1774
1775* Prevent leaky state when `bundle` is reused ([#875](https://github.com/rollup/rollup/issues/875))
1776* Ensure `intro` appears before interop block ([#880](https://github.com/rollup/rollup/issues/880))
1777
1778## 0.34.10
1779
1780* Allow custom `options.context` to replace top-level `this` ([#851](https://github.com/rollup/rollup/issues/851))
1781* Fix `noConflict` when used via `rollup --config` ([#846](https://github.com/rollup/rollup/issues/846))
1782* Place `outro` block *after* export block ([#852](https://github.com/rollup/rollup/issues/852))
1783
1784## 0.34.9
1785
1786* Disable indentation by default, for faster bundle generation ([#812](https://github.com/rollup/rollup/pull/812))
1787* More helpful error on missing entry file ([#802](https://github.com/rollup/rollup/issues/802))
1788* Preserve comments before import declarations ([#815](https://github.com/rollup/rollup/pull/815))
1789
1790## 0.34.8
1791
1792* Wrap UMD factory function in parens to avoid lazy parsing ([#774](https://github.com/rollup/rollup/pull/774))
1793
1794## 0.34.7
1795
1796* Leave it up to resolveId to normalize the entry path ([#835](https://github.com/rollup/rollup/pull/835))
1797* Cache decoded mappings ([#834](https://github.com/rollup/rollup/pull/834))
1798
1799## 0.34.5
1800
1801* Fix circular export ([#813](https://github.com/rollup/rollup/issues/813))
1802
1803## 0.34.4
1804
1805* Module render performance tweak ([#823](https://github.com/rollup/rollup/pull/823))
1806
1807## 0.34.3
1808
1809* Avoid infinite recursion in `Bundle.sort()` ([#800](https://github.com/rollup/rollup/pull/800))
1810
1811## 0.34.2
1812
1813* resolveId calls are cached now to improve incremental build
1814* Fixed error message recursion in plugins
1815
1816## 0.34.1
1817
1818* Support `paths` config ([#754](https://github.com/rollup/rollup/issues/754))
1819* Allow `export *` from external module, internally
1820
1821## 0.34.0
1822
1823* Use resolved IDs for relative imports that are also external modules, to allow `options.globals` to work with them ([#763](https://github.com/rollup/rollup/issues/763))
1824* Ensure reassigned exports are declared in an ES bundle, and remove empty `exports.foo;` statements ([#755](https://github.com/rollup/rollup/issues/755))
1825* Add newline after sourcemap comment ([#756](https://github.com/rollup/rollup/issues/756))
1826
1827## 0.33.2
1828
1829* Add `bundle` as second argument to `ongenerate` and `onwrite` hooks ([#773](https://github.com/rollup/rollup/pull/773))
1830* Warn on top-level `this` ([#770](https://github.com/rollup/rollup/issues/770))
1831
1832## 0.33.1
1833
1834* Fix `--no-strict` option ([#751](https://github.com/rollup/rollup/pull/751))
1835* Fix Windows edge case with case-sensitive paths ([#760](https://github.com/rollup/rollup/pull/760))
1836
1837## 0.33.0
1838
1839* Downgrade missing transformer sourcemap to a warning, not an error, and print the name of the offending plugin if possible ([#746](https://github.com/rollup/rollup/issues/746))
1840* Warn if same name is re-exported from two modules ([#722](https://github.com/rollup/rollup/issues/722))
1841
1842## 0.32.4
1843
1844* Add `ongenerate` and `onwrite` plugin hooks ([#742](https://github.com/rollup/rollup/pull/742))
1845
1846## 0.32.3
1847
1848* Generated correct sourcemaps with reified namespaces ([#668](https://github.com/rollup/rollup/issues/668))
1849* Exclude plugin helper modules from sourcemaps ([#747](https://github.com/rollup/rollup/pull/747))
1850
1851## 0.32.2
1852
1853* Allow `--globals` to work with `--external` or `options.external` in whatever configuration ([#743](https://github.com/rollup/rollup/issues/743))
1854
1855## 0.32.1
1856
1857* Preserve side-effects to default exports that coincide with used named exports ([#733](https://github.com/rollup/rollup/issues/733))
1858* Support `rollup -c node:pkgname` ([#736](https://github.com/rollup/rollup/issues/736))
1859
1860## 0.32.0
1861
1862* Deprecate `es6` format in favour of `es` ([#468](https://github.com/rollup/rollup/issues/468))
1863* Add correct `jsnext:main` build ([#726](https://github.com/rollup/rollup/pull/726))
1864
1865## 0.31.2
1866
1867* Allow `load` plugins to provide sourcemap ([#715](https://github.com/rollup/rollup/pull/715))
1868* Allow `sourceMapFile` in config options ([#717](https://github.com/rollup/rollup/issues/717))
1869
1870## 0.31.1
1871
1872* Logging for errors emitted by `rollup-watch` ([#712](https://github.com/rollup/rollup/issues/712))
1873
1874## 0.31.0
1875
1876* Rewrite top-level `this` as `undefined` ([#707](https://github.com/rollup/rollup/pull/707))
1877* Pass `options.acorn` to Acorn ([#564](https://github.com/rollup/rollup/issues/564))
1878
1879## 0.30.0
1880
1881* Bundle CLI ([#700](https://github.com/rollup/rollup/issues/700))
1882* Ensure absolute paths are normalised ([#704](https://github.com/rollup/rollup/issues/704))
1883* Allow `rollup --watch` to work with targets
1884
1885## 0.29.1
1886
1887* Merge `target` options with main options ([#701](https://github.com/rollup/rollup/issues/701))
1888* Update magic-string ([#690](https://github.com/rollup/rollup/issues/690))
1889
1890## 0.29.0
1891
1892* `rollup --watch` ([#284](https://github.com/rollup/rollup/issues/284))
1893
1894## 0.28.0
1895
1896* Experimental support for incremental rebuilds ([#658](https://github.com/rollup/rollup/pull/658))
1897
1898## 0.27.1
1899
1900* Ensure names exported from a module are not replaced with reserved words ([#696](https://github.com/rollup/rollup/pull/696))
1901* Revert ([#692](https://github.com/rollup/rollup/pull/692)) – resolved IDs must be strings
1902
1903## 0.27.0
1904
1905* Use native promises instead of `es6-promise` ([#689](https://github.com/rollup/rollup/issues/689))
1906* Support multiple targets in config files ([#655](https://github.com/rollup/rollup/issues/655))
1907* Allow `resolveId` plugin functions to return non-strings ([#692](https://github.com/rollup/rollup/pull/692))
1908
1909## 0.26.7
1910
1911* Distinguish between default and namespace imports of external module ([#637](https://github.com/rollup/rollup/issues/637))
1912* Add `__esModule` property to named exports in AMD, CJS and UMD modes ([#650](https://github.com/rollup/rollup/issues/650))
1913
1914## 0.26.6
1915
1916* Deconflict named imports from external modules in ES bundles ([#659](https://github.com/rollup/rollup/issues/659))
1917* Support `options.preferConst` to generate `const` declarations for exports rather than `var` declarations ([#653](https://github.com/rollup/rollup/issues/653))
1918
1919## 0.26.5
1920
1921* Preserve `debugger` statements ([#664](https://github.com/rollup/rollup/issues/664))
1922* Allow `options.external` to be a function ([#522](https://github.com/rollup/rollup/issues/522))
1923
1924## 0.26.4
1925
1926* Prevent plugin-provided external IDs being normalised ([#630](https://github.com/rollup/rollup/issues/630), [#633](https://github.com/rollup/rollup/issues/633))
1927* Throw if module exports/re-exports the same name twice, or has multiple default exports ([#679](https://github.com/rollup/rollup/issues/679))
1928* Warn about `eval` security issue ([#675]((https://github.com/rollup/rollup/issues/675)))
1929
1930
1931## 0.26.3
1932
1933* Ensure reference is not incorrectly marked as a reassignment ([#648](https://github.com/rollup/rollup/issues/648))
1934
1935## 0.26.2
1936
1937* Sanity check output of `load` hook ([#607](https://github.com/rollup/rollup/issues/607))
1938* Correct scoping for ID class expressions ([#626](https://github.com/rollup/rollup/issues/626))
1939* Warn if named and default exports are used together in auto mode ([#587](https://github.com/rollup/rollup/issues/587))
1940* Allow variable initialisers to be rewritten if necessary ([#632](https://github.com/rollup/rollup/issues/632))
1941* Prevent double `var` with no-treeshake option ([#639](https://github.com/rollup/rollup/pull/639))
1942
1943## 0.26.1
1944
1945* Add `treeshake: false`/`--no-treeshake` option for debugging ([#505](https://github.com/rollup/rollup/issues/505))
1946* Update build process to use Bublé ([#620](https://github.com/rollup/rollup/pull/620))
1947
1948## 0.26.0
1949
1950* Add `noConflict`/`--no-conflict` option for UMD builds ([#580](https://github.com/rollup/rollup/pull/580))
1951* Normalise relative external paths ([#591](https://github.com/rollup/rollup/pull/591))
1952* Report files causing transform errors ([#609](https://github.com/rollup/rollup/pull/609))
1953* Handle sourcemap segments with a single member ([#619](https://github.com/rollup/rollup/pull/619))
1954* Update dependencies
1955
1956## 0.25.8
1957
1958* Unixize entry path ([#586](https://github.com/rollup/rollup/pull/586))
1959
1960## 0.25.7
1961
1962* Expand deshadowed shorthand properties ([#575](https://github.com/rollup/rollup/issues/575))
1963* Allow external files to be non-existent ([#532](https://github.com/rollup/rollup/issues/532))
1964
1965## 0.25.6
1966
1967* Fix a regression introduced by #566 ([#569](https://github.com/rollup/rollup/issues/569))
1968* Prune dead conditional expressions more carefully ([#567](https://github.com/rollup/rollup/issues/567))
1969
1970## 0.25.5
1971
1972* Make sure shorthand destructuring assignments don't break ([#528](https://github.com/rollup/rollup/issues/528))
1973* Allow 'exports' key ([#542](https://github.com/rollup/rollup/issues/542))
1974* Ensure `foo. bar` where `foo` is a namespace import is rewritten correctly ([#566](https://github.com/rollup/rollup/issues/566))
1975* Fix an edge case for exported globals (e.g. `export { document }`) ([#562](https://github.com/rollup/rollup/issues/562))
1976
1977## 0.25.4
1978
1979* Fix misnamed exports of default imports in ES bundles ([#513](https://github.com/rollup/rollup/issues/513))
1980* CLI: warn on missing config ([#515](https://github.com/rollup/rollup/pull/515))
1981* Detect side-effects in non-top-level member expression assignment ([#476](https://github.com/rollup/rollup/issues/476))
1982* Don't remove computed property class keys ([#504](https://github.com/rollup/rollup/issues/504))
1983* Augment existing global object rather than replacing ([#493](https://github.com/rollup/rollup/issues/493))
1984* Don't fail on `export {}`, warn instead ([#486](https://github.com/rollup/rollup/issues/486))
1985
1986## 0.25.3
1987
1988* Handle non-objects and `null` in `_interopDefault` ([#474](https://github.com/rollup/rollup/issues/474))
1989
1990## 0.25.2
1991
1992* Skip dead branches of a conditional expression (#[465](https://github.com/rollup/rollup/pull/465))
1993* Allow globals to be exported ([#472](https://github.com/rollup/rollup/pull/472))
1994* Ensure reassigned exports are exported ([#484](https://github.com/rollup/rollup/issues/484))
1995
1996## 0.25.1
1997
1998* Throw error if namespace is called ([#446](https://github.com/rollup/rollup/issues/446))
1999* Prevent shadowing bug in ES6 output ([#441](https://github.com/rollup/rollup/pull/441))
2000* Prevent `var exports.foo` ([#426](https://github.com/rollup/rollup/issues/426))
2001* Prevent double export of aliased symbols ([#438](https://github.com/rollup/rollup/issues/438))
2002* Provide more informative error if Rollup is used in-browser without appropriate `resolveId`/`load` hooks ([#275](https://github.com/rollup/rollup/issues/275))
2003* Use `_interopDefault` function to DRY out code with many external dependencies, in CommonJS output ([#458](https://github.com/rollup/rollup/pull/458))
2004
2005## 0.25.0
2006
2007* **breaking** Module order is determined according to spec, rather than in a way designed to prevent runtime errors. Rollup will warn if it detects runtime errors are likely ([#435](https://github.com/rollup/rollup/issues/435))
2008* Prevent overly aggressive tree-shaking with complex call expressions ([#440](https://github.com/rollup/rollup/issues/440))
2009
2010## 0.24.1
2011
2012* Handle calls to default exports other that are not function expressions or references to function declarations ([#421](https://github.com/rollup/rollup/issues/421))
2013* Ensure namespace blocks are created for chained imports ([#430](https://github.com/rollup/rollup/issues/430))
2014* Include references in computed property keys ([#434](https://github.com/rollup/rollup/issues/434))
2015* Use CLI `--external` option correctly ([#417](https://github.com/rollup/rollup/pull/417))
2016* Allow relative imports to be treated as external, if absolute paths are provided in `options.external` ([#410](https://github.com/rollup/rollup/issues/410))
2017* Make IIFE output adhere to Crockford style ([#415](https://github.com/rollup/rollup/pull/415))
2018
2019## 0.24.0
2020
2021* No longer attempts to resolve IDs in `options.external` ([#407](https://github.com/rollup/rollup/issues/407))
2022* Fix broken sourcemap resolution in cases where some modules are transformed and others aren't ([#404](https://github.com/rollup/rollup/issues/404))
2023
2024## 0.23.2
2025
2026* Ensure `dest` or `sourceMapFile` is resolved against CWD for purposes of sourcemap generation ([#344](https://github.com/rollup/rollup/issues/344))
2027* Support `banner`, `footer`, `intro` and `outro` options via CLI ([#330](https://github.com/rollup/rollup/issues/330))
2028* Allow `options.global` to be a function rather than an object, and warn on missing names ([#293](https://github.com/rollup/rollup/issues/293))
2029* Ensure side-effects are captured in cyclical call expressions ([#397](https://github.com/rollup/rollup/issues/397))
2030* Fix parse error with body-less arrow function expressions ([#403](https://github.com/rollup/rollup/issues/403))
2031
2032## 0.23.1
2033
2034* Reinstate missing fix from ([#392](https://github.com/rollup/rollup/pull/392))
2035
2036## 0.23.0
2037
2038* Add `bundleTransform` plugin hook and option ([#387](https://github.com/rollup/rollup/pull/387))
2039* Correctly store names in sourcemaps, regardless of transformers
2040* Add `--environment` option to CLI ([#388](https://github.com/rollup/rollup/pull/388))
2041* Handle destructuring in exports ([#374](https://github.com/rollup/rollup/issues/374))
2042* Fix UMD global exports bug introduced in 0.22.1 ([#392](https://github.com/rollup/rollup/pull/392))
2043
2044## 0.22.2
2045
2046* Prevent lost `var` keywords ([#390](https://github.com/rollup/rollup/issues/390))
2047
2048## 0.22.1
2049
2050* Update expected option keys ([#379](https://github.com/rollup/rollup/issues/379))
2051* Handle transformers that return stringified sourcemaps ([#377](https://github.com/rollup/rollup/issues/377))
2052* Automatically create missing namespaces if `moduleName` contains dots ([#378](https://github.com/rollup/rollup/issues/378))
2053* Ignore external dependency warnings coming from config file ([#333](https://github.com/rollup/rollup/issues/333))
2054* Update to latest magic-string for performance boost
2055
2056## 0.22.0
2057
2058* Duplicate warnings are squelched ([#362](https://github.com/rollup/rollup/issues/362))
2059* Plugins can manipulate or override the `options` object ([#371](https://github.com/rollup/rollup/pull/371))
2060
2061## 0.21.3
2062
2063* Validate option keys ([#348](https://github.com/rollup/rollup/pull/348))
2064* Allow namespaces imports to sit alongside named imports ([#355](https://github.com/rollup/rollup/issues/355))
2065* Count references inside destructured objects ([#364](https://github.com/rollup/rollup/issues/364))
2066* Preserve top-level `delete` statements ([#352](https://github.com/rollup/rollup/issues/352))
2067
2068## 0.21.2
2069
2070* Missing relative imports are an error, not a warning ([#321](https://github.com/rollup/rollup/issues/321))
2071* Fixed incorrectly renamed default exports in ES6 bundles ([#339](https://github.com/rollup/rollup/issues/339))
2072* Fixed infinite recursion bug ([#341](https://github.com/rollup/rollup/issues/341))
2073
2074## 0.21.1
2075
2076* Remove `aggressive: true` (was too aggressive) ([#309](https://github.com/rollup/rollup/pull/309))
2077* Handle top-level block statements ([#326](https://github.com/rollup/rollup/issues/326))
2078* Optimise namespaces with default exports ([#314](https://github.com/rollup/rollup/issues/314))
2079
2080## 0.21.0
2081
2082* Only include statements whose side-effects are relevant (i.e. contribute to exports or affect global state) ([#253](https://github.com/rollup/rollup/pull/253)) ([#253](https://github.com/rollup/rollup/pull/253))
2083* Exclude dead branches from analysis and inclusion ([#249](https://github.com/rollup/rollup/pull/249))
2084* Add `aggressive: true` option to eliminate all side-effects outside entry module
2085* More informative error when re-exporting non-existent binding ([#274](https://github.com/rollup/rollup/issues/274))
2086* Fix infinite recursion bug ([#291](https://github.com/rollup/rollup/issues/291))
2087* Log errors when using `rollup --config` ([#288](https://github.com/rollup/rollup/pull/288))
2088* Return rejected promises on startup instead of throwing error, if options are invalid ([#303](https://github.com/rollup/rollup/pull/303))
2089
2090## 0.20.5
2091
2092* Ensure re-exports don't create a local binding ([#270](https://github.com/rollup/rollup/pull/270))
2093
2094## 0.20.4
2095
2096* Check file exists at resolve time, to allow filenames with non-extension dots in them ([#250](https://github.com/rollup/rollup/pull/250))
2097* Import `Promise` where used, for Node 0.10 support ([#254](https://github.com/rollup/rollup/issues/254))
2098* Allow asynchronous transformer plugins ([#260](https://github.com/rollup/rollup/issues/260))
2099* Don't assume re-exported bindings are globals when deconflicting ([#267](https://github.com/rollup/rollup/issues/267))
2100
2101
2102## 0.20.3
2103
2104* Fix bug where multiple `export *` declarations caused error ([#244](https://github.com/rollup/rollup/pulls/244))
2105* Missing namespace exports are a warning, not an error ([#244](https://github.com/rollup/rollup/pulls/244))
2106* Plugins can provide `banner` and `footer` options (string, or function that returns a string) ([#235](https://github.com/rollup/rollup/issues/235))
2107* Warn on encountering `eval` ([#186](https://github.com/rollup/rollup/issues/186))
2108
2109## 0.20.2
2110
2111* Handle errors in build config file
2112* More robust deconflicting, in cases where e.g. `foo$1` already exists
2113* Use Rollup CLI for own build process
2114
2115## 0.20.1
2116
2117* Support `--config` file to enable plugins with CLI ([#226](https://github.com/rollup/rollup/pulls/226))
2118* Prevent `default` being used as variable name ([#215](https://github.com/rollup/rollup/issues/215))
2119* Update deps
2120
2121## 0.20.0
2122
2123* Support for [plugins](https://github.com/rollup/rollup/wiki/Plugins) ([#207](https://github.com/rollup/rollup/pulls/207))
2124* BREAKING – `options.transform`, `options.load`, `options.resolveId`, `options.resolveExternal` and `options.external` are no longer supported, and should be handled by plugins. [More info](https://github.com/rollup/rollup/wiki/Plugins)
2125* BREAKING – the .js extension is only added if it looks like there's no extension, allowing e.g. `import data from 'data.json'` (with the appropriate transformer). For safety, always include the file extension – import `./foo.js`, not `./foo`
2126
2127## 0.19.2
2128
2129* Fix exporting namespaces to include all of their exports ([#204](https://github.com/rollup/rollup/issues/204))
2130* Namespace exotic objects are frozen to ensure that its properties cannot be modified, reconfigured, redefined or deleted ([#203](https://github.com/rollup/rollup/pulls/203))
2131* Fix `ReferenceError: Promise is not defined` in node v0.10 ([#189](https://github.com/rollup/rollup/issues/189))
2132
2133## 0.19.1
2134
2135* Fix `module.basename()` when used with custom `resolveId` function
2136* Use [rollup-babel](https://github.com/rollup/rollup-babel) to build self
2137* Exposed the version string through the API: `require( 'rollup' ).VERSION`
2138
2139## 0.19.0
2140
2141* **breaking** The `transform` option is no longer passed through to custom loaders. Loaders should only concern themselves with providing source code; transformation will *always* take place
2142* `options.transform` functions can return a string, or a `{code, map, ast}` object. Where possible, sourcemap chains will be flattened ([#175](https://github.com/rollup/rollup/pull/175))
2143* `options.resolveId`, `options.resolveExternal` and `options.load` can each be a function or an array of functions. If an array, the first non-null/undefined return value is used. In both cases, failed resolution/loading will fall back to the defaults, unless an error is thrown. ([#174](https://github.com/rollup/rollup/pull/174))
2144* New `intro` and `outro` options – similar to `banner` and `footer` except inserted *inside* any format-specific wrapper
2145* Multiple var declarations in an export block (e.g. `export let a = 1, b = 2`) are split up to facilitate tree-shaking ([#171](https://github.com/rollup/rollup/issues/171))
2146* More informative error when using a missing namespace property ([#169](https://github.com/rollup/rollup/pull/169))
2147* Update various dependencies
2148
2149## 0.18.5
2150
2151* Allow namespaces to be assigned to variables ([#168](https://github.com/rollup/rollup/issues/168))
2152* Promote `chalk` and `source-map-support` to `dependencies`, as they're used by the CLI ([#167](https://github.com/rollup/rollup/pull/167))
2153
2154## 0.18.4
2155
2156* Make external modules configurable (i.e. `external.config.foo = 'bar'`) without erroring
2157
2158## 0.18.3
2159
2160* Crop indent exclusion ranges to exclude enclosing quotes ([#166](https://github.com/rollup/rollup/issues/166))
2161
2162## 0.18.2
2163
2164* Include definitions of namespace members that are exported as defaults
2165
2166## 0.18.1
2167
2168* Include `acorn.parse` in bundle, remove `sander` from dependencies, simplify build
2169
2170## 0.18.0
2171
2172* Internal rewrite
2173* Reinstate statically-analysable namespace imports
2174* Avoid using getters in namespace blocks where possible ([#144](https://github.com/rollup/rollup/issues/144))
2175* Track variable aliases ([#96](https://github.com/rollup/rollup/issues/96))
2176* Prevent multiline strings being indented ([#164](https://github.com/rollup/rollup/issues/164))
2177
2178## 0.17.4
2179
2180* Allow imports from hidden directories (replay of [#133](https://github.com/rollup/rollup/issues/133))
2181
2182## 0.17.3
2183
2184* Handle parenthesised default exports ([#136](https://github.com/rollup/rollup/issues/136))
2185
2186## 0.17.2
2187
2188* Allow use of scoped npm packages ([#131](https://github.com/rollup/rollup/issues/131))
2189
2190## 0.17.1
2191
2192* Allow namespaces to be passed to a function ([#149](https://github.com/rollup/rollup/issues/149))
2193
2194## 0.17.0
2195
2196* Roll back to 0.15.0 and reapply subsequent fixes pending resolution of ([#132](https://github.com/rollup/rollup/issues/132)) and related issues
2197
2198## 0.16.4
2199
2200* Fix import paths with `.` ([#133](https://github.com/rollup/rollup/issues/133))
2201* Prevent sourceMappingURL confusion leading to broken sourcemap
2202* Add code coverage reporting [#130](https://github.com/rollup/rollup/pull/130))
2203* Add `modules` property to user-facing `bundle` – an array with `{id}` objects ([#128](https://github.com/rollup/rollup/issues/128))
2204
2205## 0.16.3
2206
2207* Prevent adjacent blocks of multiple var declarations causing magic-string failure ([#105](https://github.com/rollup/rollup/issues/105))
2208
2209## 0.16.2
2210
2211* Top-level function calls and assignments to globals are treated as side-effects, and always included
2212* Import files from subdirectories of external packages, e.g. `import mod from 'foo/sub/mod'` ([#126](https://github.com/rollup/rollup/issues/126))
2213
2214## 0.16.1
2215
2216* Handle assignment patterns, and destructured/rest parameters, when analysing scopes
2217* Fix bug preventing project from self-building (make base `Identifier` class markable)
2218
2219## 0.16.0
2220
2221* Internal refactoring ([#99](https://github.com/rollup/rollup/pull/99))
2222* Optimisation for statically-analysable namespace imports ([#99](https://github.com/rollup/rollup/pull/99))
2223* Windows support (theoretically!) ([#117](https://github.com/rollup/rollup/pull/117) / [#119](https://github.com/rollup/rollup/pull/119))
2224
2225## 0.15.0
2226
2227* Load all modules specified by `import` statements, and do tree-shaking synchronously once loading is complete. This results in simpler and faster code, and enables future improvements ([#97](https://github.com/rollup/rollup/pull/97))
2228* Only rewrite `foo` as `exports.foo` when it makes sense to ([#92](https://github.com/rollup/rollup/issues/92))
2229* Fix bug with shadowed variables that are eventually exported ([#91](https://github.com/rollup/rollup/issues/91))
2230* Exclude unused function declarations that happen to modify a used name ([#90](https://github.com/rollup/rollup/pull/90))
2231* Simplify internal `Scope` model – scopes always attach to blocks, never function expressions/declarations
2232
2233## 0.14.1
2234
2235* `export { name } from './other'` does not create a local binding ([#16](https://github.com/rollup/rollup/issues/16))
2236* A single binding can be exported under multiple names ([#18](https://github.com/rollup/rollup/issues/18))
2237* `useStrict` option exposed to CLI as `--strict`/`--no-strict` ([#81](https://github.com/rollup/rollup/issues/81))
2238* Neater exports from ES6 bundles
2239
2240## 0.14.0
2241
2242* Internal refactoring
2243* Correctly deconflict generated default export names ([#72](https://github.com/rollup/rollup/issues/72))
2244* Handle `export { x } from 'y'` declarations ([#74](https://github.com/rollup/rollup/issues/74))
2245* Dedupe named imports from external modules in ES6 bundles ([#77](https://github.com/rollup/rollup/issues/77))
2246
2247## 0.13.0
2248
2249* Support `banner` and `footer` options ([#66](https://github.com/rollup/rollup/pull/66))
2250* Remove pre-existing sourcemap comments ([#66](https://github.com/rollup/rollup/pull/66))
2251* Deconflict external imports ([#66](https://github.com/rollup/rollup/pull/66))
2252* Use existing AST, if provided ([#66](https://github.com/rollup/rollup/pull/66))
2253* Rename internal namespace exports as appropriate ([#66](https://github.com/rollup/rollup/pull/66))
2254* Remove uninitialised var declarations that get exported ([#66](https://github.com/rollup/rollup/pull/66))
2255* Rename variables named `exports` to avoid conflicts ([#66](https://github.com/rollup/rollup/pull/66))
2256
2257## 0.12.1
2258
2259* Don't attempt to mark statements belonging to external modules ([#68](https://github.com/rollup/rollup/issues/68))
2260* Correctly deshadow variables that conflict with imports ([#68](https://github.com/rollup/rollup/issues/68))
2261
2262## 0.12.0
2263
2264* Internal re-architecting, resulting in more efficient bundling with reduced memory usage
2265* Shorthand properties are expanded if necessary ([#61](https://github.com/rollup/rollup/issues/61))
2266* Fixed various bugs with bundle external dependencies, particularly when generating ES6 bundles ([#59](https://github.com/rollup/rollup/issues/59))
2267* Add `--globals` option to CLI ([#60](https://github.com/rollup/rollup/pull/60))
2268* Allow imports of external modules for side-effects ([#55](https://github.com/rollup/rollup/pull/55))
2269* Prevent Rollup hanging on non-existent external module ([#54](https://github.com/rollup/rollup/pull/54))
2270
2271## 0.11.4
2272
2273* Side-effect preservation applies to internal default exports ([#43](https://github.com/rollup/rollup/issues/43))
2274
2275## 0.11.3
2276
2277* Class methods are not incorrectly renamed ([#42](https://github.com/rollup/rollup/issues/42))
2278* External modules are assigned names before canonical names are determined ([#42](https://github.com/rollup/rollup/issues/42))
2279
2280## 0.11.2
2281
2282* Correctly handle computed properties (e.g. `foo[bar]`) when discovering dependencies ([#47](https://github.com/rollup/rollup/pull/47))
2283
2284## 0.11.1
2285
2286* Support for `export * from '..'` ([#46](https://github.com/rollup/rollup/pull/46))
2287
2288## 0.11.0
2289
2290* Experimental browser-friendly build (`dist/rollup.browser.js`) ([#25](https://github.com/rollup/rollup/issues/25))
2291* Internal re-architecting to make discovery process simpler and more performant
2292* Preservation of side-effects that happen in a separate module to the affected definition ([#39](https://github.com/rollup/rollup/issues/39))
2293
2294## 0.10.0
2295
2296* Better sorting algorithm – sorting happens at the module level, rather than the statement level. This avoids certain edge cases
2297* IIFEs are ignored for the purposes of distinguishing between 'strong' and 'weak' dependencies
2298* Empty `var` declarations for exported bindings are omitted
2299
2300## 0.9.1
2301
2302* Much faster statement insertion (fixes major 0.9.0 performance regression)
2303
2304## 0.9.0
2305
2306* BREAKING - `resolvePath` is now `resolveId`. The returned `id` (which by default is a filepath) is passed to the `load` function, which can optionally be overridden, and which is applied to all modules including the entry module. This allows custom resolver and loading logic for integration with third party systems (e.g. JSPM) or, eventually, in-browser usage ([#30](https://github.com/rollup/rollup/issues/30))
2307* A statement cannot appear after later statements from the same bundle ([#34](https://github.com/rollup/rollup/issues/34))
2308* Tricky cyclical dependencies are handled ([#36](https://github.com/rollup/rollup/issues/36))
2309* `sourcemap` option is used by CLI (was omitted previously)
2310
2311## 0.8.3
2312
2313* Correctly rename functions that have arguments with the same name ([#32](https://github.com/rollup/rollup/issues/32))
2314* Ensure unused default exports are given a legal name ([#33](https://github.com/rollup/rollup/issues/33))
2315
2316## 0.8.2
2317
2318* Support `moduleId` and `moduleName` via CLI ([#24](https://github.com/rollup/rollup/issues/24))
2319
2320## 0.8.1
2321
2322* Anonymous functions that are exported as default are converted to named function declarations for correct hoisting, rather than being bound to functions ([#29](https://github.com/rollup/rollup/issues/29))
2323* Automatically-generated default export names are deconflicted with local definitions ([#29](https://github.com/rollup/rollup/issues/29))
2324
2325## 0.8.0
2326
2327* Top-level variable declarations with multiple declarators are split up, to avoid unnecessary code importing and incorrectly-ordered statements ([#26](https://github.com/rollup/rollup/issues/26))
2328* `this` at the top level is `undefined` ([#28](https://github.com/rollup/rollup/issues/28))
2329
2330## 0.7.8
2331
2332* Avoid using `path.parse` - unsupported in node 0.10
2333
2334## 0.7.7
2335
2336* Promise `source-map-support` from `devDependencies` to `dependencies` ([#23](https://github.com/rollup/rollup/issues/23))
2337
2338## 0.7.6
2339
2340* Better placement of `export default` statements ([#21](https://github.com/rollup/rollup/issues/21))
2341* Prevent function calls and property assignments from being treated as rebinding for sake of unbound default exports
2342* Add `--external foo,bar,baz` option to CLI (equivalent to `external: ['foo', 'bar', 'baz']`)
2343* Add CLI tests
2344
2345## 0.7.5
2346
2347* Prevent accidental conflicts with the global namespace ([#20](https://github.com/rollup/rollup/issues/20))
2348
2349## 0.7.4
2350
2351* More precise statement re-ordering to satisfy `export default` constraint (fixes bug introduced in 0.7.3)
2352
2353## 0.7.3
2354
2355* Default exports are not bound. To enable this, statements within a module are sorted to retain their original order ([#15](https://github.com/rollup/rollup/issues/15))
2356* Better positioning of comments ([#14](https://github.com/rollup/rollup/issues/14))
2357* Various fixes to get Travis-CI rigged up
2358
2359## 0.7.2
2360
2361* Fix sourcemap paths on Windows ([#6](https://github.com/rollup/rollup/pull/6))
2362
2363## 0.7.1
2364
2365* Named functions can be used as default exports from a bundle
2366* Method calls are assumed to mutate the owner (i.e. `foo.bar()` mutates `foo`) ([#13](https://github.com/rollup/rollup/issues/13))
2367* `options.indent` can be used to control indentation of resulting bundle. `options.true` (default) means 'auto', `options.false` means empty string. Alternatively specify whitespace e.g. `' '` or `'\t'` ([#5](https://github.com/rollup/rollup/issues/5))
2368
2369## 0.7.0
2370
2371* Ensure statements are always separated by a newline ([#9](https://github.com/rollup/rollup/pull/9))
2372* Use CommonJS `exports` correctly (UMD exports)
2373* Throw error if `moduleName` is required but missing (UMD exports)
2374* Attach IIFE global to `this` rather than `window`
2375* Allow names inside bundle to the the names of `Object.prototype` properties ([#12](https://github.com/rollup/rollup/pull/12))
2376* Keep exports live ([#11](https://github.com/rollup/rollup/pull/11))
2377
2378## 0.6.5
2379
2380* Add sourceMappingURL comment to code, as appropriate
2381* Higher resolution sourcemaps
2382
2383## 0.6.4
2384
2385* Fix CJS bundling with default export
2386
2387## 0.6.3
2388
2389* Fix exports and external module imports with some output formats
2390* Fix endless cycle bug on Windows ([#3](https://github.com/rollup/rollup/pull/3)) - thanks @Bobris
2391
2392## 0.6.2
2393
2394* Permit assignments to properties of imported bindings
2395
2396## 0.6.1
2397
2398* Support for basic transformers
2399
2400## 0.6.0
2401
2402* BREAKING - `rollup.rollup` and `bundle.write` both take a single options argument
2403* BREAKING - external modules must be declared upfront with `options.external: [...]`
2404* Non-relative module paths will be resolved by looking for `jsnext:main` fields in the appropriate `package.json` files. This behaviour can be overridden by passing an alternative `resolveExternal` function
2405* Fix sourcemap options
2406* Include CLI files in npm package (duh)
2407
2408## 0.5.0
2409
2410* Command line interface
2411* Sourcemap generation
2412* Correct behaviour with `export { x as y } from 'z'`
2413
2414## 0.4.1
2415
2416* More import name deconflicting
2417
2418## 0.4.0
2419
2420* Self-hosting! `rollup.rollup` now rolls up rollup
2421* Fix bug with comments inside a statement later being appended to it
2422* Prevent shadowing of external modules
2423* Rewrite computed property identifiers where necessary
2424* Preserve original statement order where possible
2425* Internal refactoring
2426
2427## 0.3.1
2428
2429* Saner deconflicting
2430* Rename namespace imports from external modules correctly
2431
2432## 0.3.0
2433
2434* Basic functionality present, mostly spec-compliant
2435
2436## 0.2.1
2437
2438* Include dist files in npm package (duh)
2439
2440## 0.2.0
2441
2442* First release capable of doing anything useful
2443* Still lots of basic functionality missing
2444
2445## 0.1.0
2446
2447* Initial experiment