From: "Igor Zornik" Subject: [UPDATE] www/minify 2.24.13 -> 2.24.16 To: "OpenBSD ports" Date: Tue, 11 Aug 2026 20:09:19 +0200 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 11 Aug 2026 17:43:47 -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.16 DISTNAME = minify-${MODGO_VERSION} @@ -14,11 +14,11 @@ MAINTAINER = Igor Zornik