1
0
mirror of https://github.com/imgproxy/imgproxy.git synced 2024-11-24 08:12:38 +02:00

Bump version; Update changelog

This commit is contained in:
DarthSim 2019-06-25 16:17:03 +06:00
parent 4a59e3d625
commit 95d6ec17e9
2 changed files with 14 additions and 1 deletions

View File

@ -1,5 +1,18 @@
# Changelog
## v2.3.0
- `libvips` v8.8 support: better processing of animated GIFs, built-in CMYK profile, better WebP scale-on-load, etc;
- Animated WebP support. `IMGPROXY_MAX_GIF_FRAMES` is deprecated, use `IMGPROXY_MAX_ANIMATION_FRAMES`;
- [HEIC support](./docs/image_formats_support.md#heic-support);
- [crop](./docs/generating_the_url_advanced.md#crop) processing option. `resizing_type:crop` is deprecated;
- Offsets for [gravity](./docs/generating_the_url_advanced.md#gravity);
- Resizing type `auto`. If both source and resulting dimensions have the same orientation (portrait or landscape), imgproxy will use `fill`. Otherwise, it will use `fit`;
- Development errors mode. When `IMGPROXY_DEVELOPMENT_ERRORS_MODE` is true, imgproxy will respond with detailed error messages. Not recommended for production because some errors may contain stack trace;
- Better stack trace for image processing errors;
- Allowed URL query for `/health`;
- `IMGPROXY_KEEP_ALIVE_TIMEOUT` config.
## v2.2.13
- Better shrink-on-load;

View File

@ -9,7 +9,7 @@ import (
"time"
)
const version = "2.2.13"
const version = "2.3.0"
type ctxKey string