From 909dda36d91bab03e8908cdaa6c40dd1291a1575 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Mon, 10 Aug 2009 17:15:15 -0400 Subject: [PATCH] 2.27.90 --- NEWS | 31 +++++++++++++++++++++++++++++++ configure.in | 6 +++--- 2 files changed, 34 insertions(+), 3 deletions(-) diff --git a/NEWS b/NEWS index 80dd50a..c7b647d 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,34 @@ +Changes in libsoup from 2.27.5 to 2.27.90: + + * libsoup now uses glib's GResolver rather than its own DNS + code. For 2.27.90, the only visible change should be that + internationalized domain names are now supported. [#548287] + + * Added soup_message_disable_feature(), which allows you to + disable particular features (eg, cookies, proxy, + content-sniffing, etc) on a per-message basis. [#574773] + + * It is now possible to implement "OPTIONS *" in a SoupServer; + you must explicitly register a handler for "*" in order to + do this. [#590751] + + * Ignore Content-Length on EOF-terminated responses, to match + other browsers and therefore cope with broken servers that + send the wrong length. [Patch from Benjamin Otte.] + + * Fixed the status code when trying to fetch an https URI with + a non-gnutls build of libsoup. [#590464] + + * Fixed strict-aliasing warnings introduced in 2.27.4 + [#588771] + + * Fixed some warnings noted by fortify [#591226] and -Wextra. + + * libsoup now uses automake 1.11's silent-rules support by + default (if you are building with automake 1.11). Use + "./configure --disable-silent-rules" or "make V=1" to + disable. + Changes in libsoup from 2.27.4 to 2.27.5: * Fixed a crash when a web server redirected a request to a diff --git a/configure.in b/configure.in index 9e00854..67feff1 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.27.5) +AC_INIT(libsoup, 2.27.90) AC_CONFIG_SRCDIR(libsoup-2.4.pc.in) AC_CONFIG_MACRO_DIR([m4]) @@ -18,10 +18,10 @@ SOUP_API_VERSION=2.4 AC_SUBST(SOUP_API_VERSION) # Increment on interface addition. Reset on removal. -SOUP_AGE=2 +SOUP_AGE=3 # Increment on interface add, remove, or change. -SOUP_CURRENT=3 +SOUP_CURRENT=4 # Increment on source change. Reset when CURRENT changes. SOUP_REVISION=0 -- 2.7.4