1
|
# Changelog
|
2
|
|
3
|
All notable changes to this project will be documented in this file.
|
4
|
|
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7
|
|
8
|
|
9
|
## [1.0.11] - 2020-01-29
|
10
|
### Fixed
|
11
|
- Fix tests in node.js v12+, #179.
|
12
|
|
13
|
|
14
|
## [1.0.10] - 2019-02-28
|
15
|
### Fixed
|
16
|
- Fix minified version, #161.
|
17
|
|
18
|
|
19
|
## [1.0.9] - 2019-02-28
|
20
|
### Fixed
|
21
|
- Fix `new Buffer()` warning, #154.
|
22
|
|
23
|
|
24
|
## [1.0.8] - 2019-01-14
|
25
|
### Fixed
|
26
|
- Fix raw inflate with dictionary, #155.
|
27
|
|
28
|
|
29
|
## [1.0.7] - 2018-11-29
|
30
|
### Fixed
|
31
|
- Fixed RangeError in Crome 72, #150.
|
32
|
|
33
|
|
34
|
## [1.0.6] - 2017-09-14
|
35
|
### Changed
|
36
|
- Improve @std/esm compatibility.
|
37
|
|
38
|
|
39
|
## [1.0.5] - 2017-03-17
|
40
|
### Changed
|
41
|
- Maintenance. More formal `zlib` attribution and related
|
42
|
changes, #93. Thanks to @bastien-roucaries for the help.
|
43
|
|
44
|
|
45
|
## [1.0.4] - 2016-12-15
|
46
|
### Changed
|
47
|
- Bump dev dependencies.
|
48
|
|
49
|
### Fixed
|
50
|
- Make sure `err.message` is filled on throw.
|
51
|
|
52
|
### Added
|
53
|
- Code examples for utf-16 string encoding & object compression.
|
54
|
|
55
|
|
56
|
## [1.0.3] - 2016-07-25
|
57
|
### Fixed
|
58
|
- Maintenance: re-release to properly display latest version in npm registry
|
59
|
and badges. Because `npm publish` timestamp used instead of versions.
|
60
|
|
61
|
|
62
|
## [1.0.2] - 2016-07-21
|
63
|
### Fixed
|
64
|
- Fixed nasty bug in deflate (wrong `d_buf` offset), which could cause
|
65
|
broken data in some rare cases.
|
66
|
- Also released as 0.2.9 to give chance to old dependents, not updated to 1.x
|
67
|
version.
|
68
|
|
69
|
|
70
|
## [1.0.1] - 2016-04-01
|
71
|
### Added
|
72
|
- Added dictionary support. Thanks to @dignifiedquire.
|
73
|
|
74
|
|
75
|
## [1.0.0] - 2016-02-17
|
76
|
### Changed
|
77
|
- Maintenance release (semver, coding style).
|
78
|
|
79
|
|
80
|
## [0.2.8] - 2015-09-14
|
81
|
### Fixed
|
82
|
- Fixed regression after 0.2.4 for edge conditions in inflate wrapper (#65).
|
83
|
Added more tests to cover possible cases.
|
84
|
|
85
|
|
86
|
## [0.2.7] - 2015-06-09
|
87
|
### Added
|
88
|
- Added Z_SYNC_FLUSH support. Thanks to @TinoLange.
|
89
|
|
90
|
|
91
|
## [0.2.6] - 2015-03-24
|
92
|
### Added
|
93
|
- Allow ArrayBuffer input.
|
94
|
|
95
|
|
96
|
## [0.2.5] - 2014-07-19
|
97
|
### Fixed
|
98
|
- Workaround for Chrome 38.0.2096.0 script parser bug, #30.
|
99
|
|
100
|
|
101
|
## [0.2.4] - 2014-07-07
|
102
|
### Fixed
|
103
|
- Fixed bug in inflate wrapper, #29
|
104
|
|
105
|
|
106
|
## [0.2.3] - 2014-06-09
|
107
|
### Changed
|
108
|
- Maintenance release, dependencies update.
|
109
|
|
110
|
|
111
|
## [0.2.2] - 2014-06-04
|
112
|
### Fixed
|
113
|
- Fixed iOS 5.1 Safari issue with `apply(typed_array)`, #26.
|
114
|
|
115
|
|
116
|
## [0.2.1] - 2014-05-01
|
117
|
### Fixed
|
118
|
- Fixed collision on switch dynamic/fixed tables.
|
119
|
|
120
|
|
121
|
## [0.2.0] - 2014-04-18
|
122
|
### Added
|
123
|
- Added custom gzip headers support.
|
124
|
- Added strings support.
|
125
|
- More coverage tests.
|
126
|
|
127
|
### Fixed
|
128
|
- Improved memory allocations for small chunks.
|
129
|
- ZStream properties rename/cleanup.
|
130
|
|
131
|
|
132
|
## [0.1.1] - 2014-03-20
|
133
|
### Fixed
|
134
|
- Bugfixes for inflate/deflate.
|
135
|
|
136
|
|
137
|
## [0.1.0] - 2014-03-15
|
138
|
### Added
|
139
|
- First release.
|
140
|
|
141
|
|
142
|
[1.0.10]: https://github.com/nodeca/pako/compare/1.0.10...1.0.11
|
143
|
[1.0.10]: https://github.com/nodeca/pako/compare/1.0.9...1.0.10
|
144
|
[1.0.9]: https://github.com/nodeca/pako/compare/1.0.8...1.0.9
|
145
|
[1.0.8]: https://github.com/nodeca/pako/compare/1.0.7...1.0.8
|
146
|
[1.0.7]: https://github.com/nodeca/pako/compare/1.0.6...1.0.7
|
147
|
[1.0.6]: https://github.com/nodeca/pako/compare/1.0.5...1.0.6
|
148
|
[1.0.5]: https://github.com/nodeca/pako/compare/1.0.4...1.0.5
|
149
|
[1.0.4]: https://github.com/nodeca/pako/compare/1.0.3...1.0.4
|
150
|
[1.0.3]: https://github.com/nodeca/pako/compare/1.0.2...1.0.3
|
151
|
[1.0.2]: https://github.com/nodeca/pako/compare/1.0.1...1.0.2
|
152
|
[1.0.1]: https://github.com/nodeca/pako/compare/1.0.0...1.0.1
|
153
|
[1.0.0]: https://github.com/nodeca/pako/compare/0.2.8...1.0.0
|
154
|
[0.2.8]: https://github.com/nodeca/pako/compare/0.2.7...0.2.8
|
155
|
[0.2.7]: https://github.com/nodeca/pako/compare/0.2.6...0.2.7
|
156
|
[0.2.6]: https://github.com/nodeca/pako/compare/0.2.5...0.2.6
|
157
|
[0.2.5]: https://github.com/nodeca/pako/compare/0.2.4...0.2.5
|
158
|
[0.2.4]: https://github.com/nodeca/pako/compare/0.2.3...0.2.4
|
159
|
[0.2.3]: https://github.com/nodeca/pako/compare/0.2.2...0.2.3
|
160
|
[0.2.2]: https://github.com/nodeca/pako/compare/0.2.1...0.2.2
|
161
|
[0.2.1]: https://github.com/nodeca/pako/compare/0.2.0...0.2.1
|
162
|
[0.2.0]: https://github.com/nodeca/pako/compare/0.1.1...0.2.0
|
163
|
[0.1.1]: https://github.com/nodeca/pako/compare/0.1.0...0.1.1
|
164
|
[0.1.0]: https://github.com/nodeca/pako/releases/tag/0.1.0
|