Releases: webp-sh/webp_server_go
WebP Server Go 0.13.3
What's Changed
- Bump github.com/davidbyttow/govips/v2 from 2.15.0 to 2.16.0 by @dependabot in #378
- Bump to Go 1.24 by @n0vad3v in #380
- Correctly handle non-image file when using remote backend by @n0vad3v in #382
- Bump github.com/valyala/fasthttp from 1.58.0 to 1.59.0 by @dependabot in #379
- Drop old version of glibc by @n0vad3v in #384
Full Changelog: 0.13.1...0.13.3
WebP Server Go 0.13.1
What's Changed
Now you can control log level using --verbosity
flag on startup, e,g: ./webp-server --verbosity 0
0 = silent (no log messages)
1 = error (error messages only)
2 = warn (error messages and warnings only)
3 = info (error messages, warnings and normal activity logs)
4 = debug (all info plus additional messages for debugging)
Full Changelog: 0.13.0...0.13.1
WebP Server Go 0.13.0
What's Changed
- Allow user to send files directly if not image, some related issues:
- Skip processing some image and render them directly(e,g source image type is already WebP)
- Port Metadata function from WebP Cloud to WebP Server Go
- Render optimized(WebP/AVIF) image if source image is HEIC and browser doesn't support it
- Always render supported image format for browser, e.g: source image is AVIF,
CONVERT_TYPES
is["webp","avif"]
and browser only supportimage/webp
, in this case, webp image will be served
More info can be found at WebP Server Go 0.13.0 is released - WebP Cloud Services Blog or WebP Server Go 0.13.0 发布
Full Changelog: 0.12.3...0.13.0
WebP Server Go 0.12.3
What's Changed
- Add prefetch-foreground by @n0vad3v in #365, documentation can be found at https://docs.webp.sh/usage/prefetch/
- Bump github.com/stretchr/testify from 1.9.0 to 1.10.0 by @dependabot in #366
- Bump github.com/schollz/progressbar/v3 from 3.14.6 to 3.17.1 by @dependabot in #362
Full Changelog: 0.12.2...0.12.3
WebP Server Go 0.12.2
What's Changed
Full Changelog: 0.12.1...0.12.2
WebP Server Go 0.12.1
What's Changed
- Bump github.com/gofiber/fiber/v2 from 2.52.4 to 2.52.5 by @dependabot in #346
- Bump github.com/schollz/progressbar/v3 from 3.14.4 to 3.14.5 by @dependabot in #348
- Bump github.com/schollz/progressbar/v3 from 3.14.5 to 3.14.6 by @dependabot in #350
- Bump to Go 1.23 by @n0vad3v in #353
- Add iOS 18 support by @n0vad3v in #360
Full Changelog: 0.12.0...0.12.1
WebP Server Go 0.12.0
What's Changed
- Added
MAX_CACHE_SIZE
config by @n0vad3v in #344, which will solve the following issues: - Bugfix:
CACHE_TTL
should beWEBP_CACHE_TTL
in environment variable.
About MAX_CACHE_SIZE
MAX_CACHE_SIZE
is set in number, with unit of MiB, the default value is 0, which will remain current setup, if this value is set, for example 50, then a background task will run alongside with WebP Server Go once per minute, that task will ensure the following directories will be below 50MiB, seperately.
./metadata
./exhaust
./remote-raw
If any of the above directories' size goes above setting value, the oldest file will be deleted to make space.
Note, this will keep the above directories' size seperately, so there can be the following situation with total size of 101MiB.
./metadata
(4MiB)./exhaust
(48MiB)./remote-raw
(49MiB)
New Contributors
- @syedcherry made their first contribution in #337
Full Changelog: 0.11.3...0.12.0
WebP Server Go 0.11.3
WebP Server Go 0.11.2
What's Changed
Full Changelog: 0.11.1...0.11.2
WebP Server Go 0.11.1
What's Changed
- Fix: Use Accept header(
Accept: image/jxl
) to render jxl images for Firefox by @n0vad3v in #326, fixes #325
Full Changelog: 0.11.0...0.11.1