Initial commit
[yaffs-website] / node_modules / raw-body / HISTORY.md
1 2.1.7 / 2016-06-19
2 ==================
3
4   * deps: bytes@2.4.0
5   * perf: remove double-cleanup on happy path
6
7 2.1.6 / 2016-03-07
8 ==================
9
10   * deps: bytes@2.3.0
11     - Drop partial bytes on all parsed units
12     - Fix parsing byte string that looks like hex
13
14 2.1.5 / 2015-11-30
15 ==================
16
17   * deps: bytes@2.2.0
18   * deps: iconv-lite@0.4.13
19
20 2.1.4 / 2015-09-27
21 ==================
22
23   * Fix masking critical errors from `iconv-lite`
24   * deps: iconv-lite@0.4.12
25     - Fix CESU-8 decoding in Node.js 4.x
26
27 2.1.3 / 2015-09-12
28 ==================
29
30   * Fix sync callback when attaching data listener causes sync read
31     - Node.js 0.10 compatibility issue
32
33 2.1.2 / 2015-07-05
34 ==================
35
36   * Fix error stack traces to skip `makeError`
37   * deps: iconv-lite@0.4.11
38     - Add encoding CESU-8
39
40 2.1.1 / 2015-06-14
41 ==================
42
43   * Use `unpipe` module for unpiping requests
44
45 2.1.0 / 2015-05-28
46 ==================
47
48   * deps: iconv-lite@0.4.10
49     - Improved UTF-16 endianness detection
50     - Leading BOM is now removed when decoding
51     - The encoding UTF-16 without BOM now defaults to UTF-16LE when detection fails
52
53 2.0.2 / 2015-05-21
54 ==================
55
56   * deps: bytes@2.1.0
57     - Slight optimizations
58
59 2.0.1 / 2015-05-10
60 ==================
61
62   * Fix a false-positive when unpiping in Node.js 0.8
63
64 2.0.0 / 2015-05-08
65 ==================
66
67   * Return a promise without callback instead of thunk
68   * deps: bytes@2.0.1
69     - units no longer case sensitive when parsing
70
71 1.3.4 / 2015-04-15
72 ==================
73
74   * Fix hanging callback if request aborts during read
75   * deps: iconv-lite@0.4.8
76     - Add encoding alias UNICODE-1-1-UTF-7
77
78 1.3.3 / 2015-02-08
79 ==================
80
81   * deps: iconv-lite@0.4.7
82     - Gracefully support enumerables on `Object.prototype`
83
84 1.3.2 / 2015-01-20
85 ==================
86
87   * deps: iconv-lite@0.4.6
88     - Fix rare aliases of single-byte encodings
89
90 1.3.1 / 2014-11-21
91 ==================
92
93   * deps: iconv-lite@0.4.5
94     - Fix Windows-31J and X-SJIS encoding support
95
96 1.3.0 / 2014-07-20
97 ==================
98
99   * Fully unpipe the stream on error
100     - Fixes `Cannot switch to old mode now` error on Node.js 0.10+
101
102 1.2.3 / 2014-07-20
103 ==================
104
105   * deps: iconv-lite@0.4.4
106     - Added encoding UTF-7
107
108 1.2.2 / 2014-06-19
109 ==================
110
111   * Send invalid encoding error to callback
112
113 1.2.1 / 2014-06-15
114 ==================
115
116   * deps: iconv-lite@0.4.3
117     - Added encodings UTF-16BE and UTF-16 with BOM
118
119 1.2.0 / 2014-06-13
120 ==================
121
122   * Passing string as `options` interpreted as encoding
123   * Support all encodings from `iconv-lite`
124
125 1.1.7 / 2014-06-12
126 ==================
127
128   * use `string_decoder` module from npm
129
130 1.1.6 / 2014-05-27
131 ==================
132
133   * check encoding for old streams1
134   * support node.js < 0.10.6
135
136 1.1.5 / 2014-05-14
137 ==================
138
139   * bump bytes
140
141 1.1.4 / 2014-04-19
142 ==================
143
144   * allow true as an option
145   * bump bytes
146
147 1.1.3 / 2014-03-02
148 ==================
149
150   * fix case when length=null
151
152 1.1.2 / 2013-12-01
153 ==================
154
155   * be less strict on state.encoding check
156
157 1.1.1 / 2013-11-27
158 ==================
159
160   * add engines
161
162 1.1.0 / 2013-11-27
163 ==================
164
165   * add err.statusCode and err.type
166   * allow for encoding option to be true
167   * pause the stream instead of dumping on error
168   * throw if the stream's encoding is set
169
170 1.0.1 / 2013-11-19
171 ==================
172
173   * dont support streams1, throw if dev set encoding
174
175 1.0.0 / 2013-11-17
176 ==================
177
178   * rename `expected` option to `length`
179
180 0.2.0 / 2013-11-15
181 ==================
182
183   * republish
184
185 0.1.1 / 2013-11-15
186 ==================
187
188   * use bytes
189
190 0.1.0 / 2013-11-11
191 ==================
192
193   * generator support
194
195 0.0.3 / 2013-10-10
196 ==================
197
198   * update repo
199
200 0.0.2 / 2013-09-14
201 ==================
202
203   * dump stream on bad headers
204   * listen to events after defining received and buffers
205
206 0.0.1 / 2013-09-14
207 ==================
208
209   * Initial release