-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCHANGELOG
More file actions
269 lines (193 loc) · 7.03 KB
/
Copy pathCHANGELOG
File metadata and controls
269 lines (193 loc) · 7.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
### Fixed
- Fix building against libjpeg-turbo 2.x
### Added
- Add SIMPLEJPEG_DYNAMIC_LINKING environment variable to allow dynamic linking
- Allow overriding libjpeg-turbo version with SIMPLEJPEG_JPEG_VERSION and SIMPLEJPEG_JPEG_HASH environment variables
### Changed
- Relax Cython build requirement to cython~=3.0
- Force cythonization when Cython is installed
- Output warnings instead of errors if platform is unsupported
## [1.9.0] - 2025-10-10
### Added
- Add Windows on ARM builds for Python 3.11+.
### Fixed
- (tests only) Deprecation warning from Pillow
### Changed
- Update to libjpeg-turbo 3.1.2.
- (build system only) Remove Yasm build as it is incompatible with recent cmake versions
## [1.8.2] - 2025-02-25
### Fixed
- Regression in encode_jpeg where some valid grayscale images were no longer accepted (#20)
- Potential illegal memory access in encode_jpeg with broadcast rows
- Potential illegal memory access in encode_jpeg_yuv_planes with broadcast rows
### Changed
- Use system cmake if available (#19, thanks @mgorny)
## [1.8.1] - 2025-02-11
### Fixed
- SKIP_YASM_BUILD affecting JPEG_DIR instead
### Changed
- Verify libjpeg-turbo and yasm archives after download
## [1.8.0] - 2025-02-08
### Changed
- Allow encoding cropped arrays (!6 on GitLab, thanks @davidplowman).
- Add encode_jpeg_yuv_planes function to from YUV planes (!7 on GitLab, thanks @davidplowman).
- Add SKIP_YASM_BUILD environment variable to skip building Yasm.
- Update to libjpeg-turbo 3.1.0.
## [1.7.6] - 2024-09-03
### Changed
- Drop win32 support.
## [1.7.5] - 2024-08-28
### Added
- Add Python 3.13 support.
## [1.7.4] - 2024-06-20
### Changed
- Depend on numpy>=1.19.0.
- Build against numpy>=2.0.0.
- Drop Python 3.7 and 3.8 support.
## [1.7.3] - 2024-06-20
### Changed
- Update to libjpeg-turbo 3.0.3.
- Depend on numpy<2.
### Fixed
- Declare calc_height_width noexcept (fixed Cython warnings)
## [1.7.2] - 2023-09-08
### Added
- Add Python 3.12 support (w/o win32).
## [1.7.1] - 2023-08-06
### Fixed
- Exclude sources from wheels
## [1.7.0] - 2023-08-06
### Added
- Add "strict" argument to decode_jpeg/decode_jpeg_header.
### Changed
- Drop i686 support.
- Drop manylinux1 support.
- Update to libjpeg-turbo 3.0.
- Update to Cython 3.0
## [1.6.6] - 2023-04-06
### Changed
- Update to libjpeg-turbo 2.1.5.1.
- Drop Python 3.6 support.
### Added
- Add Python 3.11 support.
## [1.6.5] - 2022-08-12
### Changed
- Update to libjpeg-turbo 2.1.4.
## [1.6.4] - 2022-02-26
### Changed
- Add Python 3.10 support.
- Update to libjpeg-turbo 2.1.3.
## [1.6.3] - 2021-11-20
### Changed
- Update to libjpeg-turbo 2.1.2.
## [1.6.2] - 2021-08-10
### Changed
- Update to libjpeg-turbo 2.1.1.
## [1.6.1] - 2021-05-29
### Changed
- Update the build system:
- Use PyPA build to... build
- Add pyproject.toml to specify build requirements
- Build against oldest-supported-numpy
- Require any version of numpy installed
- Add back Python 3.6 support
## [1.6.0] - 2021-04-29
### Changed
- Build against and require numpy 1.20.
- Drop Python 3.6 support since there are no numpy 1.20 wheels for it
## [1.5.0] - 2021-04-24
### Changed
- Update to libjpeg-turbo 2.1.0.
## [1.4.1] - 2021-02-25
### Fixed
- is_jpeg detects more JPEG/JFIF images.
## [1.4.0] - 2020-11-17
### Changed
- Update to libjpeg-turbo 2.0.6.
## [1.3.9] - 2020-11-10
### Added
- Add Python 3.9 wheels.
## [1.3.8] - 2020-09-06
### Added
- Build manylinux1 wheels.
## [1.3.7] - 2020-09-03
### Added
- Support MacOS.
- Build MacOS wheels on Appveyor.
### Fixed
- Encoding to grayscale JPEG requires colorsubsampling='GRAY'. (#4)
## [1.3.6] - 2020-06-24
### Changed
- Update to libjpeg-turbo 2.0.5.
## [1.3.5] - 2020-06-20
### Changed
- Improve error message in decode_jpeg for unsupported buffers.
### Fixed
- Request contiguous buffer in decode_jpeg.
- Check whether image is C contiguous in encode_jpeg.
## [1.3.4] - 2020-06-01
### Added
- Proper change log :)
### Changed
- Reduce linux binary size.
## [1.3.3] - 2020-01-16
### Fixed
- Linker warning for Windows build.
## [1.3.2] - 2020-01-06
### Added
- CI now builds libjpeg-turbo from source.
- Add Appyevor to CI for Windows builds.
- Distribute manylinux2010 wheels.
### Fixed
- ``min_width`` and ``min_height`` are now ignored if 0 as stated in the docs.
- License missing from linux wheels.
## [1.3.1] - 2019-12-15
### Fixed
- ``decode_jpeg`` requests writable buffer from ``buffer`` argument.
## [1.3.0] - 2019-12-15
### Added
- ``decode_jpeg`` accepts optional ``buffer`` argument.
## [1.2.6] - 2019-12-14
### Fixed
- Memory corruption caused by incorrect GIL handling.
## [1.2.5] - 2019-11-02
### Added
- Initial public release.
[Unreleased]: https://github.com/jfolz/simplejpeg/compare/1.8.2...master
[1.8.2]: https://github.com/jfolz/simplejpeg/compare/1.8.1...1.8.2
[1.8.1]: https://github.com/jfolz/simplejpeg/compare/1.8.0...1.8.1
[1.8.0]: https://github.com/jfolz/simplejpeg/compare/1.7.6...1.8.0
[1.7.6]: https://github.com/jfolz/simplejpeg/compare/1.7.5...1.7.6
[1.7.5]: https://github.com/jfolz/simplejpeg/compare/1.7.4...1.7.5
[1.7.4]: https://github.com/jfolz/simplejpeg/compare/1.7.3...1.7.4
[1.7.3]: https://github.com/jfolz/simplejpeg/compare/1.7.2...1.7.3
[1.7.2]: https://github.com/jfolz/simplejpeg/compare/1.7.1...1.7.2
[1.7.1]: https://github.com/jfolz/simplejpeg/compare/1.7.0...1.7.1
[1.7.0]: https://github.com/jfolz/simplejpeg/compare/1.6.6...1.7.0
[1.6.6]: https://github.com/jfolz/simplejpeg/compare/1.6.5...1.6.6
[1.6.5]: https://github.com/jfolz/simplejpeg/compare/1.6.4...1.6.5
[1.6.4]: https://github.com/jfolz/simplejpeg/compare/1.6.3...1.6.4
[1.6.3]: https://github.com/jfolz/simplejpeg/compare/1.6.2...1.6.3
[1.6.2]: https://github.com/jfolz/simplejpeg/compare/1.6.1...1.6.2
[1.6.1]: https://github.com/jfolz/simplejpeg/compare/1.6.0...1.6.1
[1.6.0]: https://github.com/jfolz/simplejpeg/compare/1.5.0...1.6.0
[1.5.0]: https://github.com/jfolz/simplejpeg/compare/1.4.1...1.5.0
[1.4.1]: https://github.com/jfolz/simplejpeg/compare/1.4.0...1.4.1
[1.4.0]: https://github.com/jfolz/simplejpeg/compare/1.3.9...1.4.0
[1.3.9]: https://github.com/jfolz/simplejpeg/compare/1.3.8...1.3.9
[1.3.8]: https://github.com/jfolz/simplejpeg/compare/1.3.7...1.3.8
[1.3.7]: https://github.com/jfolz/simplejpeg/compare/1.3.6...1.3.7
[1.3.6]: https://github.com/jfolz/simplejpeg/compare/1.3.5...1.3.6
[1.3.5]: https://github.com/jfolz/simplejpeg/compare/1.3.4...1.3.5
[1.3.4]: https://github.com/jfolz/simplejpeg/compare/1.3.3...1.3.4
[1.3.3]: https://github.com/jfolz/simplejpeg/compare/1.3.2...1.3.3
[1.3.2]: https://github.com/jfolz/simplejpeg/compare/1.3.1...1.3.2
[1.3.1]: https://github.com/jfolz/simplejpeg/compare/1.3.0...1.3.1
[1.3.0]: https://github.com/jfolz/simplejpeg/compare/1.2.6...1.3.0
[1.2.6]: https://github.com/jfolz/simplejpeg/compare/1.2.5...1.2.6
[1.2.5]: https://github.com/jfolz/simplejpeg/tree/1.2.5