File tree Expand file tree Collapse file tree 4 files changed +29
-3
lines changed Expand file tree Collapse file tree 4 files changed +29
-3
lines changed Original file line number Diff line number Diff line change
1
+ _______________________________________________________________________________
2
+ 2011-03-27 Release 6.02
3
+
4
+ This is the release where we try to help the CPAN-toolchain be able to install
5
+ the modules required for https-support in LWP. We have done this by unbundling
6
+ the LWP::Protocol::https module from the libwww-perl distribution. In order to
7
+ have https support you now need to install (or depend on) 'LWP::Protocol::https'
8
+ and then this will make sure that all the prerequsite modules comes along.
9
+ See [RT#66838].
10
+
11
+ This release also removes the old http10 modules that has really been
12
+ deprecated since v5.60. These should have been removed at the v6.00 jump, but
13
+ I forgot.
14
+
15
+
16
+ Christopher J. Madsen (1):
17
+ Ignores env variables when ssl_opts provided [RT#66663]
18
+
19
+ Gisle Aas (4):
20
+ Fix typo; Authen::NTLM [RT#66884]
21
+
22
+ Yury Zavarin (1):
23
+ Support LWP::ConnCache->new(total_capacity => undef)
24
+
25
+
26
+
1
27
_______________________________________________________________________________
2
28
2011-03-09 Release 6.01
3
29
Original file line number Diff line number Diff line change 1
1
package LWP ;
2
2
3
- $VERSION = " 6.01 " ;
3
+ $VERSION = " 6.02 " ;
4
4
sub Version { $VERSION ; }
5
5
6
6
require 5.008;
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package LWP::ConnCache;
3
3
use strict;
4
4
use vars qw( $VERSION $DEBUG) ;
5
5
6
- $VERSION = " 6.00 " ;
6
+ $VERSION = " 6.02 " ;
7
7
8
8
9
9
sub new {
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ use vars qw(@ISA $VERSION);
5
5
6
6
require LWP::MemberMixin;
7
7
@ISA = qw( LWP::MemberMixin) ;
8
- $VERSION = " 6.00 " ;
8
+ $VERSION = " 6.02 " ;
9
9
10
10
use HTTP::Request ();
11
11
use HTTP::Response ();
You can’t perform that action at this time.
0 commit comments