summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorDan Winship <danw@gnome.org>2009-07-13 10:21:38 -0400
committerDan Winship <danw@gnome.org>2009-07-13 11:04:54 -0400
commita39704267d133c205f86962ce1dc224e29ea84ae (patch)
treea1e12db9e7faf6e501d69825bbe49eb209f99979 /NEWS
parent610d57f7d31a52a12c8093cd158f4a496f75e920 (diff)
downloadlibsoup-a39704267d133c205f86962ce1dc224e29ea84ae.tar.gz
libsoup-a39704267d133c205f86962ce1dc224e29ea84ae.tar.bz2
libsoup-a39704267d133c205f86962ce1dc224e29ea84ae.zip
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS22
1 files changed, 22 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 534e70c9..6c3524b5 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,25 @@
+Changes in libsoup from 2.27.2 to 2.27.4:
+
+ * Added SoupContentSniffer and the "content-sniffed" signal on
+ SoupMessage, to do Content-Type sniffing per the HTML5 /
+ draft-abarth-mime-sniff algorithm. [#572589, Gustavo Noronha
+ Silva]
+
+ * Updated the earlier SoupSession timeout fixes ([#574414],
+ [#578928]) so that async connect() also times out [#588177,
+ Mark Nauwelaerts] and SSL works on Windows again [#587910,
+ Fridrich Strba].
+
+ * Fixed the behavior on a 301 response to a POST to match
+ real-world usage rather than what the spec says. (We were
+ doing the right thing on 302 and 303, but had missed 301.)
+ [#586692]
+
+ * Changed configure so that if GNUTLS isn't found then it
+ errors out, rather than silently building an SSL-less
+ libsoup. Configure with --disable-ssl if you actually don't
+ want SSL. [#584955]
+
Changes in libsoup from 2.27.1 to 2.27.2:
* Replaced SoupProxyResolver with SoupProxyURIResolver, which