Hello community,

here is the log from the commit of package perl-AnyEvent-HTTP for 
openSUSE:Factory checked in at 2013-06-05 17:47:16
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-AnyEvent-HTTP (Old)
 and      /work/SRC/openSUSE:Factory/.perl-AnyEvent-HTTP.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-AnyEvent-HTTP"

Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-AnyEvent-HTTP/perl-AnyEvent-HTTP.changes    
2012-05-25 16:17:31.000000000 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-AnyEvent-HTTP.new/perl-AnyEvent-HTTP.changes   
    2013-06-05 17:47:17.000000000 +0200
@@ -1,0 +2,8 @@
+Mon Jun  3 11:26:23 UTC 2013 - [email protected]
+
+- updated to 2.15
+      - use the recurse parameter to also limit the number of retries to be
+         done, avodiing endless loops with broken servers, as reported
+         by Carl Chambers.
+
+-------------------------------------------------------------------

Old:
----
  AnyEvent-HTTP-2.14.tar.gz

New:
----
  AnyEvent-HTTP-2.15.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ perl-AnyEvent-HTTP.spec ++++++
--- /var/tmp/diff_new_pack.tRI5bh/_old  2013-06-05 17:47:17.000000000 +0200
+++ /var/tmp/diff_new_pack.tRI5bh/_new  2013-06-05 17:47:17.000000000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-AnyEvent-HTTP
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:           perl-AnyEvent-HTTP
-Version:        2.14
+Version:        2.15
 Release:        0
 %define cpan_name AnyEvent-HTTP
 Summary:        Simple but non-blocking HTTP/HTTPS client

++++++ AnyEvent-HTTP-2.14.tar.gz -> AnyEvent-HTTP-2.15.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/AnyEvent-HTTP-2.14/Changes 
new/AnyEvent-HTTP-2.15/Changes
--- old/AnyEvent-HTTP-2.14/Changes      2012-04-22 14:58:14.000000000 +0200
+++ new/AnyEvent-HTTP-2.15/Changes      2012-11-14 23:22:10.000000000 +0100
@@ -4,6 +4,13 @@
 TODO: httpbis: $location = URI->new_abs($location, 
"$scheme://$host:$port$path_query")->as_string;
 TODO: set_proxy hook
 TODO: use proxy hook
+TODO: ip6 literals in url
+TODO: maybe read big chunks in smaller portions for chunked-encoding + on_body.
+
+2.15 Wed Nov 14 23:22:07 CET 2012
+       - use the recurse parameter to also limit the number of retries to be
+          done, avodiing endless loops with broken servers, as reported
+          by Carl Chambers.
 
 2.14 Sun Apr 22 14:57:51 CEST 2012
        - Time::Local::timegm croaks on out-of-range values. Don't let
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/AnyEvent-HTTP-2.14/HTTP.pm 
new/AnyEvent-HTTP-2.15/HTTP.pm
--- old/AnyEvent-HTTP-2.14/HTTP.pm      2012-04-22 14:58:18.000000000 +0200
+++ new/AnyEvent-HTTP-2.15/HTTP.pm      2012-11-14 23:22:00.000000000 +0100
@@ -48,7 +48,7 @@
 
 use base Exporter::;
 
-our $VERSION = '2.14';
+our $VERSION = '2.15';
 
 our @EXPORT = qw(http_get http_post http_head http_request);
 
@@ -156,8 +156,8 @@
 
 =item recurse => $count (default: $MAX_RECURSE)
 
-Whether to recurse requests or not, e.g. on redirects, authentication
-retries and so on, and how often to do so.
+Whether to recurse requests or not, e.g. on redirects, authentication and
+other retries and so on, and how often to do so.
 
 =item headers => hashref
 
@@ -1052,8 +1052,9 @@
             %state = ();
             $state{recurse} =
                http_request (
-                  $method => $url,
+                  $method   => $url,
                   %arg,
+                  recurse   => $recurse - 1,
                   keepalive => 0,
                   sub {
                      %state = ();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/AnyEvent-HTTP-2.14/META.json 
new/AnyEvent-HTTP-2.15/META.json
--- old/AnyEvent-HTTP-2.14/META.json    2012-04-22 14:58:26.000000000 +0200
+++ new/AnyEvent-HTTP-2.15/META.json    2012-11-14 23:22:15.000000000 +0100
@@ -38,5 +38,5 @@
       }
    },
    "release_status" : "stable",
-   "version" : "2.14"
+   "version" : "2.15"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/AnyEvent-HTTP-2.14/META.yml 
new/AnyEvent-HTTP-2.15/META.yml
--- old/AnyEvent-HTTP-2.14/META.yml     2012-04-22 14:58:26.000000000 +0200
+++ new/AnyEvent-HTTP-2.15/META.yml     2012-11-14 23:22:15.000000000 +0100
@@ -20,4 +20,4 @@
 requires:
   AnyEvent: 5.33
   common::sense: 3.3
-version: 2.14
+version: 2.15
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/AnyEvent-HTTP-2.14/README 
new/AnyEvent-HTTP-2.15/README
--- old/AnyEvent-HTTP-2.14/README       2012-04-22 14:58:27.000000000 +0200
+++ new/AnyEvent-HTTP-2.15/README       2012-11-14 23:22:15.000000000 +0100
@@ -108,7 +108,8 @@
 
         recurse => $count (default: $MAX_RECURSE)
             Whether to recurse requests or not, e.g. on redirects,
-            authentication retries and so on, and how often to do so.
+            authentication and other retries and so on, and how often to do
+            so.
 
         headers => hashref
             The request headers to use. Currently, "http_request" may

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to