r72182 - in /branches/upstream/libhttp-tiny-perl/current: Changes META.json META.yml Makefile.PL README lib/HTTP/Tiny.pm

ghedo-guest at users.alioth.debian.org ghedo-guest at users.alioth.debian.org
Sun Apr 3 17:00:42 UTC 2011


Author: ghedo-guest
Date: Sun Apr  3 17:00:04 2011
New Revision: 72182

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=72182
Log:
[svn-upgrade] new version libhttp-tiny-perl (0.012)

Modified:
    branches/upstream/libhttp-tiny-perl/current/Changes
    branches/upstream/libhttp-tiny-perl/current/META.json
    branches/upstream/libhttp-tiny-perl/current/META.yml
    branches/upstream/libhttp-tiny-perl/current/Makefile.PL
    branches/upstream/libhttp-tiny-perl/current/README
    branches/upstream/libhttp-tiny-perl/current/lib/HTTP/Tiny.pm

Modified: branches/upstream/libhttp-tiny-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libhttp-tiny-perl/current/Changes?rev=72182&op=diff
==============================================================================
--- branches/upstream/libhttp-tiny-perl/current/Changes (original)
+++ branches/upstream/libhttp-tiny-perl/current/Changes Sun Apr  3 17:00:04 2011
@@ -1,4 +1,15 @@
 Release notes for HTTP-Tiny
+
+0.012     2011-03-31 15:48:02 America/New_York
+
+  [BUG FIXES]
+
+  - mirror() now uses binmode during output (RT #67118) [Serguei Trouchelle]
+
+  [DOCUMENTATION]
+
+  - noted that SSL certificates are not verified against CA's
+    (RT #66907)
 
 0.011     2011-03-19 20:48:39 America/New_York
 
@@ -7,7 +18,7 @@
   - Made t/000_load.t less verbose under harness (RT#65507) [Dave Mitchell]
 
   - Removed 'Errno' as an explicit prefix (it is a core module, but not
-    indexed by PAUSE, which might confuse some installers
+    indexed by PAUSE, which might confuse some installers)
 
 0.010     2011-02-04 02:45:31 EST5EDT
 

Modified: branches/upstream/libhttp-tiny-perl/current/META.json
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libhttp-tiny-perl/current/META.json?rev=72182&op=diff
==============================================================================
--- branches/upstream/libhttp-tiny-perl/current/META.json (original)
+++ branches/upstream/libhttp-tiny-perl/current/META.json Sun Apr  3 17:00:04 2011
@@ -57,11 +57,11 @@
    "provides" : {
       "HTTP::Tiny" : {
          "file" : "lib/HTTP/Tiny.pm",
-         "version" : "0.011"
+         "version" : "0.012"
       },
       "HTTP::Tiny::Handle" : {
          "file" : "lib/HTTP/Tiny.pm",
-         "version" : "0.011"
+         "version" : "0.012"
       }
    },
    "release_status" : "stable",
@@ -77,6 +77,6 @@
          "web" : "http://github.com/dagolden/p5-http-tiny/tree"
       }
    },
-   "version" : "0.011"
+   "version" : "0.012"
 }
 

Modified: branches/upstream/libhttp-tiny-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libhttp-tiny-perl/current/META.yml?rev=72182&op=diff
==============================================================================
--- branches/upstream/libhttp-tiny-perl/current/META.yml (original)
+++ branches/upstream/libhttp-tiny-perl/current/META.yml Sun Apr  3 17:00:04 2011
@@ -34,10 +34,10 @@
 provides:
   HTTP::Tiny:
     file: lib/HTTP/Tiny.pm
-    version: 0.011
+    version: 0.012
   HTTP::Tiny::Handle:
     file: lib/HTTP/Tiny.pm
-    version: 0.011
+    version: 0.012
 requires:
   Carp: 0
   IO::Socket: 0
@@ -47,4 +47,4 @@
   bugtracker: http://rt.cpan.org/Public/Dist/Display.html?Name=HTTP-Tiny
   homepage: http://github.com/dagolden/p5-http-tiny/tree
   repository: git://github.com/dagolden/p5-http-tiny.git
-version: 0.011
+version: 0.012

Modified: branches/upstream/libhttp-tiny-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libhttp-tiny-perl/current/Makefile.PL?rev=72182&op=diff
==============================================================================
--- branches/upstream/libhttp-tiny-perl/current/Makefile.PL (original)
+++ branches/upstream/libhttp-tiny-perl/current/Makefile.PL Sun Apr  3 17:00:04 2011
@@ -35,7 +35,7 @@
     'IO::Socket' => '0',
     'Time::Local' => '0'
   },
-  'VERSION' => '0.011',
+  'VERSION' => '0.012',
   'test' => {
     'TESTS' => 't/*.t'
   }

Modified: branches/upstream/libhttp-tiny-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libhttp-tiny-perl/current/README?rev=72182&op=diff
==============================================================================
--- branches/upstream/libhttp-tiny-perl/current/README (original)
+++ branches/upstream/libhttp-tiny-perl/current/README Sun Apr  3 17:00:04 2011
@@ -2,7 +2,7 @@
     HTTP::Tiny - A small, simple, correct HTTP/1.1 client
 
 VERSION
-    version 0.011
+    version 0.012
 
 SYNOPSIS
         use HTTP::Tiny;
@@ -195,6 +195,8 @@
 
     *   Direct "https" connections are supported only if IO::Socket::SSL is
         installed. There is no support for "https" connections via proxy.
+        Any SSL certificate that matches the host is accepted -- SSL
+        certificates are not verified against certificate authorities.
 
     *   Cookies are not directly supported. Users that set a "Cookie" header
         should also set "max_redirect" to zero to ensure cookies are not

Modified: branches/upstream/libhttp-tiny-perl/current/lib/HTTP/Tiny.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libhttp-tiny-perl/current/lib/HTTP/Tiny.pm?rev=72182&op=diff
==============================================================================
--- branches/upstream/libhttp-tiny-perl/current/lib/HTTP/Tiny.pm (original)
+++ branches/upstream/libhttp-tiny-perl/current/lib/HTTP/Tiny.pm Sun Apr  3 17:00:04 2011
@@ -9,7 +9,7 @@
 #
 package HTTP::Tiny;
 BEGIN {
-  $HTTP::Tiny::VERSION = '0.011';
+  $HTTP::Tiny::VERSION = '0.012';
 }
 use strict;
 use warnings;
@@ -62,6 +62,7 @@
     my $tempfile = $file . int(rand(2**31));
     open my $fh, ">", $tempfile
         or Carp::croak(qq/Error: Could not open temporary file $tempfile for downloading: $!/);
+    binmode $fh;
     $args->{data_callback} = sub { print {$fh} $_[0] };
     my $response = $self->request('GET', $url, $args);
     close $fh
@@ -759,7 +760,7 @@
 
 =head1 VERSION
 
-version 0.011
+version 0.012
 
 =head1 SYNOPSIS
 
@@ -1015,6 +1016,8 @@
 
 Direct C<https> connections are supported only if L<IO::Socket::SSL> is
 installed.  There is no support for C<https> connections via proxy.
+Any SSL certificate that matches the host is accepted -- SSL certificates
+are not verified against certificate authorities.
 
 =item *
 




More information about the Pkg-perl-cvs-commits mailing list