summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Winship <danw@gnome.org>2013-09-16 18:18:20 -0400
committerDan Winship <danw@gnome.org>2013-09-16 18:18:20 -0400
commit70b0173962cfd4252a01e7d849a6b0f24dbcb927 (patch)
tree2d259662fb1542663d5aca32abe885ed45f19e72
parent2b9345730cd95ea9efb4e1b78d40574f6c316f96 (diff)
downloadlibsoup-70b0173962cfd4252a01e7d849a6b0f24dbcb927.tar.gz
-rw-r--r--NEWS30
-rw-r--r--configure.ac2
2 files changed, 31 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index befc5fc8..fd8b680f 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,33 @@
+Changes in libsoup from 2.43.90 to 2.43.92:
+
+ * Fixed a bug in the connection-pool code, which would in
+ certain cases accidentally keep using a connection after a
+ message was cancelled while in progress, causing the next
+ request on that connection to get the response to the
+ previous request, etc. [#708006, David Woodhouse]
+
+ * Fixed some problems when falling back from samba
+ single-sign-on-based NTLM to ordinary ask-for-a-password
+ NTLM. [#703186, David Woodhouse]
+
+ * When sending a conditional GET request, SoupCache now
+ preserves the original message's list of disabled features,
+ ensure that it gets back the same kind of response the
+ original message would have. [#706338, Andre Moreira
+ Magalhaes]
+
+ * Fixed a warning when the remote host closes the connection
+ while we are writing something using chunked encoding.
+ [#703297, Dan]
+
+ * Added SoupServer:http-aliases and :https-aliases properties,
+ to specify URI schemes that should be treated as though they
+ were http (just like SoupSession:http-aliases and
+ :https-aliases, but on the server side). [#703694, Dan]
+
+ * Fixed race conditions in cache-test and timeout-test that
+ could case spurious failures. [#698305, #660581, Dan]
+
Changes in libsoup from 2.43.5 to 2.43.90:
* Fixed the handling of unsatisfiable range requests in
diff --git a/configure.ac b/configure.ac
index 742e5435..7dcc2983 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4,7 +4,7 @@ dnl *******************************************
m4_define([soup_major_version], [2])
m4_define([soup_minor_version], [43])
-m4_define([soup_micro_version], [90])
+m4_define([soup_micro_version], [92])
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])