Browse Source

Bump version; Update changelog

DarthSim 6 years ago
parent
commit
95d6ec17e9
2 changed files with 14 additions and 1 deletions
  1. 13 0
      CHANGELOG.md
  2. 1 1
      main.go

+ 13 - 0
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;

+ 1 - 1
main.go

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