twitst4tz

twitter statistics web application
Log | Files | Refs | README | LICENSE

Changelog.md (4342B)


      1 # 0.4.24 / 2018-08-22
      2 
      3   * Added MIK encoding (#196, by @Ivan-Kalatchev)
      4 
      5 
      6 # 0.4.23 / 2018-05-07
      7 
      8   * Fix deprecation warning in Node v10 due to the last usage of `new Buffer` (#185, by @felixbuenemann)
      9   * Switched from NodeBuffer to Buffer in typings (#155 by @felixfbecker, #186 by @larssn)
     10 
     11 
     12 # 0.4.22 / 2018-05-05
     13 
     14   * Use older semver style for dependencies to be compatible with Node version 0.10 (#182, by @dougwilson)
     15   * Fix tests to accomodate fixes in Node v10 (#182, by @dougwilson)
     16 
     17 
     18 # 0.4.21 / 2018-04-06
     19 
     20   * Fix encoding canonicalization (#156)
     21   * Fix the paths in the "browser" field in package.json (#174 by @LMLB)
     22   * Removed "contributors" section in package.json - see Git history instead.
     23 
     24 
     25 # 0.4.20 / 2018-04-06
     26 
     27   * Updated `new Buffer()` usages with recommended replacements as it's being deprecated in Node v10 (#176, #178 by @ChALkeR)
     28 
     29 
     30 # 0.4.19 / 2017-09-09
     31 
     32   * Fixed iso8859-1 codec regression in handling untranslatable characters (#162, caused by #147)
     33   * Re-generated windows1255 codec, because it was updated in iconv project
     34   * Fixed grammar in error message when iconv-lite is loaded with encoding other than utf8
     35 
     36 
     37 # 0.4.18 / 2017-06-13
     38 
     39   * Fixed CESU-8 regression in Node v8.
     40 
     41 
     42 # 0.4.17 / 2017-04-22
     43 
     44  * Updated typescript definition file to support Angular 2 AoT mode (#153 by @larssn)
     45 
     46 
     47 # 0.4.16 / 2017-04-22
     48 
     49  * Added support for React Native (#150)
     50  * Changed iso8859-1 encoding to usine internal 'binary' encoding, as it's the same thing (#147 by @mscdex)
     51  * Fixed typo in Readme (#138 by @jiangzhuo)
     52  * Fixed build for Node v6.10+ by making correct version comparison
     53  * Added a warning if iconv-lite is loaded not as utf-8 (see #142)
     54 
     55 
     56 # 0.4.15 / 2016-11-21
     57 
     58  * Fixed typescript type definition (#137)
     59 
     60 
     61 # 0.4.14 / 2016-11-20
     62 
     63  * Preparation for v1.0
     64  * Added Node v6 and latest Node versions to Travis CI test rig
     65  * Deprecated Node v0.8 support
     66  * Typescript typings (@larssn)
     67  * Fix encoding of Euro character in GB 18030 (inspired by @lygstate)
     68  * Add ms prefix to dbcs windows encodings (@rokoroku)
     69 
     70 
     71 # 0.4.13 / 2015-10-01
     72 
     73  * Fix silly mistake in deprecation notice.
     74 
     75 
     76 # 0.4.12 / 2015-09-26
     77 
     78  * Node v4 support:
     79    * Added CESU-8 decoding (#106)
     80    * Added deprecation notice for `extendNodeEncodings`
     81    * Added Travis tests for Node v4 and io.js latest (#105 by @Mithgol)
     82 
     83 
     84 # 0.4.11 / 2015-07-03
     85 
     86  * Added CESU-8 encoding.
     87 
     88 
     89 # 0.4.10 / 2015-05-26
     90 
     91  * Changed UTF-16 endianness heuristic to take into account any ASCII chars, not
     92    just spaces. This should minimize the importance of "default" endianness.
     93 
     94 
     95 # 0.4.9 / 2015-05-24
     96 
     97  * Streamlined BOM handling: strip BOM by default, add BOM when encoding if 
     98    addBOM: true. Added docs to Readme.
     99  * UTF16 now uses UTF16-LE by default.
    100  * Fixed minor issue with big5 encoding.
    101  * Added io.js testing on Travis; updated node-iconv version to test against.
    102    Now we just skip testing SBCS encodings that node-iconv doesn't support.
    103  * (internal refactoring) Updated codec interface to use classes.
    104  * Use strict mode in all files.
    105 
    106 
    107 # 0.4.8 / 2015-04-14
    108  
    109  * added alias UNICODE-1-1-UTF-7 for UTF-7 encoding (#94)
    110 
    111 
    112 # 0.4.7 / 2015-02-05
    113 
    114  * stop official support of Node.js v0.8. Should still work, but no guarantees.
    115    reason: Packages needed for testing are hard to get on Travis CI.
    116  * work in environment where Object.prototype is monkey patched with enumerable 
    117    props (#89).
    118 
    119 
    120 # 0.4.6 / 2015-01-12
    121  
    122  * fix rare aliases of single-byte encodings (thanks @mscdex)
    123  * double the timeout for dbcs tests to make them less flaky on travis
    124 
    125 
    126 # 0.4.5 / 2014-11-20
    127 
    128  * fix windows-31j and x-sjis encoding support (@nleush)
    129  * minor fix: undefined variable reference when internal error happens
    130 
    131 
    132 # 0.4.4 / 2014-07-16
    133 
    134  * added encodings UTF-7 (RFC2152) and UTF-7-IMAP (RFC3501 Section 5.1.3)
    135  * fixed streaming base64 encoding
    136 
    137 
    138 # 0.4.3 / 2014-06-14
    139 
    140  * added encodings UTF-16BE and UTF-16 with BOM
    141 
    142 
    143 # 0.4.2 / 2014-06-12
    144 
    145  * don't throw exception if `extendNodeEncodings()` is called more than once
    146 
    147 
    148 # 0.4.1 / 2014-06-11
    149 
    150  * codepage 808 added
    151 
    152 
    153 # 0.4.0 / 2014-06-10
    154 
    155  * code is rewritten from scratch
    156  * all widespread encodings are supported
    157  * streaming interface added
    158  * browserify compatibility added
    159  * (optional) extend core primitive encodings to make usage even simpler
    160  * moved from vows to mocha as the testing framework
    161 
    162