UNPKG

2.29 kBMarkdownView Raw
1
2# 0.4.13 / 2015-10-01
3
4 * Fix silly mistake in deprecation notice.
5
6
7# 0.4.12 / 2015-09-26
8
9 * Node v4 support:
10 * Added CESU-8 decoding (#106)
11 * Added deprecation notice for `extendNodeEncodings`
12 * Added Travis tests for Node v4 and io.js latest (#105 by @Mithgol)
13
14
15# 0.4.11 / 2015-07-03
16
17 * Added CESU-8 encoding.
18
19
20# 0.4.10 / 2015-05-26
21
22 * Changed UTF-16 endianness heuristic to take into account any ASCII chars, not
23 just spaces. This should minimize the importance of "default" endianness.
24
25
26# 0.4.9 / 2015-05-24
27
28 * Streamlined BOM handling: strip BOM by default, add BOM when encoding if
29 addBOM: true. Added docs to Readme.
30 * UTF16 now uses UTF16-LE by default.
31 * Fixed minor issue with big5 encoding.
32 * Added io.js testing on Travis; updated node-iconv version to test against.
33 Now we just skip testing SBCS encodings that node-iconv doesn't support.
34 * (internal refactoring) Updated codec interface to use classes.
35 * Use strict mode in all files.
36
37
38# 0.4.8 / 2015-04-14
39
40 * added alias UNICODE-1-1-UTF-7 for UTF-7 encoding (#94)
41
42
43# 0.4.7 / 2015-02-05
44
45 * stop official support of Node.js v0.8. Should still work, but no guarantees.
46 reason: Packages needed for testing are hard to get on Travis CI.
47 * work in environment where Object.prototype is monkey patched with enumerable
48 props (#89).
49
50
51# 0.4.6 / 2015-01-12
52
53 * fix rare aliases of single-byte encodings (thanks @mscdex)
54 * double the timeout for dbcs tests to make them less flaky on travis
55
56
57# 0.4.5 / 2014-11-20
58
59 * fix windows-31j and x-sjis encoding support (@nleush)
60 * minor fix: undefined variable reference when internal error happens
61
62
63# 0.4.4 / 2014-07-16
64
65 * added encodings UTF-7 (RFC2152) and UTF-7-IMAP (RFC3501 Section 5.1.3)
66 * fixed streaming base64 encoding
67
68
69# 0.4.3 / 2014-06-14
70
71 * added encodings UTF-16BE and UTF-16 with BOM
72
73
74# 0.4.2 / 2014-06-12
75
76 * don't throw exception if `extendNodeEncodings()` is called more than once
77
78
79# 0.4.1 / 2014-06-11
80
81 * codepage 808 added
82
83
84# 0.4.0 / 2014-06-10
85
86 * code is rewritten from scratch
87 * all widespread encodings are supported
88 * streaming interface added
89 * browserify compatibility added
90 * (optional) extend core primitive encodings to make usage even simpler
91 * moved from vows to mocha as the testing framework
92
93