UNPKG

2.42 kBMarkdownView Raw
1# CHANGELOG
2
3This log is intended to keep track of backwards-incompatible changes, including
4but not limited to API changes and file location changes. Minor behavioral
5changes may not be included if they are not expected to break existing code.
6
7## 0.12.0 (2018-02-08)
8
9* Extendscript target script in NPM package
10
11## 0.11.19 (2018-02-03)
12
13* Error on empty workbook
14
15## 0.11.16 (2017-12-30)
16
17* XLS ANSI/CP separation
18* 'array' write type and ArrayBuffer processing
19
20## 0.11.6 (2017-10-16)
21
22* Semicolon-delimited files are detected
23
24## 0.11.5 (2017-09-30)
25
26* Bower main script shifted to full version
27* 'binary' / 'string' encoding
28
29## 0.11.3 (2017-08-19)
30
31* XLS cell ixfe/XF removed
32
33## 0.11.0 (2017-07-31)
34
35* Strip `require` statements from minified version
36* minifier mangler enabled
37
38## 0.10.9 (2017-07-28)
39
40* XLML/HTML resolution logic looks further into the data stream to decide type
41* Errors thrown on suspected RTF files
42
43## 0.10.5 (2017-06-09)
44
45* HTML Table output header/footer should not include `<table>` tag
46
47## 0.10.2 (2017-05-16)
48
49* Dates are converted to numbers by default (set `cellDates:true` to emit Dates)
50* Module does not export CFB
51
52## 0.9.10 (2017-04-08)
53
54* `--perf` renamed to `--read-only`
55
56## 0.9.9 (2017-04-03)
57
58* default output format changed to XLSB
59* comment text line endings are now normalized
60* errors thrown on write when worksheets have invalid names
61
62## 0.9.7 (2017-03-28)
63
64* XLS legacy `!range` field removed
65* Hyperlink tooltip is stored in the `Tooltip` field
66
67## 0.9.6 (2017-03-25)
68
69* `sheet_to_json` now passes `null` values when `raw` is set to `true`
70* `sheet_to_json` treats `null` stub cells as values in conjunction with `raw`
71
72## 0.9.5 (2017-03-22)
73
74* `cellDates` affects parsing in non-XLSX formats
75
76## 0.9.3 (2017-03-15)
77
78* XLML property names are more closely mapped to the XLSX equivalent
79* Stub cells are now cell type `z`
80
81## 0.9.2 (2017-03-13)
82
83* Removed stale TypeScript definition files. Flowtype comments are used in the
84 `xlsx.flow.js` source and stripped to produce `xlsx.js`.
85* sed usage reworked to support GNU sed in-place form. BSD sed seems to work,
86 but the build script has not been tested on other sed variants:
87
88```bash
89$ sed -i.ext [...] # GNU
90$ sed -i .ext [...] # bsd
91```
92
93## 0.9.0 (2017-03-09)
94
95* Removed ods.js source. The xlsx.js source absorbed the ODS logic and exposes
96 the ODS variable, so projects should remove references to ods.js
97