summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Winship <danw@gnome.org>2013-12-16 16:42:02 -0500
committerDan Winship <danw@gnome.org>2013-12-16 16:42:02 -0500
commit501bd45cee95b35d097471db2896a36747048b9a (patch)
tree40894e47213ee6004d4a50ef309e70f7960ae4c3
parent28bec1b4fc48dca58f347ec51916269a90218f65 (diff)
downloadlibsoup-501bd45cee95b35d097471db2896a36747048b9a.tar.gz
2.45.32.45.3
-rw-r--r--NEWS57
-rw-r--r--configure.ac2
2 files changed, 58 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index aa7606e7..dab58d61 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,60 @@
+Changes in libsoup from 2.44.1 to 2.45.3:
+
+ * The documentation has finally been updated to reflect the
+ new APIs added in 2.42.
+
+ * Added GBytes-valued :request-body-data and
+ :response-body-data properties to SoupMessage, which should
+ help some bindings.
+
+ * We now set TCP_NODELAY on sockets, improving throughput a
+ bit. In particular, this avoids an unnecessary extra round
+ trip in the TLS handshake.
+
+ * The SoupSession APIs that return GErrors now return the
+ actual underlying gio errors in the event of connection
+ failures and the like.
+
+ * Updated the copy of the Public Suffix list used by soup-tld.
+
+ * Fixed a hang with internet radio streams in Rhythmbox (and
+ some other places). [#710494, Dan]
+
+ * Fixed a connection leak when cancelling the close of
+ a message GInputStream. [#711260, Dan]
+
+ * Updated the soup_server_pause_message() /
+ soup_server_unpause_message() documentation to clarify when
+ you can and can't call them. [#710602, Philip Withnall]
+
+ * soup_message_set_request() and soup_message_set_response()
+ now g_warn_if_fail() if you pass an invalid Content-Type.
+ (And they also have better introspection annotations.)
+ [#686766, Dan]
+
+ * Plugged a few memory leaks [#711085, Christophe Fergeau]
+
+ * Fixed connection-test to pass with current glib [#711361,
+ Colin Walters]
+
+ * session-test now passes when run against the dummy TLS
+ backend (ie, if you don't have glib-networking installed),
+ as long as you have the latest glib.
+
+ * Fixed build with -Werror=format-nonliteral [#720082, Ryan
+ Lortie]
+
+ * Fix build with --without-ntlm [#710267, Dan]
+
+ * Fixed a few warnings [Dan, Fabiano FidĂȘncio]
+
+ * Tests are now more verbose by default under "make check",
+ since current automake just redirects all the output to a
+ log file anyway.
+
+ * Updated translations:
+ Chinese
+
Changes in libsoup from 2.44.0 to 2.44.1:
* If you called g_input_stream_close() on SoupMessage or
diff --git a/configure.ac b/configure.ac
index 3759baba..f60744a5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4,7 +4,7 @@ dnl *******************************************
m4_define([soup_major_version], [2])
m4_define([soup_minor_version], [45])
-m4_define([soup_micro_version], [0])
+m4_define([soup_micro_version], [3])
AC_PREREQ(2.63)
AC_INIT([libsoup],[soup_major_version.soup_minor_version.soup_micro_version],[http://bugzilla.gnome.org/enter_bug.cgi?product=libsoup])