[l10n] Updated Estonian translation
[platform/upstream/libsoup.git] / NEWS
1 Changes in libsoup from 2.41.90 to 2.41.91:
2
3         * Fixed a crash that showed up with XMLRPC requests in
4           WebKitGTK. [#694920, Sergio]
5
6         * Fixed SoupCache to update the cached headers when it
7           receives a 304 Not Modified response, and added a test for
8           this. [#695121, Sergio]
9
10         * libsoup now builds under automake 1.13 (and "make check"
11           works under the parallel test harness which is the default
12           in 1.13) [#694135]
13
14         * The tests/ directory now contains only actual test programs
15           that are run by "make check", and the programs that are
16           intended more as example code are under examples/.
17
18         * New/updated translations:
19           Aragonese, Chinese (traditional), Czech, Galician, Hebrew,
20           Lithuanian, Norwegian bokmål, Punjabi, Spanish, Uyghur,
21           Vietnamese
22
23 Changes in libsoup from 2.41.5 to 2.41.90:
24
25         * Added SoupSession:local-address property, which allows you
26           to force connections to bind to a particular local address
27           (eg, to control the interface that is used). [#693215, Jonh
28           Wendell]
29
30         * Fixed SoupCache to properly handle messages that get
31           cancelled, and added tests for this. [#692310, Sergio]
32
33         * Fixed a reference leak in SoupCache that resulted in
34           epiphany hanging for several seconds on exit and then
35           eventually printing "Cache flush finished despite X pending
36           requests". And added more tests. [#682527, Sergio]
37
38         * Fixed SoupAuthNTLM so that SoupSession:authenticate gets
39           emitted with retrying=TRUE if the first attempt fails (ie,
40           make it work the same way as SoupAuthBasic and
41           SoupAuthDigest). [#693222, Dan]
42
43         * Fixed the SoupSession:add-feature-by-type property to accept
44           non-SoupSessionFeature features as well (eg, auth types)
45           [Dan]
46
47         * Fixed a build bug that would break all the apache-based
48           tests if you didn't have PHP installed. [#693311, Dan]
49
50         * Updated translations:
51           Malayalam, Polish, Serbian, Slovak
52
53 Changes in libsoup from 2.41.4 to 2.41.5:
54
55         * Reverted the change to SoupURI's password handling from
56           2.41.4, since it turns out to have broken some things.
57           [#692149, Dan]
58
59         * Avoid a g_return_if_fail() when loading
60           SoupSession:ssl-ca-file fails. [#691930, Guillaume
61           Desmottes]
62
63         * Fixed a bug in SoupBodyInputStream that caused redirects in
64           WebKitGTK to hang. [#692026, Sergio]
65
66         * Updated translations:
67           Belarusian, Chinese (traditional), German, Italian,
68           Norwegian bokmål, Serbian, Uyghur
69
70 Changes in libsoup from 2.41.3 to 2.41.4:
71
72         * Lots of docs fixes, including catching up with some (but not
73           all!) of the API additions and deprecations, and a new
74           chapter with hints on porting from
75           SoupSessionAsync/SoupSessionSync to the new-and-improved
76           plain SoupSession.
77
78         * The plain SoupSession type now supports
79           soup_session_queue_message() (with SoupSessionAsync
80           semantics) and soup_session_send_message() (with
81           SoupSessionSync semantics), and there are now
82           soup_session_new() and soup_session_new_with_options().
83
84         * The mirroring of the SoupMessage API onto SoupRequestHTTP,
85           added in 2.41.3, has been reverted. However, new APIs
86           soup_session_send() and soup_session_send_async() have been
87           added that let you use the GInputStream-based API with
88           SoupMessages rather than SoupRequest, so if you're doing
89           HTTP-specific stuff, you can just use that instead.
90
91         * soup_message_get_https_status() now returns the certificate
92           and flags for unsuccessful https connections as well as
93           successful ones. [#690176]
94
95         * Fixed a deadlock when calling soup_session_abort() on a
96           SoupSessionSync in some cases. [#691399] 
97
98         * Internal SoupCache rewrites/improvements [#682112, Sergio]
99
100         * Plugged a memory leak in SoupCache [#690382, Sudarsana
101           Nagineni] and one in SoupAuthDigest [#690142]
102
103         * LIBSOUP_DISABLE_DEPRECATED has been renamed to
104           SOUP_DISABLE_DEPRECATED, but that's just to keep gtk-doc
105           happy, and you shouldn't use it. You should use
106           SOUP_VERSION_MIN_REQUIRED instead.
107
108         * Fixed the samba-windbind-based NTLM support, which appears
109           to have been broken before.
110
111         * SoupAuthManager is now a public class (so you can remove it
112           as a feature from a session, or disable it for a particular
113           message). It also has a new method
114           soup_auto_manager_use_auth(), which can be used to "preload"
115           authentication for a host so that libsoup will use
116           authentication on the very first request.
117
118         * SoupURI now treats "http://user@example.com" as having a
119           password of "" rather than NULL, since a NULL password would
120           not be valid for any known HTTP auth type.
121
122         * build: libsoup now uses autoreconf instead of
123           gnome-autogen.sh, and no longer uses AM_GLIB_GNU_GETTEXT
124           [Javier Jardon].
125
126         * Updated translations:
127           Assamese, Bulgarian, Estonian, Friulian, Galician, Hebrew,
128           Polish, Slovenian, Spanish
129
130 Changes in libsoup from 2.41.2 to 2.41.3 (codename: "I Left My
131 Deprecated APIs in A Coruña"):
132
133         * BUILD DEPENDENCY CHANGES: libsoup-gnome no longer depends on
134           libgnome-keyring, and the sqlite3 dependency has been moved
135           from libsoup-gnome to libsoup proper. (See below).
136
137
138         * SoupRequest is now stable API. SoupRequester, however, is
139           deprecated. Instead you can now call soup_session_request()
140           or soup_session_request_uri() to create a SoupRequest.
141
142           Some documentation has been updated to reflect this, but
143           much more still needs to be (in particular the "Client-side
144           Tutorial").
145
146         * SoupRequestHTTP now has a number of fields and methods that
147           mirror the SoupMessage data, so you don't have to use
148           soup_request_http_get_message() in many cases. On the flip
149           side, there is also now soup_message_get_request(). And you
150           can create a SoupRequestHTTP directly (and override its
151           request method) by using soup_session_request_http() or
152           soup_session_request_http_uri()).
153
154         * soup_message_set_chunk_allocator() is now deprecated; apps
155           that want to do streaming reads should just use SoupRequest,
156           which is vastly more sane.
157
158
159         * SoupPasswordManager is now deprecated, and
160           SoupPasswordManagerGNOME is now a no-op (and libsoup-gnome
161           no longer links against libgnome-keyring). [#594377, #679866]
162
163         * SoupCookieJarSqlite is now deprecated in favor of
164           SoupCookieJarDB, which is exactly the same thing except that
165           it's in libsoup itself rather than being in libsoup-gnome
166           (something that many people have requested). This means that
167           libsoup now requires sqlite3... if this offends you horribly
168           then you have a few months to speak up...
169
170         * SoupProxyResolverGNOME is now deprecated; there hasn't been
171           any real reason to use it since SoupProxyResolverDefault was
172           added.
173
174         * As a result of the last three items, libsoup-gnome now
175           consists entirely of deprecated APIs, and there is no reason
176           you should use it any more (though packagers need to keep
177           building it, for backward compatibility).
178
179
180         * SoupSession is no longer an abstract class, and you can
181           create a plain SoupSession, which behaves in a more
182           traditionally-gio-like way (allowing a mix of sync and async
183           methods, etc). This "plain" SoupSession also has more sane
184           default values of certain properties, and has certain
185           SoupSessionFeatures built in.
186
187           This will eventually replace SoupSessionAsync and
188           SoupSessionSync completely, but most of the documentation
189           hasn't yet been updated at this point...
190
191           This change involved merging the majority of the
192           SoupSessionAsync and SoupSessionSync code into SoupSession,
193           getting rid of lots of redundancy in the process. There may
194           be some bug fallout from this (probably on the
195           SoupSessionSync side, since WebKit's tests tend to shake out
196           all SoupSessionAsync bugs). However, this should help to
197           avoid SoupSessionSync-only bugs in the future, since much
198           more of the code is now shared.
199
200
201         * Usernames and passwords passed into SoupSession a URI will
202           now be cleared after they're used, so that if they are
203           wrong, the authenticate signal will be emitted on the next
204           round. [#689673, Martin Robinson]
205
206         * SoupURI now leaves "%00" in URIs as-is, rather than decoding
207           it to "\0", which was not intended and is never useful.
208
209         * Fixed a bug in SoupBodyOutputStream that could cause libsoup
210           to sometimes use blocking I/O rather than non-blocking when
211           writing chunked message bodies. [#688974, Milan Plzik]
212
213         * Fixed a bug in SoupFilterInputStream that could cause some
214           non-blocking reads to suck up CPU while waiting for the
215           network. (This was noticed with multipart/x-mixed-replace
216           processing; it's not clear if it affected anything else.)
217           [Gustavo]
218
219         * tests: misc small fixes
220
221
222         * New/updated translations:
223           Assamese, Galician, Japanese, Odia, Polish, Spanish
224
225 Changes in libsoup from 2.41.1 to 2.41.2:
226
227         * libsoup-2.4.so and libsoup-gnome-2.4.so now only export the
228           symbols that are part of the public API. (Plus, temporarily,
229           one additional symbol, soup_message_io_cleanup, which is
230           used by gvfs and possibly a few other modules, even though
231           it shouldn't be. If you copied soup-input-stream.c from
232           gvfs, you should port your code to use SoupRequest instead.)
233           [Dan, #595176]
234
235         * Added SOUP_VERSION_MIN_REQUIRED / SOUP_VERSION_MAX_ALLOWED
236           macros like the corresponding glib ones, to allow libsoup
237           users to request per-version deprecation/availability
238           warnings. [Dan]
239
240         * Fixed a crash caused by a race condition in SoupSessionSync,
241           and reorganized some code to avoid other possible similar
242           race conditions. [#684238, Dan]
243
244         * Fixed a crash when a DNS resolution failed, caused by a bug
245           in the GTask porting in 2.41.1. [#688330, Milan Crha]
246
247         * Fixed a problem that would cause g_warning()s in epiphany
248           when browsing sites that (incorrectly) returned empty
249           Cache-Control headers. [#683433, Dan]
250
251         * We now add a Host header to HTTP/1.0 requests as well as
252           HTTP/1.1 ones. [Dan]
253
254         * Fixed a bug in the printing of IPv6 address literals in the
255           Host header in SoupLogger. (They were being sent across the
256           wire correctly, they were just printed wrong by SoupLogger.)
257           [Dan]
258
259         * Belatedly added soup-multipart-input-stream.h to soup.h.
260           [Dan]
261
262         * Removed an evil hack in the long-deprecated
263           SoupProxyResolver code (not to be confused with
264           SoupProxyURIResolver), to avoid warnings with glib master.
265           If you had previously implemented a custom
266           SoupProxyResolver, then it will probably (silently) stop
267           working, but you should have ported it to
268           SoupProxyURIResolver years ago anyway... [Dan, #687659]
269
270         * Fixed a few race conditions in the test programs that could
271           cause "make check" to fail on slow or heavily-loaded
272           machines. [Dan]
273
274         * Further cleaned up and reorganized the internal HTTP I/O
275           codepaths, in preparation for an improved SoupCache.
276           [#682112, Sergio] (This change should not actually be
277           externally noticeable. But if SoupContentDecoder or
278           SoupContentSniffer turns out to be broken in this release,
279           this would be why).
280
281         * New/updated translations:
282           Slovak, Uyghur
283
284 Changes in libsoup from 2.40.1 to 2.41.1:
285
286         * Changed the behavior of NTLM authentication to be more like
287           what other apps apparently do. Now if the user does not
288           specify a domain in the username (eg, "MYDOMAIN\username"),
289           then we will not specify a domain in the NTLM response
290           (rather than assuming that the user is in the server's
291           default domain). People who get broken by this change should
292           be able to fix it by including an explicit domain in their
293           username, but the theory is that no one should get broken by
294           this... If this change does turn out to hurt more than it
295           helps then it may be reverted later. [#624613, Dan, based on
296           a suggestion from David Woodhouse]
297
298         * Fixed a crash caused by a race condition in SoupSessionSync.
299           [#684238, Dan]
300
301         * SoupRequest now supports resource:// URIs, for reading from
302           gresource. [#682721, Carlos]
303
304         * Added new compile-time and runtime APIs for checking the
305           libsoup version. [#684514, Martin Robinson]
306
307         * Updated to take advantage of (and require) glib 2.35;
308           removed all g_type_init() calls and ported to GTask. [Dan]
309
310         * Added support for Apache 2.4 to the unit tests. [Dan]
311
312         * New translations:
313           Uzbek (Cyrillic)
314
315 Changes in libsoup from 2.40.0 to 2.40.1:
316
317         * Improved the parsing of multipart/x-mixed-replace responses.
318           [#685752, Gustavo]
319
320         * Fixed handling of IPv6 address literals. [#684990, Dan]
321
322         * New/updated translations:
323           Catalan, Catalan (Valencian), Norwegian bokmål
324
325 Changes in libsoup from 2.39.92 to 2.40.0:
326
327         * New/updated translations:
328           Bengali (India), Bulgarian, Chinese (Simplified), Estonian,
329           German, Hebrew, Hindi, Hungarian, Latvian, Malayalam,
330           Punjabi, Tamil, Telugu, Thai, Ukranian
331
332 Changes in libsoup from 2.39.91 to 2.39.92:
333
334         * Fixed some g_warnings (and a possible crash) with the
335           soup_request_send_async(). [#683404, Dan]
336
337         * Fixed a hang with SoupSessionSync [#682923, Dan]
338
339         * Handle empty "Cache-Control" headers. [Sergio]
340
341         * New/updated translations:
342           Assamese, Belarusian, Brazilian Portuguese, British English,
343           Chinese (Traditional), Czech, Danish, French, Galician,
344           Greek, Gujarati, Hungarian, Indonesian, Italian, Lithuanian,
345           Marathi, Persian, Polish, Portuguese, Russian, Serbian,
346           Slovenian, Spanish
347
348 Changes in libsoup from 2.39.90 to 2.39.91:
349
350         * Added missing (transfer full) annotation to
351           soup_cookie_jar_add_cookie() and
352           soup_cookie_jar_add_cookie_with_first_party(), fixing
353           crashes in bindings. [#682554, Daniel Drake]
354
355         * Fixed a crash [#682569, Alexander Larsson] and a win32 build
356           problem [#683200, Kalev Lember] introduced by the memory
357           leak fixes in 2.39.90
358
359         * Fixed the SoupMessage:network-event signal, which had been
360           skipping the G_SOCKET_CLIENT_COMPLETE state in tunneled
361           https connections. And added a test for this. [Dan]
362
363         * New/updated translations:
364           French, Japanese, Korean, Latvian, Lithuanian, Polish,
365           Punjabi, Swedish, Tamil
366
367 Changes in libsoup from 2.39.5 to 2.39.90:
368
369         * Added SoupMultipartInputStream, for handling multipart
370           responses (particularly multipart/x-mixed-replace).
371           [#656684, Gustavo]
372
373         * Fixed a potential crash in SoupSessionAsync after the
374           session is finalized.
375
376         * Fixed a regression in soup_tls_is_public_suffix() [#681085,
377           Sergio]
378
379         * Added a SOUP_MESSAGE_IDEMPOTENT flag, so that apps can
380           bypass the "POSTs must be sent on new connections" check,
381           which was causing evolution-ews to have to create a new
382           connection for every request. [#681493, Milan Crha]
383
384         * Changed SoupSession so that pending SoupMessages now hold a
385           ref on the session. It is possible that this will break code
386           that was depending on the old, dumb, behavior (where
387           unreffing the session with messages pending would cause
388           those messages to be cancelled), in which case this will be
389           reverted before 2.40.
390
391         * Fixed memory leaks found by valgrind.
392
393         * Cleaned up some code in SoupCache. [#681509, Sergio]
394
395         * New/updated translations:
396           Bengali (India), Chinese (Traditional), German, Marathi,
397           Turkish, Ukranian
398
399 Changes in libsoup from 2.39.4.1 to 2.39.5:
400
401         * Fixed several bugs in the soup-message-io updates that could
402           cause hangs or I/O errors. [#679527 and other bugs not filed
403           in bugzilla]
404
405         * Fixed SoupServer:async-context to work properly again
406
407         * Further fixes to soup_uri_normalize() when using the
408           "unescape_extra" parameter. [#680018]
409
410         * Fixed soup_xmlrpc_parse_method_call() to handle the case
411           where there is no <params> element (which is legal).
412           [#671661]
413
414         * Fixed the deprecation warning on soup_message_headers_get()
415           [#680143]
416
417         * Added warnings to some erroneous SoupSocket usages rather
418           than returning bogus data. [#673083, Simon McVittie]
419
420         * Fixed build under Windows/MinGW
421
422         * SoupSocket no longer emits the "readable" signal when a
423           socket is disconnected if that socket is non-blocking.
424
425         * Updated public suffix list to the current version.
426
427         * New/Updated translations:
428           Assamese, Chinese (simplified), Esperanto, Galician, Greek, Gujarati,
429           Hebrew, Norwegian bokmål, Russian, Serbian, Slovenian
430
431 Changes in libsoup from 2.39.4 to 2.39.4.1:
432
433         * Fixed indentation problems in tld-parser.py so it will work
434           under python 3. [#680089, "marduk"]
435
436         * Actually fixed cookies in non-suffixed/private domains,
437           which still didn't work after the last fix. [#679230,
438           Carlos]
439
440         * Updated translations:
441           Spanish
442
443 Changes in libsoup from 2.39.3 to 2.39.4:
444
445         * Fixed the SoupRequest codepaths to properly retry in the
446           case where the server closes a persistent connection when we
447           try to use it. [Dan, might be the fix for #679527, but this
448           is not yet confirmed]
449
450         * Fixed the content-type and content-length of requests
451           retrieved from SoupCache. [#680029, Carlos Garcia Campos]
452
453         * Fixed the handling of cookies in non-suffixed and private
454           domains ("localhost", "foo.local", etc) [#679230, Sergio and
455           Dan]
456
457         * Fixed cookie parsing to allow attribute values on "secure"
458           and "HttpOnly". (Neither is supposed to have a value, but it
459           happens in the real world.) [#678753, Dan, based on a patch
460           from "Basavaraj"]
461
462         * Fixed soup_uri_normalize() to not always run the "fixup"
463           codepath. [#680018, pointed out by Yann Soubeyrand]
464
465         * Fixed a (rare) crash when closing the stream returned from
466           SoupRequestHTTP. [Dan]
467
468         * Use G_DEPRECATED on deprecated functions, and then fix up
469           the warnings this caused due to libsoup using its own
470           deprecated functions. [#671770, Javier Jardón]
471
472         * Fixed up "make dist" by, among other things, rewriting
473           tld-parser in python. [#678909, Colin Walters]
474
475         * Removed the "getbug" example program in tests/, which didn't
476           work any more anyway. [Dan]
477
478         * Various internal code cleanups. [Dan] Fixed one crash
479           resulting from this [#680055, Alban Browaeys]; hopefully
480           there won't be any more.
481
482         * New/Updated translations:
483           Assamese, Belarusian, Bulgarian, Chinese (traditional), Hebrew,
484           Indonesian, Lithuanian, Norwegian bokmål, Vietnamese
485
486 Changes in libsoup from 2.39.2 to 2.39.3:
487
488         * Added new functions for comparing domains against the
489           "public suffix" list (http://publicsuffix.org/), and in
490           particular fixed SoupCookieJar to not allow setting cookies
491           in "public" domains (eg, ".co.uk"). [#673802, Sergio]
492
493         * Added two new SoupCookieJar APIs
494           (soup_cookie_jar_get_cookies() and
495           soup_cookie_jar_set_cookie_with_first_party()) as part of
496           fixing the handling of HttpOnly cookies in WebKitGTK.
497           [#677922, Christophe Dumez]
498
499         * Fixed g-i annotation of
500           soup_message_headers_get_content_type(). [#677002, Dan]
501
502         * Updated translations:
503           Galician, Greek, Slovenian, Spanish, Telugu
504
505 Changes in libsoup from 2.39.1 to 2.39.2:
506
507         * Fixed several bugs that resulted from the I/O code rewrite
508           in 2.39.1, and added more test cases to exercise the new
509           code paths:
510
511                 * Problems with cancelling messages from the
512                   got-headers signal [#674747, Dan]
513
514                 * Persistent connections were not always being closed
515                   properly after a message was cancelled mid-response.
516                   [Dan]
517
518                 * Cancelling a SoupRequest before it started I/O
519                   didn't work. [Dan]
520
521                 * Asynchronous HTTP authentication via the SoupRequest
522                   API [#675306, Dan]
523
524                 * Memory leak [#676038, Ray Strode]
525
526                 * Refcounting bug that manifested as a crash in rygel
527                   [#676038, Ray Strode]
528
529                 * Handling failed CONNECT requests via SoupRequest
530                   [#675865, Sergio]
531
532                 * Messages with trailing junk following a compressed
533                   message body [#676477, Dan]
534
535         * Fixed three cache-related bugs that affect some sites
536           (notably Twitter) [Sergio]
537
538         * Fixed a bug in the /usr/bin/ntlm_auth integration when you
539           don't already have credentials cached, and avoid printing
540           warning messages when ntlm_auth is present but not usable.
541           [Dan]
542
543         * Fixed some g-ir-scanner warnings, and included
544           SoupRequester/SoupRequest in the introspected API [#676742,
545           Jasper St. Pierre]
546
547         * Added soup_buffer_get_as_bytes() [#676776, Jasper]
548
549         * New/updated translations:
550           Belarusian, Chinese (simplified), French, Galician, Greek,
551           Hebrew, Polish, Punjabi, Romanian, Slovenian, Spanish
552
553 Changes in libsoup from 2.38.1 to 2.39.1:
554
555         * Major rewrite of the I/O code to use gio streams more
556           directly. In particular, when using SoupRequestHTTP now, the
557           input stream that is returned is actually pulling data from
558           the socket, rather than just repeatedly pausing and
559           unpausing the underlying SoupMessage and waiting for data to
560           be pushed into it. This also means that SoupRequestHTTP now
561           works with SoupSessionSync as well. [#591739, Dan]
562
563           (The SoupRequest API is still protected by unstable-API
564           #ifdefs, but will be made public later in this cycle.)
565
566         * Libsoup now finally supports SOCKS proxies again. [#553269,
567           Dan]
568
569         * Certain error messages returned from the streaming API
570           (SoupRequest, etc) are now localized; more strings will be
571           localized later on.
572
573         * New translations: Galician, Hebrew, Indonesian, Norwegian
574           bokmål, Polish, Russian, Slovenian, Spanish.
575
576         * Added a SoupCookieJar:is-persistent property, to distinguish
577           memory-only jars from SoupCookieJarText and
578           SoupCookieJarSqlite. [#672838, Carlos Garcia Campos]
579
580 Changes in libsoup from 2.38.0 to 2.38.1:
581
582         * Fixed a situation where soup_connection_disconnect() could
583           end up calling g_object_unref(NULL) when an idle connection
584           was closed. [Sergio, #672178]
585
586         * Fixed two warnings when cancelling an in-progress
587           soup_socket_connect_async(). [pointed out on the mailing
588           list by Sven Neumann]
589
590         * Fixed a crash when disposing a SoupServer with open
591           connections. [#673468, Jonny Lamb]
592
593         * Fixed the SoupSession:ssl-use-system-ca-file property to get
594           turned off (rather than on) when you set it to FALSE... Also
595           fixed up the property notifications around the various
596           certificate-verification properties (ssl-ca-file,
597           ssl-use-system-ca-file, and tls-database).
598
599         * Fixed SoupSession to not leak paused SoupMessages that
600           were still in progress when it was unreffed. [#673905]
601
602         * Updated the win32 file: URI code again, to fix regressions
603           in the WebKit tests. [WebKit bug #82484]
604
605 Changes in libsoup from 2.37.92 to 2.38.0:
606
607         * Minor documentation fixes
608
609 Changes in libsoup from 2.37.91 to 2.37.92:
610
611         * Added soup_session_prefetch_dns() and deprecated
612           soup_session_prepare_for_uri(). The new method takes a
613           completion callback, allowing you to know how many DNS
614           resolutions are currently outstanding, so you don't spam the
615           resolver. [Sergio, WebKit bug #41630]
616
617 Changes in libsoup from 2.37.90 to 2.37.91:
618
619         * Fixed an out-of-bounds memory read that could occur when
620           parsing malformed requests/responses.
621
622         * Fixed a build-related bug in Makefile.glib that affected
623           locales such as Estonian where "Z" is not the last (ASCII)
624           letter of the alphabet. [#654395, Priit Laes]
625
626         * Fixed the handling of file: URIs with query components,
627           which got broken in 2.37.90.
628
629         * Fixed SoupAuthManagerNTLM to not fall back to allowing Basic
630           auth when NTLM failed.
631
632         * Further tweaked the warnings/fallback in SoupURI, so that
633           soup_uri_to_string() on an http URI with a NULL path would
634           translate that to "/" like it used to. [#670431]
635
636         * Fixed a warning when cancelling the load of a page with many
637           subresources. [#667245]
638
639         * Use G_GNUC_BEGIN/END_IGNORE_DEPRECATIONS if GLib is new
640           enough, to avoid getting warned about the use of
641           GValueArray.
642
643 Changes in libsoup from 2.37.5 to 2.37.90:
644
645         * libsoup is now beta-testing Makefile.glib from bug 654395.
646           If 2.37.90 fails to build in some strange way that 2.37.5
647           did not, this is probably why.
648
649         * Replaced some of the SoupURI g_return_if_fail()s that were
650           added in 2.37.5 with g_warn_if_fail()s. Although it had
651           always been documented that SoupURIs must have a non-NULL
652           path, most SoupURI functions treated NULL the same as "",
653           and various apps (eg, rhythmbox, midori) were accidentally
654           relying on this. [Dan]
655
656         * Added various return-if-fails and other sanity checks to
657           various functions. [#669479, Robert Swain, Mark Nauwelaerts,
658           Simon McVittie]
659
660         * Updated docs/annotation of soup_form_decode_multipart() to
661           note that all of the out parameters are (allow-none). Fixed
662           the file_control_name parameter to actually allow NULL like
663           the docs already claimed. [#669479, Simon McVittie]
664
665         * Fixed a minor URI parsing bug. (It was allowing URI schemes
666           to contain numbers.) [Dan]
667
668         * Fixed a few memory leaks introduced in the 2.37 cycle. [Dan]
669
670         * Fixed SoupServer to be able to correctly respond to HTTP/1.0
671           requests over IPv6 (which previously would always have
672           returned "400 Bad Request"). [#666399, Dan]
673
674         * Changed SoupSessionAsync to make it possible to finalize it
675           from the "wrong" thread. [#667364, Dan].
676
677         * Fixed SoupCache to not cache resources whose URIs have query
678           components (unless they have explicit cache headers); to not
679           generate broken conditional requests for resources that
680           cannot be conditionally validated; and to not spew warnings
681           when receiving invalid Cache-Control headers. [#668865,
682           Sergio].
683
684 Changes in libsoup from 2.37.4 to 2.37.5:
685
686         * Fixed a bug in SoupSession:use-thread-context [Dan]
687
688         * Fixed the case of cancelling a message from
689           SoupSession::request-started [#668098, Raphael Kubo da
690           Costa]
691
692         * Fixed a crash in epiphany when loading a page with more than
693           1000 or so images. [#668508, Dan]
694
695         * Fixed a bunch of cases involving invalid URLs found while
696           testing SoupServer against an HTTP protocol fuzzer. Also
697           fixed up some documentation/annotations and added some new
698           test cases. [#667637, Simon McVittie]
699
700         * Fixed SoupRequestFile to work on Windows. [Paweł Forysiuk]
701
702 Changes in libsoup from 2.37.3 to 2.37.4:
703
704         * SoupMessage now has a "network-event" signal that can be
705           monitored for information about DNS, proxy lookup, TCP
706           connections, and TLS handshakes. [Dan]
707
708         * The HTTP header parsing code now avoids hitting
709           g_return_if_fails() (and returns an error instead) in a few
710           cases of seriously-invalid headers. [#666316, Simon
711           McVittie, Dan]
712
713         * POSTs and other non-idempotent requests are now always sent
714           on newly-created connections. You can also force this
715           behavior on other messages by setting the
716           SOUP_MESSAGE_NEW_CONNECTION flag. [#578990, Dan]
717
718         * Server-closed idle connections are now detected ahead of
719           time on Windows, preventing occasional spurious "Connection
720           terminated unexpectedly" errors. (This had been fixed on
721           UNIX since 2.28, but the earlier fix didn't work with
722           WinSock.) [#578990, Dan]
723
724         * Plugged a leak in SoupRequestHTTP. [#667099, Xan]
725
726 Changes in libsoup from 2.37.2 to 2.37.3:
727
728         * Now requires glib 2.31
729
730         * Simplified SoupHTTPInputStream and SoupRequestHTTP, allowing
731           related simplifications in WebKit's ResourceHandleSoup. This
732           is an ABI-incompatible change, but SoupHTTPInputStream is an
733           unstable API. [#663451, Dan]
734
735         * Fixed a bug that caused the SOUP_MESSAGE_CERTIFICATE_TRUSTED
736           flag to always be cleared, causing epiphany to claim all
737           https pages were untrusted. [#665182, Dan]
738
739         * Fixed some bugs in the handling of SoupSession:http-aliases
740           and SoupSession:https-aliases.
741
742         * Fixed handling of ACLOCAL_FLAGS [#641470, Craig Keogh]
743
744         * Fixed SoupContentDecoder's "ignore Content-Encoding: gzip
745           because the server didn't actually mean it" hack to handle
746           x-gzip too.
747
748         * Clarified the documentation on SoupSession:ssl-strict
749           [#666280]
750
751 Changes in libsoup from 2.37.1 to 2.37.2:
752
753         * Fixed up the output of SoupDirectoryInputStream, thus
754           improving the display of local directories in WebKit-based
755           browsers. [#662266, Sergio]
756
757         * Fixed a bug introduced in 2.37.1 that caused some cancelled
758           SoupMessages to be leaked. [#662847, Sergio]
759
760         * Added new SoupSession properties "http-aliases" and
761           "https-aliases" that allow you to configure more explicitly
762           what URL protocols are treated as aliases for http (eg,
763           "dav:", "webcal:", etc), and which should be recognized as
764           meaning something else, (eg, "ftp:") [Dan]
765
766         * Added soup_session_would_redirect() and
767           soup_session_redirect_message(), to help users that want to
768           handle some or all redirects themselves. Added
769           soup_message_set_redirect() to make it easier to return
770           redirection responses from a SoupServer. [Dan]
771
772         * Added the SoupSession "use-thread-context" property, which
773           tells it to use GMainContexts in a gio-compliant way (and in
774           particular, allows having different messages running in
775           different GMainContexts on the same SoupSession, though only
776           to a limited extent since SoupSessionAsync is still not
777           thread-safe). In particular, this was added in order to
778           address WebKit bug 68238. [Dan]
779
780         * Made SoupURI %-encode non-ASCII characters when parsing
781           URIs, in particular to fix a problem with certain servers
782           sending syntactically invalid redirects that they would then
783           only interpret correctly if you fixed the syntax for them.
784           (@$!@#! Although the new code is probably more correct than
785           the old code anyway, so...) [#662806, Dan]
786
787         * Fixed a connection-handling bug that could cause problems
788           with servers that requested authentication and then timed
789           out the connection while the application was waiting for the
790           user to enter a password. [#660057, Dan]
791
792         * Made NTLM and Basic authentication handle some non-ASCII
793           usernames and passwords. (NTLM should handle most. It's
794           impossible to fix Basic in the general case.) [#576838,
795           Joachim Breitner, "sponsored by ITOMIG GmbH and the City of
796           Böblingen"]
797
798         * Added support for "deflate" Content-Encoding, so that we can
799           work with broken servers that insisted on using it even
800           though we explicitly indicated in the request headers that
801           we didn't support it. (@$#!#) [#661682, Sergio]
802
803 Changes in libsoup from 2.36.0 to 2.37.1:
804
805         * Fixed a problem with connections being assigned to multiple
806           requests at once after a redirection [#651146, Sergio]. Made
807           soup_session_pause/unpause_message() work in any state, not
808           just while the HTTP I/O is occurring, and used this to add a
809           test case for that bug. [Dan]
810
811         * Ported SoupSession to use GTlsDatabase internally, and added
812           two new properties, SoupSession:use-system-ca-file (to
813           specify that the session should use the default system
814           tlsdb) and SoupSession:tlsdb (to specify a specific tlsdb to
815           use). [Dan]
816
817         * Likewise, added SoupServer:tls-certificate, for specifying a
818           certificate/key for an https server to use.
819
820         * Made SoupHTTPInputStream use memory more efficiently.
821           [#659255, Sergio]
822
823         * Fixed soup_message_get_https_status() to return information
824           more reliably (with latest glib-networking).
825
826         * Bumped the glib requirement to 2.30.0; although libsoup does
827           not use any new glib 2.30 APIs, there are several important
828           bugfixes in glib between 2.28 and 2.30 that libsoup needs.
829           Currently libsoup builds against either glib 2.30.x or glib
830           2.31.x.
831
832 Changes in libsoup from 2.35.92 to 2.36.0:
833
834         * Improvements to gtk-doc documentation. [Dan]
835
836 Changes in libsoup from 2.35.90 to 2.35.92:
837
838         * Fixed a problem where SoupHTTPRequest response bodies could
839           be truncated. [#659256, Sergio]
840
841         * Fixed a bug in copying TLS information from SoupSocket to
842           SoupMessage, causing all https connections to be reported as
843           "untrusted" in epiphany. [Dan]
844
845         * Made SoupSession remove items from its host cache after a
846           while, so that if a host changes IP address, it will
847           eventually try to re-resolve it. [#646959, Sergio]
848
849 Changes in libsoup from 2.35.5 to 2.35.90:
850
851         * Added SOUP_MESSAGE_CAN_REBUILD flag, to use with
852           soup_message_body_set_accumulate(FALSE) on a request body,
853           to indicate that the caller will recreate the request body
854           after it has been discarded if the message needs to be
855           re-sent. [#656650]
856
857         * Fixed the build on mingw-w64 by not using "interface" as
858           as variable name. [#656402, Erik van Pienbroek]
859
860         * (The multihosted https server regression mentioned in the
861           2.35.5 NEWS turned out to be a glib-networking bug, which is
862           fixed as of 2.29.18.)
863
864 Changes in libsoup from 2.35.4 to 2.35.5:
865
866         * Support NTLM single sign on via samba's /usr/bin/ntlm_auth.
867           [#650940, Mandy Wu]. This is enabled by default (if NTLM is
868           enabled for the session and the ntlm_auth binary is
869           available), but will fall back to the standard
870           password-based authentication if SSO fails.
871
872         * Default to TLS+extensions for https connections, falling
873           back to SSLv3-without-extensions (the old default) only if
874           the server fails to negotiate TLS. [#581342]
875
876                 * As a result of this change, some users are currently
877                   seeing problems with sites that serve multiple https
878                   hosts from a single IP address (eg,
879                   *.launchpad.net). There is no known workaround at
880                   this time.
881
882         * Fixed a longstanding problem with https pages sometimes not
883           loading when using a proxy. [#631368, based on patches from
884           DongJae Kim and Thierry Reding]
885
886         * SoupContentSniffer: don't use gio's sniffing rules, since
887           the spec now recommends that browsers not do any additional
888           sniffing beyond what's in the spec. [#648846, "arno"]
889
890         * Fixed SoupRequestHTTP to work properly with alternate
891           GMainContexts. [#653707]
892
893         * Added some annotations from Vala's vapi files. [#655397,
894           Evan Nemerson]. Also, removed SoupProxyResolver from the
895           gir/typelib, since it had been deprecated since before
896           introspection was available, and it was being scanned wrong
897           anyway.
898
899 Changes in libsoup from 2.35.3 to 2.35.4:
900
901         * CVE-2011-2524: Fixed a security hole that caused some
902           SoupServer users to unintentionally allow accessing the
903           entire local filesystem when they thought they were only
904           providing access to a single directory. [#653258]
905
906         * Plugged another SoupCache memory leak [Xan]
907
908         * Simplified SoupCache keys, and handle collisions. [#649963,
909           Sergio]
910
911         * Annotate SoupSession:add-feature, etc, as (skip), so they
912           don't conflict with the methods of the same name. [#655150,
913           Jasper St. Pierre]
914
915 Changes in libsoup from 2.34.1 to 2.35.3:
916
917         * SoupCache fixes [Sergio]:
918
919                 * Don't store hop-by-hop headers [#650094]
920
921                 * Fix status code and headers of responses returned
922                   from the cache after being revalidated [#649965]
923
924                 * Added versioning support to the cache file format
925                   [#652554] and extended it to keep track of the
926                   status code [#649965]
927
928                 * Fixed storage of time values in the cache [#653349]
929
930                 * Fixed a use-after-free that could result in bogus
931                   data being written to the cache [#650620]
932
933                 * Various leaks [#649309]
934
935         * Work around an Apache bug where it tells browsers to
936           automatically decode .gz files but still keep the .gz in the
937           name. [#613361, Dan]
938
939         * Fixed an overflow when sending a response larger than 2^31
940           bytes (eg, streaming movies in Rygel). [#638468, Jens Georg]
941
942         * Always send the Keep-Alive header, not just to hosts we
943           already know to be HTTP/1.0 [#648680, Sergio]
944
945         * Fixed various leaks [#652699, Sergio], [#651643, Milan],
946           [etc, Xan]
947
948         * Minor build fix for Debian/Ubuntu [#648948]
949
950         * Fixed a docs typo
951
952 Changes in libsoup from 2.34.0 to 2.34.1:
953
954         * Two multipart forms/Content-Disposition fixes [Dan]:
955
956                 * UTF-8-encoded header encoding/decoding rules updated
957                   to match RFC 5987. In particular, a UTF-8-encoded
958                   filename parameter in Content-Disposition will now
959                   override an ASCII one.
960
961                 * When not using UTF-8-encoded filenames in
962                   Content-Disposition, always quote the filename,
963                   since some servers erroneously fail to handle
964                   non-quoted ones. [#641280]
965
966         * Fixed several memory leaks [Dan, Xan]
967
968         * Fixed decoding base64 data: URLs [#646896, Sergio]
969
970         * Simplified the libsoup-gnome build on Windows by dropping
971           the gnome-keyring dependency. [Fridrich Štrba]
972
973         * Fixed a bug in soup_uri_to_string() in which (invalid) port
974           numbers could be output as negative numbers (tripping up a
975           WebKit "sanity checking" test). [#647767, Sergio]
976
977         * Fixed a cache corruption bug in SoupCache. [#648285, Sergio]
978
979         * Fixed a crash in SoupSessionSync when using
980           soup_session_abort().
981
982 Changes in libsoup from 2.33.92 to 2.34.0:
983
984         * Fixed the GMainContext handling of the new
985           SoupProxyResolverDefault (which among other things fixes
986           gstreamer usage inside epiphany). [#646201, Sebastian Dröge]
987
988         * Tweaked the introspection Makefile rules to fix a problem
989           building on Debian/Ubuntu. [#645505]
990
991         * Belated bumped the shared library versioning to reflect the
992           API additions since 2.32.0
993
994 Changes in libsoup from 2.33.90 to 2.33.92:
995
996         * LIBSOUP NO LONGER DEPENDS ON GCONF OR LIBPROXY.
997           (see below).
998
999         * Added SoupProxyResolverDefault, which uses uses gio's
1000           GProxyResolver to resolve proxies [#642982, Gustavo Noronha
1001           Silva]. Despite the "default" in the name, it is not used by
1002           default, for compatibility reasons, but it is available in
1003           plain libsoup, not libsoup-gnome. (Of course, it depends on
1004           having glib-networking installed.)
1005
1006         * Updated SoupProxyResolverGNOME to be based on
1007           SoupProxyResolverDefault, but explicitly requesting the
1008           "gnome" GProxyResolver if it is available [#625898], and
1009           removed the old code that used GConf and libproxy directly.
1010
1011         * Added soup_server_disconnect(), to explicitly disconnect a
1012           SoupServer, since it is not possible to g_object_unref() it
1013           from memory-managed language bindings. [#638576, Andreas
1014           Rottmann]
1015
1016         * SoupDate now parses month names case-insensitively [#644048,
1017           Christian Dywan]
1018
1019         * Avoid a g_return_if_fail() when using
1020           SOUP_COOKIE_JAR_ACCEPT_NO_THIRD_PARTY with non-http URIs
1021           (file:, data:, etc). [#643226]
1022
1023         * SoupCookieJar now catches overflows when parsing very
1024           distant dates [#643462, based on a patch from Mark
1025           Starovoytov]
1026
1027         * Fixed a buggy interaction between request body streaming and
1028           restarted requests [David Woodhouse]. Added some new tests
1029           to tests/chunk-test.c to make sure that a specific
1030           (unsupported!) way of using those methods would not get
1031           broken in the future.
1032
1033         * Fixed soup_socket_get_remote_address(), which had been
1034           broken since 2.33.4 (and which in turn caused
1035           soup_client_context_get_address/_get_host to be broken).
1036           [#645227]
1037
1038 Changes in libsoup from 2.33.6 to 2.33.90:
1039
1040         * Attempted to make libsoup's dependency on glib-networking
1041           (for TLS support) more explicit, by requiring that
1042           glib-networking be present at compile time unless the
1043           builder explicitly passes "--disable-tls-check", and noting
1044           that packagers should give libsoup a runtime dependency on
1045           glib-networking.
1046
1047         * Fixed a bug in talking to servers with virtual hosts with
1048           Unicode names (IDNs) [#642075]
1049
1050         * Added a "Connection: Keep-Alive" header when talking to
1051           HTTP/1.0 hosts, to improve performance. [#640414, Sergio
1052           Villar Senin]
1053
1054         * Changed SoupCache to not cache multipart/x-mixed-replace
1055           content. [#642028, Sergio Villar Senin]
1056
1057 Changes in libsoup from 2.33.5 to 2.33.6:
1058
1059         * Made SoupSessionAsync do idle-connection cleanup more
1060           sanely, resulting in faster load times for pages with lots
1061           of subresources. [#639768, Sergio Villar Senin]
1062
1063         * Fixed soup_form_decode()'s behavior (and by extension,
1064           SoupServer query string handling) with datasets that contain
1065           multiple values for the same key, and added a test case.
1066           [#639783, Sven Neumann]
1067
1068         * Fixed warnings pointed out by gcc 4.6, including a bug in
1069           SoupCache that would cause unnecessary revalidations
1070           [#640556].
1071
1072         * Belated copied a fix from the WebKit copy of soup-cache.c
1073           into ours, and fixed a bug in the local copy of
1074           soup-request-data.c [#641022, Sergio Villar Senin], in
1075           preparation for making WebKit use the libsoup versions.
1076
1077 Changes in libsoup from 2.33.4 to 2.33.5:
1078
1079         * Fixed certain cases of soup_session_cancel_message() with
1080           SoupSessionSync that could previously cause warnings or
1081           crashes. [#637741]
1082
1083 Changes in libsoup from 2.32.2 to 2.33.4:
1084
1085         * SoupSocket now uses GSocketConnection and GTlsConnection
1086           internally rather than making socket calls directly and
1087           using GIOStream, and TLS is handled via glib's APIs rather
1088           than using gnutls directly.
1089
1090         * The gzip Content-Encoding handler is now implemented using
1091           GZlibDecompressor
1092
1093         * As a result of the above two changes, libsoup no longer
1094           directly depends on gnutls, libgcrypt, or zlib, though it
1095           still indirectly depends on zlib via glib and libxml2. Also,
1096           although libsoup does not depend on glib-networking as a
1097           build-time dependency, some "make check" tests will be
1098           skipped if it is not installed.
1099
1100         * The SoupRequest/SoupCache code from WebKit has been
1101           imported, but it is not yet recommended for general use, and
1102           is not necessarily API stable. [#523100, Sergio Villar, with
1103           the SoupRequest parts based on the Summer of Code work by
1104           Gabriel Corvalan and the cache parts based on an earlier
1105           patch by Xan Lopez]
1106
1107         * Added SoupMessage:tls-certificate and
1108           SoupMessage:tls-errors, which give more information about
1109           the certificate used to authenticate a TLS connection.
1110
1111         * It is now possible to disable Basic or Digest auth in a
1112           session by using soup_session_remove_feature_by_type() with
1113           SOUP_TYPE_AUTH_BASIC or SOUP_TYPE_AUTH_DIGEST. Likewise, the
1114           right way to enable NTLM support now is to call
1115           soup_session_add_feature_by_type() with SOUP_TYPE_AUTH_NTLM;
1116           SOUP_SESSION_USE_NTLM is now deprecated.
1117
1118         * Allow setting cookies on file:// URIs, since other browsers
1119           do, and WebKit has a test for it. [#603825]
1120
1121         * .gir/.typelib files now include C header/library information
1122           (needed by vala and some other bindings) [#635395, Evan
1123           Nemerson]
1124
1125         * Added annotations on soup_message_headers_get_content_type()
1126           [Lucas Rocha] and SoupHTTPVersion [John Palmieri]
1127
1128         * Fixed a Set-Cookie processing leak [#636741, Jonathan
1129           Jongsma]
1130
1131 Changes in libsoup from 2.32.1 to 2.32.2:
1132
1133         * Fixed a regression in 2.32.0 that caused evolution-exchange
1134           to get stuck and stop updating. [#634422]
1135
1136         * Fixed a regression in 2.32.0 with apps using asynchronous
1137           sessions from multiple threads (in particular, gupnp)
1138           [#635101]
1139
1140         * Fixed the regression test for #631525 to not cause spurious
1141           "make check" failures on some machines.
1142
1143 Changes in libsoup from 2.32.0 to 2.32.1:
1144
1145         * Fixed a regression in 2.32.0 with the use of persistent
1146           connections that caused spurious "Connection terminated
1147           unexpectedly" errors. [#631525, debugged by Sergio Villar]
1148
1149         * Fixed a regression in 2.32.0 that caused proxy-related
1150           DNS errors to return SOUP_STATUS_CANT_RESOLVE rather than
1151           SOUP_STATUS_CANT_RESOLVE_PROXY.
1152
1153         * Usernames/passwords specified explicitly in request URIs now
1154           override existing cached auth info. [#631679, Sergio Villar]
1155
1156         * Changed soup_uri_decode() and soup_uri_normalize() to just
1157           ignore malformed %-encoding rather than returning NULL,
1158           for consistency with soup_uri_new(). [#630540]
1159
1160         * Fixed soup_form_decode() to ignore invalid parameters,
1161           and soup_form_encode_hash() to just g_return_if_fail()
1162           rather than crashing if there are NULL values in the
1163           hash. [#620220]
1164
1165         * Added another workaround for stupid servers that close the
1166           connection before returning the full response (in this case,
1167           when using chunked encoding and failing to include the
1168           final 0-length chunk). [#629160]
1169
1170         * Fixed a bug in SoupCookieJarText that deleted excess cookies
1171           whenever any cookie expired. [#631641, Michał Kazior]
1172
1173         * Fixed a small leak in SoupContentDecoder if you were using
1174           it incorrectly. [pointed out in email by Christophe
1175           Gillette]
1176
1177         * Added regression tests for passwords-in-URIs [#631679,
1178           Sergio Villar] and SOUP_SESSION_IDLE_TIMEOUT.
1179
1180 Changes in libsoup from 2.31.92 to 2.32.0:
1181
1182         * (No changes, just a version bump)
1183
1184 Changes in libsoup from 2.31.90 to 2.31.92:
1185
1186         * Updated for gobject-introspection 0.9.5. Also added some new
1187           annotations and removed a bunch of private headers from the
1188           scanning process.
1189
1190         * Percent-encoded characters in URIs are no longer
1191           automatically normalized to uppercase, since apparently some
1192           servers are stupid. [#628728, Sergio Villar Senin]
1193
1194         * Fixed a crash when resolving a URI containing both spaces
1195           and non-UTF8 8bit characters. [#629449]
1196
1197 Changes in libsoup from 2.31.2 to 2.31.90:
1198
1199         * libsoup now tries to connect to each IP address associated
1200           with a hostname, if the first one fails. In particular, if a
1201           host has both IPv4 and IPv6 addresses, and only one of them
1202           is reachable from the current host, libsoup will now try the
1203           other one rather than failing. (libc is supposed to sort the
1204           IP addresses in the right order, such that, eg, if you don't
1205           have IPv6 connectivity, it will put the IPv4 address first.
1206           For some reason though, this seems to be broken on some
1207           distros.) [#526321].
1208
1209         * Fixed Accept-Language header generation in locales where ","
1210           is used as the decimal point.
1211
1212 Changes in libsoup from 2.31.2 to 2.31.6:
1213
1214         * Disabled TLS 1.2 in addition to the already-disabled 1.1 and
1215           1.0 [see below, in libsoup 2.27.2], thus making libsoup
1216           usable with gnutls 2.10. [#622857. This commit, 01a43ad9,
1217           can be applied to libsoup 2.30.x as well if you need that
1218           release to work with gnutls 2.10.]
1219
1220         * When using libproxy 0.3 or newer, libsoup no longer leaks
1221           proxy-related environment variables into child processes
1222           [#603285]
1223
1224         * Changed the way message/connection binding works in
1225           SoupSession so that (among other things), when there are
1226           multiple requests queued to a host, and one of them gets a
1227           network error, the other requests are still allowed to try
1228           to succeed, rather than all failing immediately. [#619633]
1229
1230         * SoupSession now limits the number of times a message can be
1231           redirected, to avoid infinite loops [#604383, José Millán
1232           Soto]
1233
1234         * Fixed handling of certain messages where the response
1235           headers included "Connection: close" but the server did not
1236           actually close the connection at the end. [#611481]
1237
1238         * Fixed some incorrect g-i annotations [#621021]
1239
1240         * Fixed an out-of-bounds memory access when processing certain
1241           Set-Cookie headers [#620288]
1242
1243         * Improved msg->reason_phrase on network errors [#623274]
1244
1245         * Fixed gir file disting [#621727, Yaakov Selkowitz]
1246
1247 Changes in libsoup from 2.30.1 to 2.31.2:
1248
1249         * gobject-introspection has now been merged in. Use
1250           --enable-introspection to build. [#576595, Andreas Rottmann]
1251           Note that the introspected API is not yet stable, and in
1252           particular, there are numerous values annotated as "utf8"
1253           which are actually not guaranteed to be utf8. (Eg, most
1254           header data.)
1255
1256                 * Added some helper functions for bindings:
1257                   soup_buffer_new_take(),
1258                   soup_message_body_append_take(), and
1259                   soup_buffer_get_data(). [#576595, Andreas Rottmann]
1260
1261                 * Also added properties for several SoupMessage public
1262                   fields, and getter methods for various boxed types
1263                   (SoupCookie, SoupDate, SoupURI).
1264
1265                 * Added some additional hash-table annotations.
1266                   [#619086, Gustavo Noronha Silva]
1267
1268         * Marked SoupSession abstract. [#617216, Lorenzo Gil, the
1269           first bug filed by someone trying to use libsoup via
1270           introspection!] Likewise for SoupAuth and SoupAuthDomain.
1271
1272         * Fixed a problem with SoupSessionAsync that would cause
1273           messages to get lost if you aborted a previous message while
1274           it was still looking up the hostname. Fixed several other
1275           problems that were discovered while adding a regression test
1276           for that. [#618641, thanks to Claudio Saavedra for a good
1277           test case]
1278
1279         * Fixed another connecting-to-lame-http-server problem, and a
1280           getting-stuck-in-a-loop-reconnecting bug that it revealed.
1281           [#615535]
1282
1283 Changes in libsoup from 2.30.0 to 2.30.1:
1284
1285         * Fix for https through proxies that close the connection when
1286           returning a "407 Proxy Authentication Required" response,
1287           and add a regression test for that case. [#611663]
1288
1289         * Fixed multiple forms/multipart-related interoperability
1290           problems reported by Egon Andersen:
1291
1292                 * Don't quote the multipart boundary string if it's
1293                   not needed, since RFC 2616 recommends that you
1294                   don't, and some servers don't handle quotes there
1295                   correctly. (Sigh.) [#614176]
1296
1297                 * Don't put an extra blank line before the first
1298                   multipart part, since it's unnecessary and some
1299                   servers don't handle a multipart preamble correctly.
1300                   (Sigh.) [#614183]
1301
1302                 * Don't put Content-Transfer-Encoding headers in the
1303                   multipart/form-data parts, even though the HTML 4
1304                   spec says you must, since no other browsers do, and
1305                   some servers don't handle them correctly. (Sigh.)
1306                   [#614198]
1307
1308         * Changed SoupCookieJarSqlite to actually erase deleted
1309           cookies from the database. [#615711, Lukasz Slachciak]
1310
1311         * Fixed SoupLogger to be more robust against getting passed
1312           bad data by the session. [#611663]
1313
1314         * Fixed SoupAuthDomain to ignore paths when doing proxy auth
1315
1316         * Fixed a g_warning when hovering over a javascript link in
1317           WebKit. [#613442, Xan Lopez]
1318
1319 Changes in libsoup from 2.29.91 to 2.30.0:
1320
1321         * Fixed a crash in the whitespace-stripping code in
1322           soup_uri_new() [#612644, "arnaud.lb"]
1323
1324         * Update content-sniffing algorithm to match Chrome and the
1325           soon-to-be-updated sniffing spec. [#611502, Gustavo Noronha
1326           Silva]
1327
1328         * We now handle "Content-Encoding: x-gzip" as well as "gzip"
1329           (even though "x-gzip" has been deprecated for more than 10
1330           years). [#611476]
1331
1332         * Fixed leaks found by valgrind
1333
1334         * Make the "make check" programs only bind to 127.0.0.1, not
1335           any public network interfaces. [#609489, Saleem Absulrasool]
1336
1337         * Add a test to sniffing-test to make sure that Content-Type
1338           parameters are preserved correctly. [Gustavo Noronha Silva]
1339
1340 Changes in libsoup from 2.29.90 to 2.29.91:
1341
1342         * Added SOUP_SESSION_SSL_STRICT and
1343           SOUP_MESSAGE_CERTIFICATE_TRUSTED, to allow callers to
1344           determine if an https response comes from a server with a
1345           recognized/valid or unrecognized/invalid certificate.
1346           [#610374, Gustavo Noronha Silva]
1347
1348         * Fixed handling of certain badly-formatted URIs [#590524]
1349
1350 Changes in libsoup from 2.29.6 to 2.29.90:
1351
1352         * Added soup_cookie_jar_set_accept_policy() and related API
1353           for implementing cookie acceptance policies. [#608353, Xan
1354           Lopez]
1355
1356         * Fixed the "request-read" signal in SoupServer to actually be
1357           emitted.
1358
1359 Changes in libsoup from 2.29.5 to 2.29.6:
1360
1361         * Fixed SoupContentDecoder to ignore trailing junk after the
1362           encoded message body (as other browsers do), rather than
1363           getting stuck in an infinite loop. [#606352]
1364
1365         * Fixed an invalid read in soup_cookie_applies_to_uri()
1366           [#607024, pointed out by Xan]
1367
1368         * Fixed linking on OS X [#606959]
1369
1370         * Removed a harmless warning in SoupServer. [#606645]
1371
1372 Changes in libsoup from 2.29.3 to 2.29.5:
1373
1374         * Added SoupContentDecoder, providing support for
1375           Content-Encoding: gzip for WebKitGTK. [#522772]
1376
1377         * Added "accept-language" and "accept-language-auto"
1378           properties to SoupSession, to support the Accept-Language
1379           header. [#597004, Mario Sanchez Prada]
1380
1381         * Fixed a bug in SoupPasswordManagerGNOME that could cause
1382           crashes if you typed the wrong password once and then tried
1383           again. [#595554, debugged by Gustavo Noronha Silva]
1384
1385         * Fixed a crash in SoupAuthDigest if the server claims support
1386           for both qop=auth and qop=auth-int. (This was not noticed
1387           sooner because no one actually supports qop=auth-int, and
1388           the server in question here was probably confused. :)
1389
1390         * Updated cookie parsing/output to more closely match
1391           draft-ietf-httpstate-cookie-00. [Also fixes #603496 (WebKit
1392           unit test), and #604794 (hang parsing malformed Set-Cookie
1393           header)]
1394
1395         * Fixed https-via-proxy to not hang if there is an error
1396           communicating with the proxy immediately after the TLS
1397           negotiation. [#587528]
1398
1399         * Fixed a bug that broke gobject-introspection's introspection
1400           of libsoup. [#603696, Vincent Untz]
1401
1402         * Handle spurious CR/LFs between responses. [#602863,
1403           Alexander V. Butenko]
1404
1405         * Fixed soup-message-client-io to not erroneously include URI
1406           fragments on the Request-Line when sending via a proxy.
1407           [Related to WebKit bug #28687]
1408
1409         * Fixed Digest authentication against certain (buggy?)
1410           clients/servers that require you to use quotes in exactly the
1411           same places where the spec uses them. [#582219]
1412
1413         * Fix ugly gtype-related hack to work with the latest unstable
1414           glib. [Benjamin Otte]
1415
1416 Changes in libsoup from 2.28.1 to 2.29.3:
1417
1418         * Fixed a crash in SoupCookieJarSqlite when using cookie
1419           databases not created by libsoup (eg, upgraded epiphany
1420           installations). [Patch from Emilio Pozuelo Monfort]
1421
1422         * Fixed SoupCookieJar to handle non-http URIs properly (so
1423           that, eg, JavaScript bookmarklets that try to set/read
1424           cookies won't cause crashes). [#602498]
1425
1426         * HEAD requests that receive a "303 See Other" response will
1427           now do a HEAD, not a GET, on the redirected-to resource.
1428           Fixes gvfs access to some sites, including certain
1429           youtube.com URIs. [#600830]
1430
1431         * Fixed a g_warning that would always trigger in the
1432           server-side SoupCookie code. [#602389]
1433
1434         * Fixed the server-side SoupMultipart code to be able to parse
1435           multiparts containing binary attachments, rather than
1436           rejecting them as malformed. [#601640]
1437
1438         * Fixed the Request-Line format in the https-over-proxy case.
1439           Among other things, this fixes access to bugzilla.gnome.org
1440           from WebKitGTK-based browsers. [#598277, #600826]
1441
1442         * Fixed a leak in SoupSession if a message was cancelled while
1443           the initial socket connection was in progress. [#596074,
1444           debugged by Arnout Vandecappelle]
1445
1446         * Fixed server-side parsing of Digest auth. [#602898, Chris
1447           Head]
1448
1449         * Fixed WinSock initialization on Windows. [#600689, Tor
1450           Lillqvist]
1451
1452         * Fixed a sporadic crash in the SSL code on Windows. [#600748,
1453           Tor Lillqvist]
1454
1455         * Fixed handling of https connections with timeouts on
1456           Windows. [#600749, Tor Lillqvist]
1457
1458         * Added soup_session_prepare_for_uri(), to allow DNS
1459           prefetching for faster browsing. [#598948, José Millán Soto]
1460
1461         * SoupSession now avoids redundant DNS lookups again when
1462           first connecting to a new site, resulting in (probably
1463           imperceptibly) faster loads.
1464
1465         * Added some debugging APIs to SoupConnection and SoupSession
1466           for use by, eg, epiphany's soup-fly extension. [#589163,
1467           José Millán Soto]
1468
1469 Changes in libsoup from 2.28.0 to 2.28.1:
1470
1471         * libsoup will now attempt to make multiple connections to a
1472           server at once when there are multiple messages queued to
1473           that server. The previous behavior (only allowing a single
1474           pending connection to each server) resulted in slow load
1475           times on pages with lots of subresources (images, css, js,
1476           etc) on servers that disallow persistent connections.
1477           [#594768]
1478
1479         * There should now be fewer (no?) "Connection terminated
1480           unexpectedly" errors in WebKitGTK.
1481
1482         * Fixed a crash in SoupCookieJarSqlite [#596859, patch from
1483           Alexander Sack].
1484
1485         * Fixed soup_address_get_physical() and address-to-name
1486           resolution of SoupAddress [patch from Enrico Tröger].
1487
1488         * Fixed a bug in SoupContentSniffer that could cause false
1489           negatives [#597545, patch from Alejandro Castro].
1490
1491         * Fixed the configure error if you have gnutls-devel but not
1492           gcrypt-devel installed [#587709].
1493
1494 Changes in libsoup from 2.27.92 to 2.28.0:
1495
1496         * Fixed a handful of leaks found with valgrind, including a
1497           large one in SoupContentSniffer [WebKit bug 28148].
1498
1499         * Changed the behavior of SoupCookieJarSqlite to improve
1500           performance. [#584522, patch from Gustavo Noronha Silva]
1501
1502         * Fixed a crash in SoupSocket that affected gupnp. [#594951,
1503           patch from Olivier Crête]
1504
1505         * Fixed the type of the SOUP_METHOD_* and SOUP_URI_SCHEME_*
1506           macros to be const char * rather than gpointer. [#594508]
1507
1508 Changes in libsoup from 2.27.91 to 2.27.92:
1509
1510         * Removed SoupPasswordManager from the public API until its
1511           problems can be addressed. Although it is still present, you
1512           need to #define a special symbol for it to be visible in the
1513           header files; see #594377 for details.
1514
1515         * Fixed a bug where empty query components were dropped from
1516           URIs. [#594405]
1517
1518         * Fixed "make check" to work (but warn) when building with
1519           --disable-ssl.
1520
1521         * Fixed some small documentation bugs pointed out by Dominik
1522           Bylica and Lucian Langa.
1523
1524 Changes in libsoup from 2.27.90 to 2.27.91:
1525
1526         * Added SoupPasswordManager, an interface for managing
1527           persistent password storage, and SoupPasswordManagerGNOME
1528           (in libsoup-gnome), which implements it using gnome-keyring.
1529           tests/get.c provides a minimal example of how to use it.
1530
1531         * libsoup should now notice when the server closes a
1532           persistent connection, and close its side of the connection
1533           sooner. This should hopefully fix the spurious "Connection
1534           terminated unexpectedly" errors in WebKitGTK. [#578990]
1535
1536         * Fixed some problems with connection management in
1537           SoupSession that could cause a session to eventually "stall"
1538           and be unable to process new requests. [#592084]
1539
1540         * Fixed an infinite loop that caused 100% CPU usage if the
1541           network went down at exactly the right time while there were
1542           unsent messages in the queue. [#592492]
1543
1544         * Fixed a crash in SoupLogger. [#591857]
1545
1546         * Fixed the definition of soup_message_is_keepalive() for
1547           HTTP/1.0 messages, to fix a problem introduced in 2.27.90
1548           where some messages would load completely but never emit
1549           "finished".
1550
1551         * Fixed a crash in SoupServer introduced in 2.27.90 when
1552           processing a request with no "Host" header.
1553
1554 Changes in libsoup from 2.27.5 to 2.27.90:
1555
1556         * libsoup now uses glib's GResolver rather than its own DNS
1557           code. For 2.27.90, the only visible change should be that
1558           internationalized domain names are now supported. [#548287]
1559
1560         * Added soup_message_disable_feature(), which allows you to
1561           disable particular features (eg, cookies, proxy,
1562           content-sniffing, etc) on a per-message basis. [#574773]
1563
1564         * It is now possible to implement "OPTIONS *" in a SoupServer;
1565           you must explicitly register a handler for "*" in order to
1566           do this. [#590751]
1567
1568         * Ignore Content-Length on EOF-terminated responses, to match
1569           other browsers and therefore cope with broken servers that
1570           send the wrong length. [Patch from Benjamin Otte.]
1571
1572         * Fixed the status code when trying to fetch an https URI with
1573           a non-gnutls build of libsoup. [#590464]
1574
1575         * Fixed strict-aliasing warnings introduced in 2.27.4
1576           [#588771]
1577
1578         * Fixed some warnings noted by fortify [#591226] and -Wextra.
1579
1580         * libsoup now uses automake 1.11's silent-rules support by
1581           default (if you are building with automake 1.11). Use
1582           "./configure --disable-silent-rules" or "make V=1" to
1583           disable.
1584
1585 Changes in libsoup from 2.27.4 to 2.27.5:
1586
1587         * Fixed a crash when a web server redirected a request to a
1588           non-http URI (eg, "about:blank"). [#528882]
1589
1590         * Fixed a hang when trying to create an attachment on certain
1591           bugzilla installations from epiphany. [#584645]
1592
1593         * Fixed verification of V1 TLS certificates [#589323, Patrick
1594           Ohly]
1595
1596         * Fixed compile problems on Windows (in the ssl code), and on
1597           Linux (when the most recent version of gtk-doc was
1598           installed).
1599
1600 Changes in libsoup from 2.27.2 to 2.27.4:
1601
1602         * Added SoupContentSniffer and the "content-sniffed" signal on
1603           SoupMessage, to do Content-Type sniffing per the HTML5 /
1604           draft-abarth-mime-sniff algorithm. [#572589, Gustavo Noronha
1605           Silva]
1606
1607         * Updated the earlier SoupSession timeout fixes ([#574414],
1608           [#578928]) so that async connect() also times out [#588177,
1609           Mark Nauwelaerts] and SSL works on Windows again [#587910,
1610           Fridrich Strba].
1611
1612         * Fixed the behavior on a 301 response to a POST to match
1613           real-world usage rather than what the spec says. (We were
1614           doing the right thing on 302 and 303, but had missed 301.)
1615           [#586692]
1616
1617         * Changed configure so that if GNUTLS isn't found then it
1618           errors out, rather than silently building an SSL-less
1619           libsoup. Configure with --disable-ssl if you actually don't
1620           want SSL. [#584955]
1621
1622 Changes in libsoup from 2.27.1 to 2.27.2:
1623
1624         * Replaced SoupProxyResolver with SoupProxyURIResolver, which
1625           is a bit simpler, works with non-HTTP URIs (and so could be
1626           used by gvfsd-ftp) and supports proxy auth correctly.
1627           [#580051]
1628
1629         * Fixed SoupSession to not try to resolve http server
1630           hostnames when it's just going to pass the hostname off to a
1631           proxy server anyway. This fixes things on hosts that use a
1632           proxy for everything and have no working DNS config
1633           [#577532] and also makes WebKitGTK behave more like other
1634           browsers in terms of per-host connection limits (we now
1635           limit connections based on hostname rather than on IP
1636           address).
1637
1638           We also no longer set the AI_CANONNAME flag when calling
1639           getaddrinfo(), which saves us a little bit of unnecessary
1640           network traffic. [Pointed out by Christophe Gillette on the
1641           mailing list.]
1642
1643         * libsoup now always uses SSL 3.0 (not TLS 1.0 or 1.1) for
1644           https URIs, to work around problems with older servers that
1645           don't implement the (apparently quite confusing) TLS/SSL
1646           compatibility rules correctly. Makes a bunch of
1647           previously-inaccessible sites now accessible in WebKitGTK
1648           (notably PayPal) [#581342]. Will eventually be revisited, to
1649           first try TLS 1.1 and fall back if that fails.
1650
1651         * Fixed Digest auth to (recent) Apple CalDAV servers.
1652           [#583091]
1653
1654         * Changed the way the SoupSession "authenticate" signal works
1655           a bit. We now never emit "authenticate" before sending a
1656           request, even if we know for sure that it's going to fail,
1657           because this makes the semantics of the authenticate handler
1658           too complicated (and because we'll only get into this
1659           situation if a previous call to the authenticate handler
1660           failed anyway). Fixes problems in WebKitGTK when you cancel
1661           a password dialog, and then later try to load the page
1662           again. [#583462, mostly figured out by Gustavo Noronha
1663           Silva].
1664
1665         * Fixed a bug in the CRLF-vs-LF patch (#571283) that caused
1666           libsoup to fail to parse the response headers (returning
1667           SOUP_STATUS_MALFORMED) if a CR LF got split across two
1668           read()s. [#582002]
1669
1670         * Allow using PUT in soup_form_request_for_data(), to work
1671           with certain broken web APIs. [#581860, Ross Burton]. Also,
1672           fixed a problem with empty POST bodies that made some parts
1673           of gmail not work in WebKitGTK.
1674
1675         * Applied some minor bugfixes to configure.in and autogen.sh
1676           [#583911, #583942]. Fixed configure.in to not use gcc
1677           warning options that the installed version of gcc doesn't
1678           recognize [#578851].
1679
1680         * Added G_GNUC_NULL_TERMINATED and G_GNUC_PRINTF to a few
1681           methods that should have had them. [#581754, Ross Burton]
1682
1683 Changes in libsoup from 2.26.1 to 2.27.1:
1684
1685         * SOUP_SESSION_TIMEOUT now works properly with
1686           SoupSessionAsync [#574414] and SSL [#578928]. Added
1687           tests/timeout-test to test this.
1688
1689         * SoupDate fixes:
1690
1691                 * soup_date_to_string() now handles SOUP_DATE_RFC2822
1692                   [#579055, Enrico Tröger]
1693
1694                 * soup_date_new_from_string() now accepts 24:00 as a
1695                   time in ISO8601 timestamps
1696
1697                 * soup_date_to_string() now coerces the date to UTC
1698                   for HTTP and cookie dates, and outputs the UTC
1699                   correct offset for the other date types.
1700
1701                 * Added regression tests to tests/date
1702
1703         * soup_headers_parse() now completely ignores
1704           syntactically-incorrect headers, rather than passing them to
1705           soup_message_headers_append() and causing a g_warning.
1706           soup_message_headers_append() now also rejects 0-length
1707           header names. Updated tests/header-parsing to check this.
1708           [#579318]
1709
1710         * Fix a crash when cancelling a message from a "restarted"
1711           handler, and updated a regression test to notice the
1712           underlying cause. [#580193]
1713
1714         * Completing the API updates for #576760 from 2.26.1,
1715           soup_message_headers_get() is now marked deprecated in favor
1716           of soup_message_headers_get_one() and _get_list().
1717
1718 Changes in libsoup from 2.26.0 to 2.26.1:
1719
1720         * libsoup uses libproxy for PAC and WPAD proxy resolution
1721           again. However, it arranges to do all communication with
1722           GConf itself, to ensure that libproxy doesn't call it in
1723           non-thread-safe ways. [#571527] Also, fixed a bug in
1724           SoupSessionSync when proxy resolution failed. [#574957,
1725           patch from Milan Crha].
1726
1727           (Also fixed three SoupProxyResolverGNOME bugs since the
1728           2.26.0.9 preview release. [#578746, #578809])
1729
1730         * SoupURI now handles unencoded spaces in URIs. In particular,
1731           redirects via Location headers with spaces in them now work.
1732           [#566530]
1733
1734         * libsoup can now deal with servers (and clients) that
1735           erroneously use LF LF instead of CR LF CR LF to separate
1736           the headers and body. [#571283]
1737
1738         * Added soup_message_headers_get_one() and
1739           soup_message_headers_get_list(), which will eventually
1740           deprecate soup_message_headers_get(). This lets applications
1741           deal correctly with implementations that erroneously send
1742           multiple copies of single-valued headers. [#576760]
1743
1744         * In particular, soup_message_headers_get_content_type() now
1745           ignores duplicate Content-Type headers [#576760] and also
1746           ignores syntactically-incorrect Content-Type headers.
1747           [#577630]
1748
1749         * SoupCookieJar can now store multiple cookies with the same
1750           domain and name, but different paths. [#577360]
1751
1752         * Abnormal SSL connection closes are now treated as ordinary
1753           EOFs, for compatibility with certain sites. [#577386]
1754
1755         * soup_header_g_string_append_param() now allows NULL values.
1756           [#577728]
1757
1758         * soup_message_headers_append() now rejects header names and
1759           values with newlines or certain other illegal data in them,
1760           rather than generating syntactically invalid headers.
1761
1762         * Fixed a small bug in soup_date_new_from_string's ISO 8601
1763           handling [qv #578369 for g_time_val_from_iso8601].
1764
1765         * The regression tests now work correctly on machines where
1766           "localhost" resolves to "::1" instead of "127.0.0.1".
1767           [#576583, patch from Andreas Rottmann]
1768
1769         * Fixed warnings when a message has a network problem when
1770           many other messages are queued. [#578809]
1771
1772         * Miscellaneous documentation fixes/clarifications.
1773
1774 Changes in libsoup from 2.25.91 to 2.26.0:
1775
1776         * Temporarily disable libproxy support to work around a bug in
1777           its gnome plugin that causes gvfsd-http (and probably
1778           eventually other apps) to crash. [#571527]. For now,
1779           SoupProxyResolverGNOME uses only GConf. To be fixed in
1780           2.26.1
1781
1782         * Fixed a bug that showed up in WebKit, where if many messages
1783           were queued all at once to a server that doesn't support
1784           persistent connections, some of the requests will get lost.
1785           #574365, reported by Xan Lopez.
1786
1787         * Fixed SoupServer to support using SOUP_ENCODING_EOF, so you
1788           can stream responses of unknown length to HTTP/1.0 clients.
1789           [#572153]. Added a regression test for this, and for chunked
1790           and Content-Length-based streaming.
1791
1792         * Fixed several bugs that prevented SoupCookieJarSqlite from
1793           working. [#572409, patch from Xan Lopez]
1794
1795         * Added G_{BEGIN,END}_DECLS guards to public headers that were
1796           missing it. (Xan Lopez)
1797
1798         * Misc gtk-doc improvements
1799
1800 Changes in libsoup from 2.25.5 to 2.25.91:
1801
1802         * Fixed a crash in SoupProxyResolverGNOME when the proxy
1803           requires authentication. (This does not make proxy
1804           authentication *work* yet, it just makes it not crash.)
1805
1806         * Updated documentation
1807
1808 Changes in libsoup from 2.25.4 to 2.25.5:
1809
1810         * SoupProxyResolverGConf (which was incomplete) is gone, and
1811           libsoup-gnome now requires libproxy, which is now officially
1812           an external dependency of GNOME.
1813
1814         * Fixed a bug in SoupCookieJar that was making it send
1815           "Cookie: (null)" when it had no cookies for a site, which
1816           confused some web servers (WebKit bug 23240).
1817
1818         * Fixed a bug with using SOUP_MEMORY_TEMPORARY buffers and
1819           soup_message_body_set_accumulate(FALSE). (Part of WebKit bug
1820           18343, noticed by Gustavo Noronha Silva.)
1821
1822         * Fixed the build with non-gcc compilers
1823
1824 Changes in libsoup from 2.25.3 to 2.25.4:
1825
1826         * Added soup_session_get_feature() and
1827           soup_session_get_features(), to query the features currently
1828           available in a session (which is needed by the patch in
1829           https://bugs.webkit.org/show_bug.cgi?id=22624)
1830
1831 Changes in libsoup from 2.25.2 to 2.25.3:
1832
1833         * Fixed a crash when using both cookies and a proxy. [#562191,
1834           Mark Lee]
1835
1836         * Fixed soup_form_decode() to correctly handle forms with
1837           URI-encoded parameter names [#563302, Evan Nemerson] and
1838           added a regression test.
1839
1840         * Fixed a crash in SoupProxyResolverGConf. [#563145]
1841
1842 Changes in libsoup from 2.25.1 to 2.25.2:
1843
1844         * Fixed client behavior when presented with multiple auth
1845           types to choose the *strongest* auth type (eg, Digest)
1846           rather than the *weakest* one [#562339, Pontus Oldberg].
1847           Added a regression test for this.
1848
1849         * Moved libsoup-gnome headers to a different directory to make
1850           it easier to split libsoup and libsoup-gnome into separate
1851           packages, and to ensure that things that only want to be
1852           looking at plain libsoup headers (like gir-repository) don't
1853           accidentally see the libsoup-gnome ones.
1854
1855         * Some minor doc fixes
1856
1857         * Fixed libsoup-gnome linking with --as-needed. [#559342]
1858
1859 Changes in libsoup from 2.24.1 to 2.25.1:
1860
1861         libsoup 2.25.1 introduces a new library, libsoup-gnome, which
1862         will be used for features which are important to GNOME apps,
1863         but which require GNOME-specific libraries that non-GNOME apps
1864         may not want to add dependencies on.
1865
1866         In 2.25.1, libsoup-gnome contains:
1867
1868             * SOUP_TYPE_PROXY_RESOLVER_GNOME, a SoupSessionFeature
1869               type that can be added to a SoupSession to provide
1870               automatic proxy handling via the GConf proxy keys. (See
1871               below) The default implementation uses libproxy, which
1872               also handles WPAD, PAC, etc, but if libproxy is not
1873               available it will use GConf directly, supporting only
1874               the basic HTTP proxy functionality.
1875
1876             * SoupCookieJarSqlite, a SoupSessionFeature that handles
1877               cookies and stores them in a Firefox 3-compatible sqlite
1878               file. (This is not actually a "GNOME-specific" feature,
1879               but I didn't want to make libsoup itself depend on
1880               sqlite, and I didn't want to make the dependency
1881               optional. This might change before 2.26.)
1882
1883             * SOUP_TYPE_GNOME_FEATURES_2_26: a SoupSessionFeature type
1884               that can be added to a SoupSession to add all
1885               GNOME-integration features that are available for 2.26;
1886               as of 2.25.1, this is just the GNOME proxy resolver, but
1887               by 2.26.0 it may also include gnome-keyring support and
1888               possibly other features.
1889
1890         Applications/libraries that are currently doing GConf proxy
1891         lookup by hand can be updated as follows:
1892
1893             * Remove all of the existing code that listens to the
1894               GConf keys and sets SOUP_SESSION_PROXY_URI
1895
1896             * Change the configure check to require
1897               "libsoup-gnome-2.4 >= 2.25.1" instead of "libsoup-2.4"
1898
1899             * #include <libsoup/soup-gnome.h>
1900
1901             * After creating your SoupSession, do:
1902
1903                   soup_session_add_feature_by_type (session, SOUP_TYPE_PROXY_RESOLVER_GNOME);
1904
1905               (Or alternatively, use SOUP_SESSION_ADD_FEATURE_BY_TYPE
1906               with soup_session_async_new_with_options() or
1907               soup_session_sync_new_with_options().)
1908
1909
1910         Other new features and bug fixes in 2.25.1 include:
1911
1912         * SoupCookieJarText, like SoupCookieJarSqlite, but using the
1913           old-style cookies.txt format, and in the base libsoup rather
1914           than libsoup-gnome.
1915
1916         * Various bugfixes to SoupCookie and SoupCookieJar to fix the
1917           problems with cookies not working on certain sites.
1918
1919         * The new SoupMultipart type provides support for multipart
1920           MIME bodies, and soup-form now includes several methods for
1921           generating and parsing multipart form data and file uploads.
1922
1923         * SoupMessageHeaders now has methods for easy handling of the
1924           Content-Type, Content-Disposition, Range, and Content-Range
1925           headers. The Content-Disposition handling recognizes
1926           RFC2231-encoded UTF-8 filenames.
1927
1928         * SoupServer now automatically handles partial GET requests;
1929           if your server returns SOUP_STATUS_OK in response to a
1930           partial GET, libsoup will automatically convert it to a
1931           SOUP_STATUS_PARTIAL_CONTENT response with only the requested
1932           portions.
1933
1934         Thanks to Xan Lopez and Diego Escalante Urrelo for their work
1935         on SoupCookie, SoupCookieJar, SoupCookieJarText, and
1936         SoupCookieJarSqlite.
1937
1938 Changes in libsoup from 2.24.0.1 to 2.24.1:
1939
1940         * Fixed a crash when unreffing the session from a
1941           soup_session_queue_message() callback [#533473], and added
1942           regression test. In particular, this fixes a crash in
1943           seahorse when trying to connect to a non-responsive
1944           keyserver.
1945
1946         * Fixed an infinite loop when giving a bad password to a site
1947           that uses non-standard capitalization in the
1948           WWW-Authenticate header (eg, gmail.com) [#536285].
1949
1950         * Fixed a leak in SoupSessionAsync when using a non-default
1951           GMainContext. [addendum to #498509, Arnout Vandecappelle]
1952           Added additional code to the regression tests to make sure
1953           sessions and servers do not get leaked.
1954
1955         * Fixed a leak in the XML-RPC code
1956
1957         * Compile fixes for "gcc -pedantic" [#553976, Sander Dijkhuis]
1958           and -DG_DISABLE_DEPRECATED / -DG_DISABLE_SINGLE_INCLUDES
1959           [#557072, Cosimo Cecchi]
1960
1961         * Patched xmlrpc-test to accept the incorrect response to
1962           test_echo() that php-xmlrpc gives when it's built against
1963           libxml2 >= 2.7.1 (qv http://bugs.php.net/45996), so that
1964           I can "make distcheck"...
1965
1966         * Updated generated documentation
1967
1968 Changes in libsoup from 2.23.92 to 2.24.0.1:
1969
1970         * Reverted part of the fix for #528882, which caused the DAAP
1971           plugin in rhythmbox to crash. [#553466]
1972
1973 Changes in libsoup from 2.23.91 to 2.23.92:
1974
1975         * Fixed the handling of a 302 response to a HEAD request,
1976           which should NOT be treated like a 303 response. [#551190,
1977           Jonathan Matthew]
1978
1979 Changes in libsoup from 2.23.6 to 2.23.91:
1980
1981         * Fixed a crash in gvfs [#528882], though there is still an
1982           unknown bug there. As part of this fix, libsoup will now
1983           return an error if you try to do an operation on a non-HTTP
1984           URI. (Previously it was just treating any URI scheme except
1985           "https" as HTTP.)
1986
1987         * Added soup_date_to_timeval() for gvfs. [#549006, patch from
1988           Bastien Nocera]
1989
1990 Changes in libsoup from 2.23.1 to 2.23.6:
1991
1992         * Fixed use of g_idle_add() so that heavy I/O won't end up
1993           blocking libsoup callbacks. [#536676, Benjamin Otte]
1994
1995         * Allow the caller to override the Host header. [#539803, Marc
1996           Maurer]
1997
1998         * Properly handle responses larger than 4G. [#539861, Peter
1999           Christensen]
2000
2001         * Fixed the build when using certain LDFLAGS [#541506, Götz
2002           Waschk]
2003
2004         * Fixed a small bug in Digest auth handling. [#544681, Mads
2005           Chr. Olesen]
2006
2007         * Fixed multiple Windows bugs [Tor Lillqvist]
2008
2009 Changes in libsoup from 2.4.1 to 2.23.1:
2010
2011         * This is the first unstable release leading up to GNOME 2.24.
2012           Bumped the libsoup version number up to 2.23.x to match the
2013           GNOME version; note that the API version is still "2.4",
2014           meaning in particular that you still call it "libsoup-2.4"
2015           when using pkg-config.
2016
2017         * Added SoupSessionFeature, an interface type that will be
2018           used for several new features. Ported SoupLogger and
2019           SoupAuthManager to use it.
2020
2021         * Added SoupCookie and SoupCookieJar. This API is already
2022           being used in Epiphany, via WebKit, but it is not yet
2023           complete.
2024
2025         * Fixed GnuTLS support on Win32. [#528752, Marc Maurer]
2026
2027 Changes in libsoup from 2.4.0 to 2.4.1:
2028
2029         * Fixed SoupMessage to not downgrade to HTTP/1.0 for the
2030           second attempt when it receives an HTTP/1.0 redirect or 401.
2031           [#521848, Tommu Komulainen]
2032
2033         * Fixed Host: header syntax when the host is an IPv6 address
2034           literal.
2035
2036         * Fixed SoupSession to not emit "authenticate" multiple times
2037           for messages that have been requeued. [#522601, Tommi
2038           Komulainen]. Also added two new signals to SoupSession,
2039           request-queued and request-unqueued, to help simplify
2040           certain session-helpers and avoid bugs like this in the
2041           future.
2042
2043         * Fixed soup_server_pause_message() to actually work (rather
2044           than *un*pausing the message).
2045
2046         * Added a property SOUP_SESSION_IDLE_TIMEOUT that can be used
2047           to set a timeout after which idle connections will
2048           automatically be closed. [#518214, Jorn Baayen]
2049
2050         * Implemented RFC 2069-style Digest auth, and fixed SoupAuth
2051           to compare auth scheme names case-insensitively, to fix
2052           authentication against Apple's calendar server. [#498484]
2053
2054         * Fixed a crash in SoupAuthDomainDigest if the client provided
2055           an unrecognized username. [pointed out by Curtis Magyar on
2056           IRC]
2057
2058         * Fixed a few SoupDate bugs. (In particular, it was outputting
2059           the wrong day of the week when stringifying dates.)
2060
2061         * Improved the cleanup of idle connections, to fix slow load
2062           times with the libsoup backend of WebKit.
2063
2064         * Added a new SoupMessage signal "wrote-body-data" that can be
2065           used for progress information when sending a large request
2066           body. Also allow providing the request body in multiple
2067           chunks even when using Content-Length encoding. [#525101,
2068           Christian Kellner]
2069
2070         * libsoup now ignores SIGPIPE globally, instead of
2071           un-thread-safe-ly ignoring it only around network writes. In
2072           particular, this means it is ignored when the SSL code needs
2073           to unexpectedly do a write when we asked it to do a read.
2074           [#524397, Curtis Magyar]
2075
2076         * The discard-body-chunks-once-they're-no-longer-needed
2077           behavior, confusingly called SOUP_MESSAGE_OVERWRITE_CHUNKS,
2078           is now controlled by a SoupMessageBody method
2079           (soup_message_body_set_accumulate()), and can be applied to
2080           either the request body or the response body.
2081           (OVERWRITE_CHUNKS is still available for backward
2082           compatibility.) [#522146, Christian Kellner]
2083
2084         * The DNS cache no longer caches "no such host" results, since
2085           some name servers lie to clients outside their firewall,
2086           which could then cause problems for laptops moved between
2087           networks. [#523269, Jörgen Scheibengruber]
2088
2089         * Added some new regression tests, fixed some small bugs in
2090           the existing ones.
2091
2092 Changes in libsoup from 2.3.4 to 2.4.0:
2093
2094         * Fixed a small memory leak in SoupSession. [#518798, Wouter
2095           Cloetens]
2096
2097         * Minor fixes to redirect behavior; PROPFINDs can now be
2098           automatically redirected (pointed out by Christian Kellner),
2099           and 302 is treated like 307, not 303. Also fixed to make
2100           sure that redirect-test actually gets run by "make check".
2101
2102         * The SoupSocket I/O methods now set nread/nwrote even on
2103           error. [Benjamin Otte]
2104
2105 Changes in libsoup from 2.3.2 to 2.3.4:
2106
2107         * The documentation should be accessible from devhelp again
2108           [#518384, Mart Raudsepp]. (Also fixed another
2109           documentation-generation bug that affected builds from svn,
2110           but not the 2.3.2 tarball for some reason. [#518317,
2111           Benjamin Otte].)
2112
2113         * Fixed dependencies in libsoup-2.4.pc file [#517631,
2114           Sebastian Dröge]
2115
2116 Changes in libsoup from 2.3.0.1 to 2.3.2:
2117
2118         API changes / Behavior changes:
2119
2120         * soup_server_add_auth_domain() now refs the auth domain when
2121           adding it. (soup_server_remove_auth_domain() already
2122           unreffed it.) This means existing applications using
2123           SoupAuthDomain will now have a small memory leak. Those
2124           applications should update their libsoup-2.4 requirement to
2125           ">= 2.3.2" at some point before the final GNOME 2.22.0
2126           release, and then fix the code to unref the auth domain
2127           after adding it to the server.
2128
2129         * SoupSession's automatic redirect-handling behavior now obeys
2130           RFC 2616 more closely. In particular, status codes 300 and
2131           304 are no longer mistakenly considered redirects; POSTs
2132           that receive 303 are now redirected into GETs; and POSTs
2133           that receive 301, 302, or 307 are now not redirected.
2134
2135           Applications that were using the SOUP_MESSAGE_NO_REDIRECT
2136           flag to prevent libsoup from redirecting POSTs incorrectly
2137           before should now be able to remove that if they depend on
2138           libsoup-2.4 >= 2.3.2.
2139
2140         API additions:
2141
2142         * Added a SOUP_SESSION_USER_AGENT property to SoupSession, and
2143           SOUP_SERVER_SERVER_HEADER to SoupServer, to support
2144           automatically adding "User-Agent" and "Server" headers to
2145           messages. (The default behavior is to do nothing, as
2146           before.)
2147
2148         * Added several new methods to soup-forms.h. Applications that
2149           are encoding a fixed set of form fields can now just pass
2150           them to soup_form_encode(), rather than needing to construct
2151           a GHashTable or GData list. (Likewise, the new
2152           soup_uri_set_query_from_fields() behaves similarly for
2153           directly updating a URI with form data.) There are also now
2154           soup_form_request_new() and other related methods, to
2155           directly create a GET or POST SoupMessage for submitting a
2156           form query.
2157
2158           The original soup_form_* methods have all been renamed,
2159           although #defines exist for backward compatibility.
2160
2161         * Added soup_message_set_chunk_allocator() and
2162           soup_buffer_new_with_owner(), to give applications more
2163           control over memory usage/copying when doing streaming HTTP.
2164           [Wouter Cloetens, #513810].
2165
2166         * Added several new methods to soup-value-utils.h for working
2167           with multiple array or hash table values at once:
2168           soup_value_hash_new_with_vals(),
2169           soup_value_hash_insert_vals(),
2170           soup_value_hash_lookup_vals(),
2171           soup_value_array_new_with_vals(), and
2172           soup_value_array_append_vals().
2173
2174           This helps to simplify XML-RPC calls that send or receive
2175           structs or arrays.
2176
2177         * Added soup_date_to_time_t().
2178
2179         * Added SoupMessageHeadersIterator, an iterator type for
2180           SoupMessageHeaders that can be used instead of
2181           soup_message_headers_foreach().
2182
2183         Bug fixes:
2184
2185         * Fixed a crash-when-idle in evolution-exchange [#437835] and
2186           rhythmbox [#506552].
2187
2188         * Added the API version to the gtk-doc installation dir, to
2189           prevent parallel-installation problems with libsoup 2.2 and
2190           2.4. [#512810, Daniel Gryniewicz].
2191
2192         * Fixed tests/query-test to compile correctly on Solaris.
2193           [#513602, patch from Jeff Cai]
2194
2195         * Fixed some other minor HTTP conformance issues.
2196
2197         Python bindings:
2198
2199         * Although not present in the release tarball, there are now
2200           experimental python bindings for libsoup in GNOME subversion
2201           (in the python/ subdirectory of libsoup trunk). These are
2202           not yet stable (and are not built by default or installed
2203           even when building from svn), but comments on them are
2204           welcome at libsoup-list@gnome.org
2205
2206 Changes in libsoup from the 2.2 series to 2.3.0.1:
2207
2208         libsoup 2.3.0 is the first beta release of the libsoup 2.4
2209         series. It is an API break from the earlier 2.2 series that
2210         fixes various bugs and API warts and lays the groundwork for
2211         language bindings and various new features in upcoming
2212         releases.
2213
2214         (2.3.0.1 is identical to the 2.3.0 release in terms of code,
2215         but includes this updated NEWS file which was accidentally
2216         left out of the 2.3.0 tarball.)
2217
2218         http://library.gnome.org/devel/libsoup/unstable/libsoup-porting-2.2-2.4.html
2219         goes over the API changes in detail. If you have questions not
2220         answered by the porting document, please send mail to
2221         libsoup-list@gnome.org.
2222
2223         Specific user-reported bugs fixed in this release:
2224
2225         * SoupURI now correctly handles URIs with complex encoded
2226           queries [#266516, Jean-Yves Lefort]
2227
2228         * It is now possible for a SoupServer to use Digest auth
2229           without needing to have the cleartext password available.
2230           [#347108, Anas Nashif]
2231
2232         * Digest authentication now properly handles "stale=true" and
2233           "nextnonce=..." [#471380, Jari Urpalainen]
2234
2235         * SoupServer is now subclassible [#491653, Mathias Hasselmann]
2236
2237         * soup_server_run_async and soup_server_quit no longer ref and
2238           unref the server, as that doesn't match ordinary GObject
2239           conventions [#494128, Mathias Hasselmann]
2240
2241         * The test programs no longer use a symbol name that conflicts
2242           with Cygwin [#501631, Cygwin Ports Maintainer]
2243
2244         * libsoup can now handle the not-quite-HTTP responses returned
2245           by Shoutcast servers [#502325, Wouter Cloetens]
2246
2247         * If you use libsoup while disconnected from the network, it
2248           no longer caches the failed DNS results [#508593, Bradley
2249           Worley]
2250
2251         Items from http://live.gnome.org/LibSoup/ToDo fixed:
2252
2253         * "Expect: 100-continue" processing now works correctly on
2254           both client and server.
2255
2256         * SoupSessions are no longer leaked
2257
2258         * The XML-RPC API is improved. The SOAP API is gone...
2259
2260         * Added utility functions for HTML form handling
2261
2262         * Improved message header handling
2263
2264         * SoupServer now automatically adds a "Date" header
2265
2266 ==========
2267
2268 Changes in libsoup from 2.2.103 to 2.2.104:
2269
2270         * soup_message_io_pause() and soup_message_io_pause() are now
2271           allowed for client messages (and in particular, they don't
2272           mess up when called from the "got_chunk" callback).
2273           [#452280, Marco Barisione]
2274
2275         * Fixed some bugs in SOUP_SESSION_ASYNC_CONTEXT support that
2276           would cause parts of an operation to run in the default
2277           context rather than the session's context. Also fixed some
2278           leaks and added a regression test. [#498509, Wouter
2279           Cloetens]
2280
2281         * There is a new test/sample program, tests/pull-api.c,
2282           showing how to implement a pull API using SoupSessionAsync.
2283           (This depends on the fixes for #452280 and #498509, so it
2284           won't work with older versions of libsoup.)
2285
2286         * Discovered "valgrind --leak-resolution=med" and fixed some
2287           more memory leaks.
2288
2289 Changes in libsoup from 2.2.102 to 2.2.103:
2290
2291         * Fix memory corruption in SoupSessionAsync that caused
2292           rhythmbox to crash. [#484988, patch from Rob Bradford]
2293
2294         * Fix socket refcounting in SoupServer to fix warnings /
2295           possible crash. [#459896, Emanuele Aina]
2296
2297 Changes in libsoup from 2.2.101 to 2.2.102:
2298
2299         * Unbreak the build when building without SSL. Not that you
2300           should be building without SSL anyway, but... (reported by
2301           guenther).
2302
2303 Changes in libsoup from 2.2.100 to 2.2.101:
2304
2305         * Fix build on cygwin [384498]
2306
2307         * Fix SSL rehandshaking on synchronous sockets [415402, Jacob
2308           Berkman] and add a regression test for it.
2309
2310         * Fix two bugs in https tunnels over proxies that require
2311           authentication (noticed by Varadhan), and add a regression
2312           test for them.
2313
2314         * Ensure that if you queue multiple messages at once to an
2315           http server that requires authentication but that you
2316           haven't authenticated to yet, that all of the messages get
2317           properly authenticated [271540, James Willcox]. And add a
2318           regression test for it.
2319
2320         * Fix NTLM authentication, which got broken by the previous
2321           fix. [471389, Varadhan]. Add a basic NTLM regression test
2322           that doesn't really test the crypto/encoding parts, but at
2323           least makes sure that the message flow is correct.
2324
2325         * Allow trailing whitespace after HTTP version in
2326           Response-Line, for compatibility with broken servers
2327           [475169, Stephane Loeuillet]. Add that case to the
2328           header-parsing regression test.
2329
2330         * Fix crash when the session's "authenticate" handler returns
2331           a username and no password when using NTLM. [480987, Wendell
2332           MacKenzie]
2333
2334         * Use "new" glib base64 and iso8601 methods rather than
2335           duplicating them. [337010, patch from Emmanuele Bassi].
2336
2337         * Implement soup_session_queue_message() for SoupSessionSync.
2338
2339         * Add G_BEGIN_DECLS / G_END_DECLS to all headers that were
2340           missing them. [438776, patch from Jonathon Jongsma].
2341
2342         * Fix broken definition of SOUP_IS_MESSAGE_FILTER_CLASS. Noted
2343           by "cascardo" on libsoup-list.
2344
2345         * Remove documentation of non-public MD5 methods [440092,
2346           Jonathon Jongsma]. Removed a mysterious half-sentence in the
2347           SoupMessage docs [458116, Marco Barisione].
2348
2349 Changes in libsoup from 2.2.99 to 2.2.100:
2350
2351         * Fixed soup_headers_parse_status_line() so WebDAV response
2352           parsing will work again. [406997]
2353
2354         * Fixed a bug in the header-parsing regression test that
2355           caused the test to fail sometimes, even though the actual
2356           header-parsing code was fine.
2357
2358 Changes in libsoup from 2.2.98 to 2.2.99:
2359
2360         * Fixed header parsing, including a crash in SoupServer with
2361           certain malformed requests [391970].
2362
2363         * Fixed redirection to other hosts with SoupSessionAsync.
2364           [382251]
2365
2366         * Fixed a small memory leak pointed out by Chris Austin.
2367
2368 Changes in libsoup from 2.2.97 to 2.2.98:
2369
2370         * The XML-RPC code now correctly interprets <value>foo</value>
2371           as meaning the same thing as
2372           <value><string>foo</string></value>. [364490] Pointed out by
2373           Todd Kulesza.
2374
2375         * Memory leak fixes from Andrew W. Nosenko.
2376
2377         * A few symbols that should have been static before now are.
2378           [376387] Patch from Matthias Clasen.
2379
2380 Changes in libsoup from 2.2.96 to 2.2.97:
2381
2382         * Fixed SOAP and XML-RPC code to handle whitespace and
2383           comments in the XML better. (Based on a patch from Andrew W.
2384           Nosenko.)
2385
2386         * Fixed lots of typecasting/constness warnings in the code
2387           (mostly via a patch from Andrew W. Nosenko)
2388
2389         * Fixed build on Cygwin [321827]
2390
2391         * Fixed libsoup-2.2.pc fields [343340] and make it get
2392           uninstalled correctly [356809]. (Mikhail Zabaluev and
2393           Matthew Barnes)
2394
2395         * Fixed some small leaks in SoupServer pointed out by Paolo
2396           Borelli. [351500]
2397
2398 Changes in libsoup from 2.2.95.1 to 2.2.96:
2399
2400         * SoupServer now works even if you don't explicitly set an
2401           encoding for the response. (In particular, the automatic 404
2402           if you request a path with no handlers now works. Problem
2403           pointed out by Dennis Jacobfeuerborn.)
2404
2405         * WWW-Authenticate and Proxy-Authenticate responses with no
2406           realm parameter are now ignored, as per RFC 2617, fixing a
2407           crash pointed out by Nate Nielsen.
2408
2409         * Added soup_xmlrpc_message_from_string(), from Fernando
2410           Herrera [348532].
2411
2412         * simple-httpd and "get" now support HEAD
2413
2414 Changes in libsoup from 2.2.94 to 2.2.95.1:
2415
2416         * Even more fixes to XML-RPC, found by the new XML-RPC
2417           regression test. This includes some API changes that I don't
2418           feel guilty about, because the code totally didn't work at
2419           all before.
2420
2421         * Fixed a bug in soup_mktime_utc()
2422
2423         * (2.2.95 was identical to 2.2.95.1. The only difference is
2424           that the shared library version was belatedly bumped from
2425           8.2.0 to 8.3.0 to reflect the API "additions")
2426
2427 Changes in libsoup from 2.2.93 to 2.2.94:
2428
2429         * Various fixes to the XML-RPC code (which apparently had not
2430           actually ever worked before) from Brent Smith. [343973,
2431           344222, 344458]
2432
2433         * Added client and server API tutorials to the docs
2434
2435         * auth-test now uses a local Apache 2.2 install, if possible,
2436           rather than depending on files that used to be on an old
2437           Ximian web server but haven't been anywhere for a long time.
2438           [311825]
2439
2440 Changes in libsoup from 2.2.92 to 2.2.93:
2441
2442         * Fixed outgoing data corruption caused when SoupServer
2443           started writing out a response a second time after already
2444           having started once. [334469]. Also fixed 342640 and another
2445           bug caused by the workaround for 334469 in 2.2.92. Based on
2446           patches and analysis from William Jon McCann and Armin
2447           Bauer.
2448
2449         * Fixed a deadlock when changing a session's proxy URI.
2450           [309867 / bnc 174255, based on a patch by Veerapuram
2451           Varadhan].
2452
2453         * Fixed https-via-proxies in the synchronous case. [bnc 174255]
2454
2455         * Fixed a crash in evolution-exchange [342545, fix based on an
2456           analysis by Wang Xin].
2457
2458         * Fixed simple-proxy to not crash at startup. Oops. (Alex
2459           Larsson)
2460
2461 Changes in libsoup from 2.2.91 to 2.2.92:
2462
2463         * Fixed server-side digest auth to return a valid "algorithm"
2464           value and client-side to not crash if it sees an invalid one
2465           [328615].
2466
2467         * Fixed the Request-Line parsing code to not hardcode a
2468           maximum URI length (to allow very long DAAP requests from
2469           iTunes in Rhythmbox). [335040]
2470
2471         * Fixed some warnings (signed/unsigned mismatch).
2472
2473 Changes in libsoup from 2.2.7 to 2.2.91:
2474
2475         * (The large version number bump is because there was an
2476           internal 2.2.90 release for SUSE 10.1 alphas, which was
2477           supposed to be intermediate between 2.2.7 and 2.4.0. But
2478           2.4.0 didn't end up happening, and I don't want to regress
2479           the version number at this point.)
2480
2481         * SoupSession, SoupServer, SoupConnection, SoupSocket, and
2482           SoupAddress now have an "async-context" property that allows
2483           you to use the async API in a non-default GMainContext.
2484           [Based on patches from Armin Bauer and Jürg Billeter.]
2485
2486         * SoupSession, SoupConnection, and SoupSocket now have a
2487           "timeout" property to stop synchronous sockets from hanging
2488           forever if the remote end is unresponsive (from Varadhan).
2489
2490         * Fixed some bugs in soup_date_iso8601_parse(). [324671, from
2491           Emmanuele Bassi]
2492
2493         * More Windows build fixes from Tor.
2494
2495 Changes in libsoup from 2.2.6.1 to 2.2.7:
2496
2497         * Fixed a crash when using NTLM connections [316313, probably
2498           also 318252]. (Also 321208, which was a bug introduced in
2499           the original fix for 316313.)
2500
2501         * Fixed a bug that could cause soup to suck up all available
2502           CPU when a connection to a SoupServer was dropped by the
2503           other side [319305, patch from Jonathan Matthew]
2504
2505         * Fixed the creation of struct elements in XMLRPC messages
2506           [321362, patch from Sebastian Bauer]
2507
2508         * Plugged a small memory leak in SoupSocket (from Wang Xin).
2509
2510         * Fixed two compile problems, a gccism [320349, patch from
2511           Roland Illig], and a strict-aliasing warning from gcc 4.1.
2512
2513 Changes in libsoup from 2.2.6 to 2.2.6.1:
2514
2515         * Fixed a crash when using SoupSoapMessage
2516
2517 Changes from 2.2.5 to 2.2.6:
2518
2519         * Fixed a crash when canceling a message (from Tambet Ingo)
2520
2521         * Fixed a bug where a connection could be leaked forever in
2522           some circumstances if a request got a 30x, 401, or 407
2523           response, eventually causing a hang when the session hit its
2524           maximum connection limit. (Dan/Tambet)
2525
2526         * Fixed a memory leak. (Tambet)
2527
2528         * Fixed a bug that would sometimes show up when connecting to
2529           a server on localhost [#312540]
2530
2531         * Added some API to SoupServer and SoupSocket to help fix a
2532           long-standing rcd bug.
2533
2534 Changes from 2.2.4 to 2.2.5:
2535
2536         * Win32 support (from Tor Lillqvist)
2537
2538         * Up-to-date API documentation pretty much everywhere
2539
2540         * Basic XMLRPC support (from Mariano Suarez-Alvarez, Fernando
2541           Herrera, and Jeff Bailey)
2542
2543         * New HTTP timestamp-manipulation methods soup_date_parse,
2544           soup_date_generate, and soup_date_iso8601_parse.
2545
2546         * SoupSession now handles relative URLs in the Location header
2547           (in violation of RFC 2616, but in line with how some servers
2548           behave.) [270688]
2549
2550 Changes from 2.2.3 to 2.2.4:
2551
2552         * Fixed a problem with NTLM authentication against
2553           multi-domain servers. [306877]
2554
2555         * Fixed DNS lookups on Solaris. [254551, 268389]
2556
2557 Changes from 2.2.2 to 2.2.3:
2558
2559         * Now compiles against gnutls 1.2.0 [257811]
2560
2561         * Fixed a bug that could result in 100% CPU usage if an SSL
2562           server closed the connection uncleanly. [273352]
2563
2564 Changes from 2.2.1 to 2.2.2:
2565
2566         * The SSL validation fix from 2.2.1 [264414] is now completely
2567           fixed. (Part of the fix didn't actually make it into 2.2.1)
2568
2569         * HTTPS certificate validation now works when using an HTTP
2570           proxy. [268583]
2571
2572         * HTTP proxy code deals better with proxies that try to make
2573           the user do HTML-form-based authentication. [268531]
2574
2575         * 64-bit fixes for NTLM auth code. [270323, from Michael
2576           Zucchi]
2577
2578 Changes from 2.2.0 to 2.2.1:
2579
2580         * Updated for a libgcrypt API change between 1.1.9x and 1.2.x
2581           that caused a crash at runtime if you compiled against
2582           1.2.x. [266342]
2583
2584         * SSL certificate validation failure should now always result
2585           in a status of SOUP_STATUS_SSL_FAILED, rather than getting
2586           turned into SOUP_STATUS_IO_ERROR. [264414]
2587
2588
2589 Changes in libsoup from the 2.0 series (1.99.x versions) to 2.2:
2590
2591         * Most of the libsoup datatypes are now GObjects. (SoupUri
2592           is currently an exception to this.)
2593
2594                 * SoupMessage now emits signals at various stages of
2595                   processing. (Eg, "wrote_body", "got_headers".) (You
2596                   can also still use soup_message_add_*handler().)
2597
2598         * SoupContexts are gone; soup_message_new() now takes a URI
2599           string.
2600
2601         * All formerly global state is now maintained by the
2602           SoupSession object. (This includes the connection pool,
2603           proxy server, cached authentication information, SSL
2604           certificates, etc.)
2605
2606                 * You can create a SoupSessionAsync (for 2.0-like
2607                   behavior) or SoupSessionSync (for blocking,
2608                   synchronous usage).
2609
2610                 * You can add SoupMessageFilter objects to a session
2611                   to have certain processing automatically performed
2612                   on every message sent via that session. (Eg, setting
2613                   up handlers.)
2614
2615                 * NTLM authentication is no longer supported by
2616                   default. You must enable it by setting the
2617                   SOUP_SESSION_USE_NTLM flag on the session.
2618
2619                 * The preferred method of handling authentication is
2620                   now via the "authenticate" and "reauthenticate"
2621                   signals on SoupSession. (The old style, of encoding
2622                   the user and password information into the url is
2623                   also still supported.)
2624
2625         * The SOUP_ERROR_* values are now SOUP_STATUS_* (so that we
2626           don't have "SOUP_ERROR_OK" and the like).
2627
2628                 * SOUP_MESSAGE_IS_ERROR() is gone, since some cases
2629                   want to include 3xx responses and some don't.
2630
2631                 * SOUP_ERROR_CANT_AUTHENTICATE and
2632                   SOUP_ERROR_CANT_AUTHENTICATE_PROXY are now gone,
2633                   since they didn't carry any information that
2634                   SOUP_STATUS_UNAUTHORIZED and
2635                   SOUP_STATUS_PROXY_UNAUTHORIZED don't.
2636
2637                 * DNS errors now show up as the new status code
2638                   SOUP_STATUS_CANT_RESOLVE rather than being mixed in
2639                   with SOUP_ERROR_CANT_CONNECT.
2640
2641         * Minimal SOAP support has been added back, via
2642           SoupSoapMessage/SoupSoapResponse
2643
2644         * The HTTP I/O state machine was completely rewritten, fixing
2645           numerous crashes, leaks, and protocol errors.
2646
2647         * SoupUri now conforms to RFC 2396. Mostly.
2648
2649         * Various test programs have been added under tests/
2650
2651         * Removed:
2652
2653                 * Support for OpenSSL (which was horribly buggy) and
2654                   Mozilla NSS (which was never finished). We only
2655                   support GNUTLS for SSL now.
2656
2657                 * SOCKS support
2658
2659                 * CGI support in SoupServer