From 28afe23c45f18a0e353f6004ed16e624e95dc3f2 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 11 Nov 2025 21:26:53 +0530 Subject: [PATCH] Bump version of imaging This adds go native support for JPEG images using "non-standard" subsample ratios. Thanks to that and the rest of my work to add support for ICC profiles, we can now decode jpegli images using the builtin backend. That's a month of my life I will never get back coz Go's imaging libraries are utterly unmaintained and not fit for purpose. Fixes #8908 --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index b7ff3a145..2c71b2a2f 100644 --- a/go.mod +++ b/go.mod @@ -14,7 +14,7 @@ require ( github.com/kovidgoyal/dbus v0.0.0-20250519011319-e811c41c0bc1 github.com/kovidgoyal/go-parallel v1.1.1 github.com/kovidgoyal/go-shm v1.0.0 - github.com/kovidgoyal/imaging v1.8.8 + github.com/kovidgoyal/imaging v1.8.9 github.com/seancfoley/ipaddress-go v1.7.1 github.com/shirou/gopsutil/v4 v4.25.10 github.com/zeebo/xxh3 v1.0.2 diff --git a/go.sum b/go.sum index 1a5d4acb2..a2f2ca8e2 100644 --- a/go.sum +++ b/go.sum @@ -34,8 +34,8 @@ github.com/kovidgoyal/go-parallel v1.1.1 h1:1OzpNjtrUkBPq3UaqrnvOoB2F9RttSt811ui github.com/kovidgoyal/go-parallel v1.1.1/go.mod h1:BJNIbe6+hxyFWv7n6oEDPj3PA5qSw5OCtf0hcVxWJiw= github.com/kovidgoyal/go-shm v1.0.0 h1:HJEel9D1F9YhULvClEHJLawoRSj/1u/EDV7MJbBPgQo= github.com/kovidgoyal/go-shm v1.0.0/go.mod h1:Yzb80Xf9L3kaoB2RGok9hHwMIt7Oif61kT6t3+VnZds= -github.com/kovidgoyal/imaging v1.8.8 h1:PohlAOYuokFtmt6sjhgA90YAUKhuuL3i0dhd5gepp4g= -github.com/kovidgoyal/imaging v1.8.8/go.mod h1:GAbZkbyB86PSfosof5EnS2o6N15yUk9Vy2r61EWy1Wg= +github.com/kovidgoyal/imaging v1.8.9 h1:6YS8DCZfq/HHiOUMw2rM2GWkOe1Dc2wK5FlN7/ki4yg= +github.com/kovidgoyal/imaging v1.8.9/go.mod h1:ZcaLxFLdn9I+a9hyI847Q8CYtC5J0bAYbG3+WG8DM9Y= github.com/lufia/plan9stats v0.0.0-20230326075908-cb1d2100619a h1:N9zuLhTvBSRt0gWSiJswwQ2HqDmtX/ZCDJURnKUt1Ik= github.com/lufia/plan9stats v0.0.0-20230326075908-cb1d2100619a/go.mod h1:JKx41uQRwqlTZabZc+kILPrO/3jlKnQ2Z8b7YiVw5cE= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=