9
0

- updated to 2.12

- fix a possible 'Can't call method "destroyed"' error (which would
    have been reported by Carl Chambers).
  - the keepalive session cache wouldn't take port and scheme into account
    when reusing connection - potentially causing information leaks
    (reported by Nick Kostirya).
  - bump AnyEvent dependency version (reported by Richard Harris).
  - the keepalive and persistent parameters were actually named
    differently in the code - they now work as documented.
  - fix a bug where callbacks would sometimes never be called when
    the request timeout is near or below the persistent connection
    timeout (testcase by Cindy Wang).
  - destroying the guard would have no effect when a request was
    recursing or being retired.
  - "proxy => undef" now overrides any global proxy when specified.
  - require scheme in urls, also use a stricter match to match urls,
    leading or trailing garbage is no longer tolerated.
  - EXPERIMENTAL: allow '=' in cookie values.
  - do not lowercase cookie names, only parameter names.
  - add missing dependency on common::sense.
  - add a resume download example.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-AnyEvent-HTTP?expand=0&rev=5
This commit is contained in:
Stephan Kulow
2011-06-14 09:46:09 +00:00
committed by Git OBS Bridge
parent bea1e7dbcd
commit 23652599b4
4 changed files with 85 additions and 40 deletions

View File

@@ -1,3 +1,28 @@
-------------------------------------------------------------------
Tue Jun 14 09:45:02 UTC 2011 - coolo@novell.com
- updated to 2.12
- fix a possible 'Can't call method "destroyed"' error (which would
have been reported by Carl Chambers).
- the keepalive session cache wouldn't take port and scheme into account
when reusing connection - potentially causing information leaks
(reported by Nick Kostirya).
- bump AnyEvent dependency version (reported by Richard Harris).
- the keepalive and persistent parameters were actually named
differently in the code - they now work as documented.
- fix a bug where callbacks would sometimes never be called when
the request timeout is near or below the persistent connection
timeout (testcase by Cindy Wang).
- destroying the guard would have no effect when a request was
recursing or being retired.
- "proxy => undef" now overrides any global proxy when specified.
- require scheme in urls, also use a stricter match to match urls,
leading or trailing garbage is no longer tolerated.
- EXPERIMENTAL: allow '=' in cookie values.
- do not lowercase cookie names, only parameter names.
- add missing dependency on common::sense.
- add a resume download example.
-------------------------------------------------------------------
Wed Dec 1 13:30:35 UTC 2010 - coolo@novell.com