UNPKG

18.2 kBMarkdownView Raw
1# rollup changelog
2
3## 0.21.2
4
5* Missing relative imports are an error, not a warning ([#321](https://github.com/rollup/rollup/issues/321))
6* Fixed incorrectly renamed default exports in ES6 bundles ([#339](https://github.com/rollup/rollup/issues/339))
7* Fixed infinite recursion bug ([#341](https://github.com/rollup/rollup/issues/341))
8
9## 0.21.1
10
11* Remove `aggressive: true` (was too aggressive) ([#309](https://github.com/rollup/rollup/pull/309))
12* Handle top-level block statements ([#326](https://github.com/rollup/rollup/issues/326))
13* Optimise namespaces with default exports ([#314](https://github.com/rollup/rollup/issues/314))
14
15## 0.21.0
16
17* 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))
18* Exclude dead branches from analysis and inclusion ([#249](https://github.com/rollup/rollup/pull/249))
19* Add `aggressive: true` option to eliminate all side-effects outside entry module
20* More informative error when re-exporting non-existent binding ([#274](https://github.com/rollup/rollup/issues/274))
21* Fix infinite recursion bug ([#291](https://github.com/rollup/rollup/issues/291))
22* Log errors when using `rollup --config` ([#288](https://github.com/rollup/rollup/pull/288))
23* Return rejected promises on startup instead of throwing error, if options are invalid ([#303](https://github.com/rollup/rollup/pull/303))
24
25## 0.20.5
26
27* Ensure re-exports don't create a local binding ([#270](https://github.com/rollup/rollup/pull/270))
28
29## 0.20.4
30
31* Check file exists at resolve time, to allow filenames with non-extension dots in them ([#250](https://github.com/rollup/rollup/pull/250))
32* Import `Promise` where used, for Node 0.10 support ([#254](https://github.com/rollup/rollup/issues/254))
33* Allow asynchronous transformer plugins ([#260](https://github.com/rollup/rollup/issues/260))
34* Don't assume re-exported bindings are globals when deconflicting ([#267](https://github.com/rollup/rollup/issues/267))
35
36
37## 0.20.3
38
39* Fix bug where multiple `export *` declarations caused error ([#244](https://github.com/rollup/rollup/pulls/244))
40* Missing namespace exports are a warning, not an error ([#244](https://github.com/rollup/rollup/pulls/244))
41* Plugins can provide `banner` and `footer` options (string, or function that returns a string) ([#235](https://github.com/rollup/rollup/issues/235))
42* Warn on encountering `eval` ([#186](https://github.com/rollup/rollup/issues/186))
43
44## 0.20.2
45
46* Handle errors in build config file
47* More robust deconflicting, in cases where e.g. `foo$1` already exists
48* Use Rollup CLI for own build process
49
50## 0.20.1
51
52* Support `--config` file to enable plugins with CLI ([#226](https://github.com/rollup/rollup/pulls/226))
53* Prevent `default` being used as variable name ([#215](https://github.com/rollup/rollup/issues/215))
54* Update deps
55
56## 0.20.0
57
58* Support for [plugins](https://github.com/rollup/rollup/wiki/Plugins) ([#207](https://github.com/rollup/rollup/pulls/207))
59* 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)
60* 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`
61
62## 0.19.2
63
64* Fix exporting namespaces to include all of their exports ([#204](https://github.com/rollup/rollup/issues/204))
65* 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))
66* Fix `ReferenceError: Promise is not defined` in node v0.10 ([#189](https://github.com/rollup/rollup/issues/189))
67
68## 0.19.1
69
70* Fix `module.basename()` when used with custom `resolveId` function
71* Use [rollup-babel](https://github.com/rollup/rollup-babel) to build self
72* Exposed the version string through the API: `require( 'rollup' ).VERSION`
73
74## 0.19.0
75
76* **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
77* `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))
78* `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))
79* New `intro` and `outro` options – similar to `banner` and `footer` except inserted *inside* any format-specific wrapper
80* 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))
81* More informative error when using a missing namespace property ([#169](https://github.com/rollup/rollup/pull/169))
82* Update various dependencies
83
84## 0.18.5
85
86* Allow namespaces to be assigned to variables ([#168](https://github.com/rollup/rollup/issues/168))
87* Promote `chalk` and `source-map-support` to `dependencies`, as they're used by the CLI ([#167](https://github.com/rollup/rollup/pull/167))
88
89## 0.18.4
90
91* Make external modules configurable (i.e. `external.config.foo = 'bar'`) without erroring
92
93## 0.18.3
94
95* Crop indent exclusion ranges to exclude enclosing quotes ([#166](https://github.com/rollup/rollup/issues/166))
96
97## 0.18.2
98
99* Include definitions of namespace members that are exported as defaults
100
101## 0.18.1
102
103* Include `acorn.parse` in bundle, remove `sander` from dependencies, simplify build
104
105## 0.18.0
106
107* Internal rewrite
108* Reinstate statically-analysable namespace imports
109* Avoid using getters in namespace blocks where possible ([#144](https://github.com/rollup/rollup/issues/144))
110* Track variable aliases ([#96](https://github.com/rollup/rollup/issues/96))
111* Prevent multiline strings being indented ([#164](https://github.com/rollup/rollup/issues/164))
112
113## 0.17.4
114
115* Allow imports from hidden directories (replay of [#133](https://github.com/rollup/rollup/issues/133))
116
117## 0.17.3
118
119* Handle parenthesised default exports ([#136](https://github.com/rollup/rollup/issues/136))
120
121## 0.17.2
122
123* Allow use of scoped npm packages ([#131](https://github.com/rollup/rollup/issues/131))
124
125## 0.17.1
126
127* Allow namespaces to be passed to a function ([#149](https://github.com/rollup/rollup/issues/149))
128
129## 0.17.0
130
131* Roll back to 0.15.0 and reapply subsequent fixes pending resolution of ([#132](https://github.com/rollup/rollup/issues/132)) and related issues
132
133## 0.16.4
134
135* Fix import paths with `.` ([#133](https://github.com/rollup/rollup/issues/133))
136* Prevent sourceMappingURL confusion leading to broken sourcemap
137* Add code coverage reporting [#130](https://github.com/rollup/rollup/pull/130))
138* Add `modules` property to user-facing `bundle` – an array with `{id}` objects ([#128](https://github.com/rollup/rollup/issues/128))
139
140## 0.16.3
141
142* Prevent adjacent blocks of multiple var declarations causing magic-string failure ([#105](https://github.com/rollup/rollup/issues/105))
143
144## 0.16.2
145
146* Top-level function calls and assignments to globals are treated as side-effects, and always included
147* Import files from subdirectories of external packages, e.g. `import mod from 'foo/sub/mod'` ([#126](https://github.com/rollup/rollup/issues/126))
148
149## 0.16.1
150
151* Handle assignment patterns, and destructured/rest parameters, when analysing scopes
152* Fix bug preventing project from self-building (make base `Identifier` class markable)
153
154## 0.16.0
155
156* Internal refactoring ([#99](https://github.com/rollup/rollup/pull/99))
157* Optimisation for statically-analysable namespace imports ([#99](https://github.com/rollup/rollup/pull/99))
158* Windows support (theoretically!) ([#117](https://github.com/rollup/rollup/pull/117) / [#119](https://github.com/rollup/rollup/pull/119))
159
160## 0.15.0
161
162* 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))
163* Only rewrite `foo` as `exports.foo` when it makes sense to ([#92](https://github.com/rollup/rollup/issues/92))
164* Fix bug with shadowed variables that are eventually exported ([#91](https://github.com/rollup/rollup/issues/91))
165* Exclude unused function declarations that happen to modify a used name ([#90](https://github.com/rollup/rollup/pull/90))
166* Simplify internal `Scope` model – scopes always attach to blocks, never function expressions/declarations
167
168## 0.14.1
169
170* `export { name } from './other'` does not create a local binding ([#16](https://github.com/rollup/rollup/issues/16))
171* A single binding can be exported under multiple names ([#18](https://github.com/rollup/rollup/issues/18))
172* `useStrict` option exposed to CLI as `--strict`/`--no-strict` ([#81](https://github.com/rollup/rollup/issues/81))
173* Neater exports from ES6 bundles
174
175## 0.14.0
176
177* Internal refactoring
178* Correctly deconflict generated default export names ([#72](https://github.com/rollup/rollup/issues/72))
179* Handle `export { x } from 'y'` declarations ([#74](https://github.com/rollup/rollup/issues/74))
180* Dedupe named imports from external modules in ES6 bundles ([#77](https://github.com/rollup/rollup/issues/77))
181
182## 0.13.0
183
184* Support `banner` and `footer` options ([#66](https://github.com/rollup/rollup/pull/66))
185* Remove pre-existing sourcemap comments ([#66](https://github.com/rollup/rollup/pull/66))
186* Deconflict external imports ([#66](https://github.com/rollup/rollup/pull/66))
187* Use existing AST, if provided ([#66](https://github.com/rollup/rollup/pull/66))
188* Rename internal namespace exports as appropriate ([#66](https://github.com/rollup/rollup/pull/66))
189* Remove uninitialised var declarations that get exported ([#66](https://github.com/rollup/rollup/pull/66))
190* Rename variables named `exports` to avoid conflicts ([#66](https://github.com/rollup/rollup/pull/66))
191
192## 0.12.1
193
194* Don't attempt to mark statements belonging to external modules ([#68](https://github.com/rollup/rollup/issues/68))
195* Correctly deshadow variables that conflict with imports ([#68](https://github.com/rollup/rollup/issues/68))
196
197## 0.12.0
198
199* Internal re-architecting, resulting in more efficient bundling with reduced memory usage
200* Shorthand properties are expanded if necessary ([#61](https://github.com/rollup/rollup/issues/61))
201* Fixed various bugs with bundle external dependencies, particularly when generating ES6 bundles ([#59](https://github.com/rollup/rollup/issues/59))
202* Add `--globals` option to CLI ([#60](https://github.com/rollup/rollup/pull/60))
203* Allow imports of external modules for side-effects ([#55](https://github.com/rollup/rollup/pull/55))
204* Prevent Rollup hanging on non-existent external module ([#54](https://github.com/rollup/rollup/pull/54))
205
206## 0.11.4
207
208* Side-effect preservation applies to internal default exports ([#43](https://github.com/rollup/rollup/issues/43))
209
210## 0.11.3
211
212* Class methods are not incorrectly renamed ([#42](https://github.com/rollup/rollup/issues/42))
213* External modules are assigned names before canonical names are determined ([#42](https://github.com/rollup/rollup/issues/42))
214
215## 0.11.2
216
217* Correctly handle computed properties (e.g. `foo[bar]`) when discovering dependencies ([#47](https://github.com/rollup/rollup/pull/47))
218
219## 0.11.1
220
221* Support for `export * from '..'` ([#46](https://github.com/rollup/rollup/pull/46))
222
223## 0.11.0
224
225* Experimental browser-friendly build (`dist/rollup.browser.js`) ([#25](https://github.com/rollup/rollup/issues/25))
226* Internal re-architecting to make discovery process simpler and more performant
227* Preservation of side-effects that happen in a separate module to the affected definition ([#39](https://github.com/rollup/rollup/issues/39))
228
229## 0.10.0
230
231* Better sorting algorithm – sorting happens at the module level, rather than the statement level. This avoids certain edge cases
232* IIFEs are ignored for the purposes of distinguishing between 'strong' and 'weak' dependencies
233* Empty `var` declarations for exported bindings are omitted
234
235## 0.9.1
236
237* Much faster statement insertion (fixes major 0.9.0 performance regression)
238
239## 0.9.0
240
241* 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))
242* A statement cannot appear after later statements from the same bundle ([#34](https://github.com/rollup/rollup/issues/34))
243* Tricky cyclical dependencies are handled ([#36](https://github.com/rollup/rollup/issues/36))
244* `sourcemap` option is used by CLI (was omitted previously)
245
246## 0.8.3
247
248* Correctly rename functions that have arguments with the same name ([#32](https://github.com/rollup/rollup/issues/32))
249* Ensure unused default exports are given a legal name ([#33](https://github.com/rollup/rollup/issues/33))
250
251## 0.8.2
252
253* Support `moduleId` and `moduleName` via CLI ([#24](https://github.com/rollup/rollup/issues/24))
254
255## 0.8.1
256
257* 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))
258* Automatically-generated default export names are deconflicted with local definitions ([#29](https://github.com/rollup/rollup/issues/29))
259
260## 0.8.0
261
262* 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))
263* `this` at the top level is `undefined` ([#28](https://github.com/rollup/rollup/issues/28))
264
265## 0.7.8
266
267* Avoid using `path.parse` - unsupported in node 0.10
268
269## 0.7.7
270
271* Promise `source-map-support` from `devDependencies` to `dependencies` ([#23](https://github.com/rollup/rollup/issues/23))
272
273## 0.7.6
274
275* Better placement of `export default` statements ([#21](https://github.com/rollup/rollup/issues/21))
276* Prevent function calls and property assignments from being treated as rebinding for sake of unbound default exports
277* Add `--external foo,bar,baz` option to CLI (equivalent to `external: ['foo', 'bar', 'baz']`)
278* Add CLI tests
279
280## 0.7.5
281
282* Prevent accidental conflicts with the global namespace ([#20](https://github.com/rollup/rollup/issues/20))
283
284## 0.7.4
285
286* More precise statement re-ordering to satisfy `export default` constraint (fixes bug introduced in 0.7.3)
287
288## 0.7.3
289
290* 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))
291* Better positioning of comments ([#14](https://github.com/rollup/rollup/issues/14))
292* Various fixes to get Travis-CI rigged up
293
294## 0.7.2
295
296* Fix sourcemap paths on Windows ([#6](https://github.com/rollup/rollup/pull/6))
297
298## 0.7.1
299
300* Named functions can be used as default exports from a bundle
301* Method calls are assumed to mutate the owner (i.e. `foo.bar()` mutates `foo`) ([#13](https://github.com/rollup/rollup/issues/13))
302* `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))
303
304## 0.7.0
305
306* Ensure statements are always separated by a newline ([#9](https://github.com/rollup/rollup/pull/9))
307* Use CommonJS `exports` correctly (UMD exports)
308* Throw error if `moduleName` is required but missing (UMD exports)
309* Attach IIFE global to `this` rather than `window`
310* Allow names inside bundle to the the names of `Object.prototype` properties ([#12](https://github.com/rollup/rollup/pull/12))
311* Keep exports live ([#11](https://github.com/rollup/rollup/pull/11))
312
313## 0.6.5
314
315* Add sourceMappingURL comment to code, as appropriate
316* Higher resolution sourcemaps
317
318## 0.6.4
319
320* Fix CJS bundling with default export
321
322## 0.6.3
323
324* Fix exports and external module imports with some output formats
325* Fix endless cycle bug on Windows ([#3](https://github.com/rollup/rollup/pull/3)) - thanks @Bobris
326
327## 0.6.2
328
329* Permit assignments to properties of imported bindings
330
331## 0.6.1
332
333* Support for basic transformers
334
335## 0.6.0
336
337* BREAKING - `rollup.rollup` and `bundle.write` both take a single options argument
338* BREAKING - external modules must be declared upfront with `options.external: [...]`
339* 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
340* Fix sourcemap options
341* Include CLI files in npm package (duh)
342
343## 0.5.0
344
345* Command line interface
346* Sourcemap generation
347* Correct behaviour with `export { x as y } from 'z'`
348
349## 0.4.1
350
351* More import name deconflicting
352
353## 0.4.0
354
355* Self-hosting! `rollup.rollup` now rolls up rollup
356* Fix bug with comments inside a statement later being appended to it
357* Prevent shadowing of external modules
358* Rewrite computed property identifiers where necessary
359* Preserve original statement order where possible
360* Internal refactoring
361
362## 0.3.1
363
364* Saner deconflicting
365* Rename namespace imports from external modules correctly
366
367## 0.3.0
368
369* Basic functionality present, mostly spec-compliant
370
371## 0.2.1
372
373* Include dist files in npm package (duh)
374
375## 0.2.0
376
377* First release capable of doing anything useful
378* Still lots of basic functionality missing
379
380## 0.1.0
381
382* Initial experiment