All Versions
32
Latest Version
Avg Release Cycle
97 days
Latest Release
853 days ago

Changelog History
Page 3

  • v0.4.11 Changes

    July 03, 2015
    • Added CESU-8 encoding.
  • v0.4.10 Changes

    May 26, 2015
    • Changed UTF-16 endianness heuristic to take into account any ASCII chars, not just spaces. This should minimize the importance of "default" endianness.
  • v0.4.9 Changes

    May 24, 2015
    • Streamlined BOM handling: strip BOM by default, add BOM when encoding if addBOM: true. Added docs to Readme.
    • UTF16 now uses UTF16-LE by default.
    • Fixed minor issue with big5 encoding.
    • Added io.js testing on Travis; updated node-iconv version to test against. Now we just skip testing SBCS encodings that node-iconv doesn't support.
    • (internal refactoring) Updated codec interface to use classes.
    • Use strict mode in all files.
  • v0.4.8 Changes

    April 14, 2015
    • added alias UNICODE-1-1-UTF-7 for UTF-7 encoding (#94)
  • v0.4.7 Changes

    February 05, 2015
    • stop official support of Node.js v0.8. Should still work, but no guarantees. reason: Packages needed for testing are hard to get on Travis CI.
    • work in environment where Object.prototype is monkey patched with enumerable props (#89).
  • v0.4.6 Changes

    January 12, 2015
    • fix rare aliases of single-byte encodings (thanks @mscdex)
    • double the timeout for dbcs tests to make them less flaky on travis
  • v0.4.5 Changes

    November 20, 2014
    • fix windows-31j and x-sjis encoding support (@nleush)
    • minor fix: undefined variable reference when internal error happens
  • v0.4.4 Changes

    July 16, 2014
    • added encodings UTF-7 (RFC2152) and UTF-7-IMAP (RFC3501 Section 5.1.3)
    • fixed streaming base64 encoding
  • v0.4.3 Changes

    June 14, 2014
    • added encodings UTF-16BE and UTF-16 with BOM
  • v0.4.2 Changes

    June 12, 2014
    • don't throw exception if extendNodeEncodings() is called more than once