diff options
author | Dan Winship <danw@gnome.org> | 2013-02-18 18:25:25 -0500 |
---|---|---|
committer | Dan Winship <danw@gnome.org> | 2013-02-18 18:25:25 -0500 |
commit | 351cbb0cfc773d371fd667183317d6041089dcc9 (patch) | |
tree | ae0803919c1fefd0be9289de5382a7e2464c87c8 | |
parent | 2c327266a6ccf1417a1b723562a4850756545870 (diff) | |
download | libsoup-351cbb0cfc773d371fd667183317d6041089dcc9.tar.gz libsoup-351cbb0cfc773d371fd667183317d6041089dcc9.tar.bz2 libsoup-351cbb0cfc773d371fd667183317d6041089dcc9.zip |
-rw-r--r-- | NEWS | 30 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 31 insertions, 1 deletions
@@ -1,3 +1,33 @@ +Changes in libsoup from 2.41.5 to 2.41.90: + + * Added SoupSession:local-address property, which allows you + to force connections to bind to a particular local address + (eg, to control the interface that is used). [#693215, Jonh + Wendell] + + * Fixed SoupCache to properly handle messages that get + cancelled, and added tests for this. [#692310, Sergio] + + * Fixed a reference leak in SoupCache that resulted in + epiphany hanging for several seconds on exit and then + eventually printing "Cache flush finished despite X pending + requests". And added more tests. [#682527, Sergio] + + * Fixed SoupAuthNTLM so that SoupSession:authenticate gets + emitted with retrying=TRUE if the first attempt fails (ie, + make it work the same way as SoupAuthBasic and + SoupAuthDigest). [#693222, Dan] + + * Fixed the SoupSession:add-feature-by-type property to accept + non-SoupSessionFeature features as well (eg, auth types) + [Dan] + + * Fixed a build bug that would break all the apache-based + tests if you didn't have PHP installed. [#693311, Dan] + + * Updated translations: + Malayalam, Polish, Serbian, Slovak + Changes in libsoup from 2.41.4 to 2.41.5: * Reverted the change to SoupURI's password handling from diff --git a/configure.ac b/configure.ac index 79026a57..1b120812 100644 --- a/configure.ac +++ b/configure.ac @@ -4,7 +4,7 @@ dnl ******************************************* m4_define([soup_major_version], [2]) m4_define([soup_minor_version], [41]) -m4_define([soup_micro_version], [5]) +m4_define([soup_micro_version], [90]) 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]) |