OBS User unknown 2009-05-28 00:30:51 +00:00 committed by Git OBS Bridge
parent 7dab06e908
commit 056804fa00
4 changed files with 61 additions and 6 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bfc37afcfcc5f182dd2b80b4c21aa3262c7719173ee27bc45ffb00a6a8267c78
size 736811

3
libsoup-2.27.1.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:80f171b3c5d3274b468182ddb3648428e371e9948059cb86ab88a00192b75a85
size 687298

View File

@ -1,3 +1,32 @@
-------------------------------------------------------------------
Tue May 5 16:53:34 CEST 2009 - vuntz@novell.com
- Update to version 2.27.1:
+ SOUP_SESSION_TIMEOUT now works properly with SoupSessionAsync
[bgo#574414] and SSL [bgo#578928]. Added tests/timeout-test to
test this.
+ SoupDate fixes:
- soup_date_to_string() now handles SOUP_DATE_RFC2822
[bgo#579055]
- 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. [bgo#579318]
+ Fix a crash when cancelling a message from a "restarted"
handler, and updated a regression test to notice the underlying
cause. [bgo#380193]
+ Completing the API updates for bgo#576760 from 2.26.1,
soup_message_headers_get() is now marked deprecated in favor of
soup_message_headers_get_one() and _get_list().
- Do not package ChangeLog file: it's not distributed anymore.
-------------------------------------------------------------------
Tue Apr 14 14:55:43 CEST 2009 - vuntz@novell.com

View File

@ -1,5 +1,5 @@
#
# spec file for package libsoup (Version 2.26.1)
# spec file for package libsoup (Version 2.27.1)
#
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@ -36,7 +36,7 @@ Obsoletes: libsoup-64bit
%endif
#
Summary: Simple Object Access Protocol (SOAP)
Version: 2.26.1
Version: 2.27.1
Release: 1
Source: ftp://ftp.gnome.org/pub/GNOME/stable/sources/libsoup/2.2/%{name}-%{version}.tar.bz2
Url: http://www.gnome.org
@ -153,7 +153,7 @@ rm -rf $RPM_BUILD_ROOT
%files 2_4-1
%defattr(-, root, root)
%doc README COPYING ChangeLog NEWS AUTHORS
%doc README COPYING NEWS AUTHORS
%{_libdir}/*.so.*
%files devel
@ -165,6 +165,32 @@ rm -rf $RPM_BUILD_ROOT
%{_datadir}/gtk-doc/html/libsoup-2.4
%changelog
* Tue May 05 2009 vuntz@novell.com
- Update to version 2.27.1:
+ SOUP_SESSION_TIMEOUT now works properly with SoupSessionAsync
[bgo#574414] and SSL [bgo#578928]. Added tests/timeout-test to
test this.
+ SoupDate fixes:
- soup_date_to_string() now handles SOUP_DATE_RFC2822
[bgo#579055]
- 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. [bgo#579318]
+ Fix a crash when cancelling a message from a "restarted"
handler, and updated a regression test to notice the underlying
cause. [bgo#380193]
+ Completing the API updates for bgo#576760 from 2.26.1,
soup_message_headers_get() is now marked deprecated in favor of
soup_message_headers_get_one() and _get_list().
- Do not package ChangeLog file: it's not distributed anymore.
* Tue Apr 14 2009 vuntz@novell.com
- Update to version 2.26.1:
+ Fix SoupProxyResolverGNOME bugs [bgo#578746, bgo#578809]