summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Winship <danw@gnome.org>2009-05-04 21:27:15 -0400
committerDan Winship <danw@gnome.org>2009-05-04 21:27:15 -0400
commit70afdae62aaca0ce3558df9e2e05ce35404fd788 (patch)
tree6c816c8bb6bf075b34876f4ff35bb30c4e112949
parente4ce08805b3d13bbc4bcd17a0bd30609c10bac1d (diff)
downloadlibsoup-LIBSOUP_2_27_1.tar.gz
-rw-r--r--NEWS35
-rw-r--r--configure.in2
2 files changed, 36 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 73f99829..26a8f0cc 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,38 @@
+Changes in libsoup from 2.26.1 to 2.27.1:
+
+ * SOUP_SESSION_TIMEOUT now works properly with
+ SoupSessionAsync [#574414] and SSL [#578928]. Added
+ tests/timeout-test to test this.
+
+ * SoupDate fixes:
+
+ * soup_date_to_string() now handles SOUP_DATE_RFC2822
+ [#579055, Enrico Tröger]
+
+ * soup_date_new_from_string() now accepts 24:00 as a
+ time in ISO8601 timestamps
+
+ * soup_date_to_string() now coerces the date to UTC
+ for HTTP and cookie dates, and outputs the UTC
+ correct offset for the other date types.
+
+ * Added regression tests to tests/date
+
+ * soup_headers_parse() now completely ignores
+ syntactically-incorrect headers, rather than passing them to
+ soup_message_headers_append() and causing a g_warning.
+ soup_message_headers_append() now also rejects 0-length
+ header names. Updated tests/header-parsing to check this.
+ [#579318]
+
+ * Fix a crash when cancelling a message from a "restarted"
+ handler, and updated a regression test to notice the
+ underlying cause. [#380193]
+
+ * Completing the API updates for #576760 from 2.26.1,
+ soup_message_headers_get() is now marked deprecated in favor
+ of soup_message_headers_get_one() and _get_list().
+
Changes in libsoup from 2.26.0 to 2.26.1:
* libsoup uses libproxy for PAC and WPAD proxy resolution
diff --git a/configure.in b/configure.in
index 529c9a63..3ed1a4b1 100644
--- a/configure.in
+++ b/configure.in
@@ -3,7 +3,7 @@ dnl *** Initialize automake and set version ***
dnl *******************************************
AC_PREREQ(2.53)
-AC_INIT(libsoup, 2.26.1)
+AC_INIT(libsoup, 2.27.1)
AC_CONFIG_SRCDIR(libsoup-2.4.pc.in)
AM_INIT_AUTOMAKE([foreign])