From: "Igor Zornik" Subject: Re: [UPDATE] www/minify 2.24.13 -> 2.24.17 To: "OpenBSD ports" Date: Wed, 12 Aug 2026 23:31:09 +0200 Eh, a surprise release just a few hours after my previous submission. It's a small change so I think we can include in this batch. I hope we're good for a while now. Diff below the quote. Changelog: - JS: Fix variable binding for private declaration usage in OptionalMember. Detailed changelog is available at https://github.com/tdewolff/minify/releases/tag/v2.24.17 On Tue Aug 11, 2026 at 8:09 PM CEST, Igor Zornik wrote: > Hello, ports. > > Since my uncommitted submission for version 2.24.14, they released > two new versions of minify. You may disregard the request made in > https://marc.info/?l=openbsd-ports&m=178586391917055&w=2 concerning the > commit. Everything else still applies. > > Tested on today's amd64. Still works. QP-encoded diff below the > changelogs. Someone please commit if OK. > > Changelog (v2.24.15) > - CSS: Fix slow parser for extremely long declarations when removing superfluous > whitespace. > - strconv: Restore the negative-exponent fast path in ParseDecimal. > - strconv: Fix ParseFloat exponent and overflow bookkeeping. > - xml/svg: Keep whitespace character references in text content. > - XML/SVG: Preserve whitespace character references in attribute values. > - CSS: Add semicolon to non-block at rule at the EOF. > > Changelog (v2.24.16) > - Fix previous release. > > Detailed changelogs are available at > https://github.com/tdewolff/minify/releases/tag/v2.24.15 > and > https://github.com/tdewolff/minify/releases/tag/v2.24.16 > Index: Makefile =================================================================== RCS file: /cvs/ports/www/minify/Makefile,v retrieving revision 1.5 diff -u -p -u -p -r1.5 Makefile --- Makefile 21 May 2026 20:48:43 -0000 1.5 +++ Makefile 12 Aug 2026 09:36:29 -0000 @@ -1,7 +1,7 @@ COMMENT = minifiers for web formats MODGO_MODNAME = github.com/tdewolff/minify/v2 -MODGO_VERSION = v2.24.13 +MODGO_VERSION = v2.24.17 DISTNAME = minify-${MODGO_VERSION} @@ -14,11 +14,11 @@ MAINTAINER = Igor Zornik