diff --git a/CHANGELOG.md b/CHANGELOG.md index b1df79d9..e0bb78b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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; diff --git a/main.go b/main.go index ab3c398c..b942f965 100644 --- a/main.go +++ b/main.go @@ -9,7 +9,7 @@ import ( "time" ) -const version = "2.2.13" +const version = "2.3.0" type ctxKey string