pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/net/libsoup3



Module Name:    pkgsrc
Committed By:   adam
Date:           Sun Feb 15 12:43:54 UTC 2026

Modified Files:
        pkgsrc/net/libsoup3: Makefile PLIST distinfo

Log Message:
libsoup3: updated to 3.6.6

Changes in libsoup from 3.6.5 to 3.6.6:

* websocket: Fix out-of-bounds read in process_frame [Mike Gorse]
* Check nulls returned by soup_date_time_new_from_http_string() [Adrian Perez de Castro]
* Numerous fixes to handling of Range headers [Philip Withnall]
* server: close the connection after responsing a request containing Content-Length and Transfer-Encoding [Carlos Garcia Campos]
* Use CRLF as line boundary when parsing chunked enconding data [Carlos Garcia Campos]
* websocket: do not accept messages frames after closing due to an error [Carlos Garcia Campos]
* Sanitize filename of content disposition header values [Carlos Garcia Campos]
* Always validate the headers value when coming from untrusted source [Carlos Garcia Campos]
* uri-utils: do host validation when checking if a GUri is valid [Carlos Garcia Campos]
* multipart: check length of bytes read soup_filter_input_stream_read_until() [Carlos Garcia Campos]
* message-headers: Reject duplicate Host headers [Michael Catanzaro]
* server: null-check soup_date_time_to_string() [Michael Catanzaro]
* auth-digest: fix crash in soup_auth_digest_get_protection_space() [Michael Catanzaro]
* session: fix 'heap-use-after-free' caused by 'finishing' queue item twice [Eugene Mutavchi]
* cookies: Avoid expires attribute if date is invalid [Alynx Zhou]
* http1: Set EOF flag once content-length bytes have been read [Marvin W]
* date-utils: Add value checks for date/time parsing [Milan Crha]
* multipart: Fix multiple boundry limits [Milan Crha]
* Fixed multiple possible memory leaks [Milan Crha]
* message-headers: Correct merge of ranges [Milan Crha]
* body-input-stream: Correct chunked trailers end detection [Milan Crha]
* server-http2: Correctly validate URIs [Milan Crha]
* multipart: Fix read out of buffer bounds under soup_multipart_new_from_message() [Milan Crha]
* headers: Ensure Request-Line comprises entire first line [Brian Yurko]
* tests: Fix MSVC build error [Seungha Yang]
* Fix possible deadlock on init from gmodule usage [Nirbheek Chauhan]

* Add Cornish translation [Flynn Peck]
* Update Turkish translation [Sabri Ünal]
* Update Uighur translation [Abduqadir Abliz]
* Update Romanian translation [Antonio Marin]
* Add Uzbek (Latin) translation [Oyatillo Mamirov]
* Add Kazakh translation [Baurzhan Muftakhidinov]


To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.25 pkgsrc/net/libsoup3/Makefile
cvs rdiff -u -r1.5 -r1.6 pkgsrc/net/libsoup3/PLIST
cvs rdiff -u -r1.7 -r1.8 pkgsrc/net/libsoup3/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/net/libsoup3/Makefile
diff -u pkgsrc/net/libsoup3/Makefile:1.24 pkgsrc/net/libsoup3/Makefile:1.25
--- pkgsrc/net/libsoup3/Makefile:1.24   Fri Feb  6 10:05:34 2026
+++ pkgsrc/net/libsoup3/Makefile        Sun Feb 15 12:43:53 2026
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.24 2026/02/06 10:05:34 wiz Exp $
+# $NetBSD: Makefile,v 1.25 2026/02/15 12:43:53 adam Exp $
 
-DISTNAME=      libsoup-3.6.5
+DISTNAME=      libsoup-3.6.6
 PKGNAME=       ${DISTNAME:S/soup/soup3/}
-PKGREVISION=   5
 CATEGORIES=    net gnome
 MASTER_SITES=  ${MASTER_SITE_GNOME:=sources/libsoup/${PKGVERSION_NOREV:R}/}
 EXTRACT_SUFX=  .tar.xz

Index: pkgsrc/net/libsoup3/PLIST
diff -u pkgsrc/net/libsoup3/PLIST:1.5 pkgsrc/net/libsoup3/PLIST:1.6
--- pkgsrc/net/libsoup3/PLIST:1.5       Fri Apr 18 19:14:32 2025
+++ pkgsrc/net/libsoup3/PLIST   Sun Feb 15 12:43:53 2026
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.5 2025/04/18 19:14:32 wiz Exp $
+@comment $NetBSD: PLIST,v 1.6 2026/02/15 12:43:53 adam Exp $
 include/libsoup-3.0/libsoup/soup-auth-domain-basic.h
 include/libsoup-3.0/libsoup/soup-auth-domain-digest.h
 include/libsoup-3.0/libsoup/soup-auth-domain.h
@@ -81,8 +81,10 @@ share/locale/it/LC_MESSAGES/libsoup-3.0.
 share/locale/ja/LC_MESSAGES/libsoup-3.0.mo
 share/locale/ka/LC_MESSAGES/libsoup-3.0.mo
 share/locale/kab/LC_MESSAGES/libsoup-3.0.mo
+share/locale/kk/LC_MESSAGES/libsoup-3.0.mo
 share/locale/kn/LC_MESSAGES/libsoup-3.0.mo
 share/locale/ko/LC_MESSAGES/libsoup-3.0.mo
+share/locale/kw/LC_MESSAGES/libsoup-3.0.mo
 share/locale/lt/LC_MESSAGES/libsoup-3.0.mo
 share/locale/lv/LC_MESSAGES/libsoup-3.0.mo
 share/locale/ml/LC_MESSAGES/libsoup-3.0.mo
@@ -111,6 +113,7 @@ share/locale/th/LC_MESSAGES/libsoup-3.0.
 share/locale/tr/LC_MESSAGES/libsoup-3.0.mo
 share/locale/ug/LC_MESSAGES/libsoup-3.0.mo
 share/locale/uk/LC_MESSAGES/libsoup-3.0.mo
+share/locale/uz/LC_MESSAGES/libsoup-3.0.mo
 share/locale/uz@cyrillic/LC_MESSAGES/libsoup-3.0.mo
 share/locale/vi/LC_MESSAGES/libsoup-3.0.mo
 share/locale/zh_CN/LC_MESSAGES/libsoup-3.0.mo

Index: pkgsrc/net/libsoup3/distinfo
diff -u pkgsrc/net/libsoup3/distinfo:1.7 pkgsrc/net/libsoup3/distinfo:1.8
--- pkgsrc/net/libsoup3/distinfo:1.7    Fri Apr 18 19:14:32 2025
+++ pkgsrc/net/libsoup3/distinfo        Sun Feb 15 12:43:53 2026
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.7 2025/04/18 19:14:32 wiz Exp $
+$NetBSD: distinfo,v 1.8 2026/02/15 12:43:53 adam Exp $
 
-BLAKE2s (libsoup-3.6.5.tar.xz) = 6ada22d29f92b4e96be467872c2b4cd26df0b8b436f3147c3205edbee4227ab5
-SHA512 (libsoup-3.6.5.tar.xz) = cb44d93b16048d31ae04a8c2416bbe233e0e9bdaf2d9bfe2879260fd3da27e90a0bb05cddbd82cdf81a4a778bd451ad172a14dd31e2fd113c3bbbe13c0029b03
-Size (libsoup-3.6.5.tar.xz) = 1568404 bytes
+BLAKE2s (libsoup-3.6.6.tar.xz) = 25cb4330315286c1678edf7ebe7e659141e76bea9a5156414cf5ca0dbf8ea2f5
+SHA512 (libsoup-3.6.6.tar.xz) = 4018dc6f9823fd82cde0fecbb50cd1b5dd0ff4963f92f7ea465e67faf81e71580709eec59914ddbdff317963a88e4a8024e60e44087041175bc21e04022857d2
+Size (libsoup-3.6.6.tar.xz) = 1572004 bytes



Home | Main Index | Thread Index | Old Index