You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

211 lines
5.4 KiB

1 year ago
  1. # Changelog
  2. All notable changes to this project will be documented in this file.
  3. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
  4. and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
  5. ## [2.0.4] - 2021-07-29
  6. ### Fixed
  7. - Use TextEncoder and TextDecoder if available, #228.
  8. - Use pre-generated fixtures instead of node.js zlib.
  9. ## [2.0.3] - 2021-01-09
  10. ### Fixed
  11. - Add all files explicit to package exports (since behaviour changed
  12. after adding .export field)
  13. ## [2.0.2] - 2020-11-19
  14. ### Fixed
  15. - Fix esm build named exports.
  16. ## [2.0.1] - 2020-11-17
  17. ### Changed
  18. - Changed esm build `.js` => `.mjs` to fix node.js `import`.
  19. - Added `module` entry in package.json for some bundlers.
  20. ## [2.0.0] - 2020-11-17
  21. ### Changed
  22. - Removed binary strings and `Array` support.
  23. - Removed fallbacks for TypedArray methods (`.set()`, `.subarray()`).
  24. - Rewritten top-level wrappers.
  25. - Removed support of `Inflate` & `Deflate` instance create without `new`.
  26. - `Inflate.push()` no longer needs second param (end is auto-detected).
  27. - Increased default inflate chunk size to 64K.
  28. - Moved exported constants to `.constants`.
  29. - Switched to es6. Legacy es5 builds available in `/dist`.
  30. - Added esm build.
  31. - Structure of `/dist` folder changed.
  32. - Upgraded build tools to modern ones.
  33. ## [1.0.11] - 2020-01-29
  34. ### Fixed
  35. - Fix tests in node.js v12+, #179.
  36. ## [1.0.10] - 2019-02-28
  37. ### Fixed
  38. - Fix minified version, #161.
  39. ## [1.0.9] - 2019-02-28
  40. ### Fixed
  41. - Fix `new Buffer()` warning, #154.
  42. ## [1.0.8] - 2019-01-14
  43. ### Fixed
  44. - Fix raw inflate with dictionary, #155.
  45. ## [1.0.7] - 2018-11-29
  46. ### Fixed
  47. - Fixed RangeError in Crome 72, #150.
  48. ## [1.0.6] - 2017-09-14
  49. ### Changed
  50. - Improve @std/esm compatibility.
  51. ## [1.0.5] - 2017-03-17
  52. ### Changed
  53. - Maintenance. More formal `zlib` attribution and related
  54. changes, #93. Thanks to @bastien-roucaries for the help.
  55. ## [1.0.4] - 2016-12-15
  56. ### Changed
  57. - Bump dev dependencies.
  58. ### Fixed
  59. - Make sure `err.message` is filled on throw.
  60. ### Added
  61. - Code examples for utf-16 string encoding & object compression.
  62. ## [1.0.3] - 2016-07-25
  63. ### Fixed
  64. - Maintenance: re-release to properly display latest version in npm registry
  65. and badges. Because `npm publish` timestamp used instead of versions.
  66. ## [1.0.2] - 2016-07-21
  67. ### Fixed
  68. - Fixed nasty bug in deflate (wrong `d_buf` offset), which could cause
  69. broken data in some rare cases.
  70. - Also released as 0.2.9 to give chance to old dependents, not updated to 1.x
  71. version.
  72. ## [1.0.1] - 2016-04-01
  73. ### Added
  74. - Added dictionary support. Thanks to @dignifiedquire.
  75. ## [1.0.0] - 2016-02-17
  76. ### Changed
  77. - Maintenance release (semver, coding style).
  78. ## [0.2.8] - 2015-09-14
  79. ### Fixed
  80. - Fixed regression after 0.2.4 for edge conditions in inflate wrapper (#65).
  81. Added more tests to cover possible cases.
  82. ## [0.2.7] - 2015-06-09
  83. ### Added
  84. - Added Z_SYNC_FLUSH support. Thanks to @TinoLange.
  85. ## [0.2.6] - 2015-03-24
  86. ### Added
  87. - Allow ArrayBuffer input.
  88. ## [0.2.5] - 2014-07-19
  89. ### Fixed
  90. - Workaround for Chrome 38.0.2096.0 script parser bug, #30.
  91. ## [0.2.4] - 2014-07-07
  92. ### Fixed
  93. - Fixed bug in inflate wrapper, #29
  94. ## [0.2.3] - 2014-06-09
  95. ### Changed
  96. - Maintenance release, dependencies update.
  97. ## [0.2.2] - 2014-06-04
  98. ### Fixed
  99. - Fixed iOS 5.1 Safari issue with `apply(typed_array)`, #26.
  100. ## [0.2.1] - 2014-05-01
  101. ### Fixed
  102. - Fixed collision on switch dynamic/fixed tables.
  103. ## [0.2.0] - 2014-04-18
  104. ### Added
  105. - Added custom gzip headers support.
  106. - Added strings support.
  107. - More coverage tests.
  108. ### Fixed
  109. - Improved memory allocations for small chunks.
  110. - ZStream properties rename/cleanup.
  111. ## [0.1.1] - 2014-03-20
  112. ### Fixed
  113. - Bugfixes for inflate/deflate.
  114. ## [0.1.0] - 2014-03-15
  115. ### Added
  116. - First release.
  117. [2.0.4]: https://github.com/nodeca/pako/compare/2.0.3...2.0.4
  118. [2.0.3]: https://github.com/nodeca/pako/compare/2.0.2...2.0.3
  119. [2.0.2]: https://github.com/nodeca/pako/compare/2.0.1...2.0.2
  120. [2.0.1]: https://github.com/nodeca/pako/compare/2.0.0...2.0.1
  121. [2.0.0]: https://github.com/nodeca/pako/compare/1.0.11...2.0.0
  122. [1.0.10]: https://github.com/nodeca/pako/compare/1.0.10...1.0.11
  123. [1.0.10]: https://github.com/nodeca/pako/compare/1.0.9...1.0.10
  124. [1.0.9]: https://github.com/nodeca/pako/compare/1.0.8...1.0.9
  125. [1.0.8]: https://github.com/nodeca/pako/compare/1.0.7...1.0.8
  126. [1.0.7]: https://github.com/nodeca/pako/compare/1.0.6...1.0.7
  127. [1.0.6]: https://github.com/nodeca/pako/compare/1.0.5...1.0.6
  128. [1.0.5]: https://github.com/nodeca/pako/compare/1.0.4...1.0.5
  129. [1.0.4]: https://github.com/nodeca/pako/compare/1.0.3...1.0.4
  130. [1.0.3]: https://github.com/nodeca/pako/compare/1.0.2...1.0.3
  131. [1.0.2]: https://github.com/nodeca/pako/compare/1.0.1...1.0.2
  132. [1.0.1]: https://github.com/nodeca/pako/compare/1.0.0...1.0.1
  133. [1.0.0]: https://github.com/nodeca/pako/compare/0.2.8...1.0.0
  134. [0.2.8]: https://github.com/nodeca/pako/compare/0.2.7...0.2.8
  135. [0.2.7]: https://github.com/nodeca/pako/compare/0.2.6...0.2.7
  136. [0.2.6]: https://github.com/nodeca/pako/compare/0.2.5...0.2.6
  137. [0.2.5]: https://github.com/nodeca/pako/compare/0.2.4...0.2.5
  138. [0.2.4]: https://github.com/nodeca/pako/compare/0.2.3...0.2.4
  139. [0.2.3]: https://github.com/nodeca/pako/compare/0.2.2...0.2.3
  140. [0.2.2]: https://github.com/nodeca/pako/compare/0.2.1...0.2.2
  141. [0.2.1]: https://github.com/nodeca/pako/compare/0.2.0...0.2.1
  142. [0.2.0]: https://github.com/nodeca/pako/compare/0.1.1...0.2.0
  143. [0.1.1]: https://github.com/nodeca/pako/compare/0.1.0...0.1.1
  144. [0.1.0]: https://github.com/nodeca/pako/releases/tag/0.1.0