Skip to content

Commit da7144e

Browse files
committed
Release 5.835
1 parent 2f7ce2e commit da7144e

16 files changed

+62
-15
lines changed

Changes

+47
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,50 @@
1+
_______________________________________________________________________________
2+
2010-05-05 Release 5.835
3+
4+
Gisle Aas (12):
5+
simple string can be simplified
6+
Make $mess->decoded_content remove XML encoding declarations [RT#52572]
7+
Don't allow saving to filenames starting with '.' suggested by server
8+
Avoid race between testing for existence of output file and opening the file
9+
Minor doc fixup -- wrongly ucfirsted word
10+
Use decoded_content in HTTP:Response synopsis [RT#54139]
11+
sun.com is no more. rip!
12+
Trivial layout tweak to reduce variable scope.
13+
Add 'make test_hudson' target
14+
Implement alt_charset parameter for decoded_content()
15+
Test decoding with different charset parameters
16+
lwp-download now needs the -s option to honor the Content-Disposition header
17+
18+
Ville Skyttä (9):
19+
Make LWP::MediaTypes::media_suffix case insensitive.
20+
Skip XML decoding tests if XML::Simple is not available.
21+
Documentation fixes.
22+
Fix m_media_type => "xhtml" matching.
23+
Make parse_head() apply to data: requests.
24+
Documentation spelling fixes.
25+
Documentation grammar fixes.
26+
Use $uri->secure in m_secure if available.
27+
Fix handling of multiple (same) base headers, and parameters in them.
28+
29+
Mark Stosberg (5):
30+
Strip out empty lines separated by CRLF
31+
Best Practice: avoid indirect object notation
32+
Speed up as_string by 4% by having _sorted_field_names return a reference
33+
Speed up scan() a bit. as_string() from this branch is now 6% faster
34+
Port over as_string() optimizations from HTTP::Headers::Fast
35+
36+
Tom Hukins (2):
37+
Link to referenced documentation.
38+
Update repository location.
39+
40+
Father Chrysostomos (1):
41+
Remove needless (and actually harmful) local $_
42+
43+
Sean M. Burke (1):
44+
"Perl & LWP" is available online
45+
46+
47+
148
_______________________________________________________________________________
249
2009-11-21 Release 5.834
350

bin/lwp-download

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ unless (getopts('as', \%opt)) {
7777
my $url = URI->new(shift || usage());
7878
my $argfile = shift;
7979
usage() if defined($argfile) && !length($argfile);
80-
my $VERSION = "5.827";
80+
my $VERSION = "5.835";
8181

8282
my $ua = LWP::UserAgent->new(
8383
agent => "lwp-download/$VERSION ",

lib/Bundle/LWP.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package Bundle::LWP;
22

3-
$VERSION = "5.810";
3+
$VERSION = "5.835";
44

55
1;
66

lib/HTTP/Config.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use strict;
44
use URI;
55
use vars qw($VERSION);
66

7-
$VERSION = "5.815";
7+
$VERSION = "5.835";
88

99
sub new {
1010
my $class = shift;

lib/HTTP/Headers.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use strict;
44
use Carp ();
55

66
use vars qw($VERSION $TRANSLATE_UNDERSCORE);
7-
$VERSION = "5.827";
7+
$VERSION = "5.835";
88

99
# The $TRANSLATE_UNDERSCORE variable controls whether '_' can be used
1010
# as a replacement for '-' in header field names.

lib/HTTP/Message.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package HTTP::Message;
22

33
use strict;
44
use vars qw($VERSION $AUTOLOAD);
5-
$VERSION = "5.834";
5+
$VERSION = "5.835";
66

77
require HTTP::Headers;
88
require Carp;

lib/HTTP/Negotiate.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package HTTP::Negotiate;
22

3-
$VERSION = "5.813";
3+
$VERSION = "5.835";
44
sub Version { $VERSION; }
55

66
require 5.002;

lib/HTTP/Response.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package HTTP::Response;
22

33
require HTTP::Message;
44
@ISA = qw(HTTP::Message);
5-
$VERSION = "5.824";
5+
$VERSION = "5.835";
66

77
use strict;
88
use HTTP::Status ();

lib/LWP.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package LWP;
22

3-
$VERSION = "5.834";
3+
$VERSION = "5.835";
44
sub Version { $VERSION; }
55

66
require 5.005;

lib/LWP/Authen/Ntlm.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package LWP::Authen::Ntlm;
33
use strict;
44
use vars qw/$VERSION/;
55

6-
$VERSION = '5.827';
6+
$VERSION = '5.835';
77

88
use Authen::NTLM "1.02";
99
use MIME::Base64 "2.12";

lib/LWP/MediaTypes.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ require Exporter;
44
@ISA = qw(Exporter);
55
@EXPORT = qw(guess_media_type media_suffix);
66
@EXPORT_OK = qw(add_type add_encoding read_media_types);
7-
$VERSION = "5.822";
7+
$VERSION = "5.835";
88

99
use strict;
1010

lib/LWP/RobotUA.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package LWP::RobotUA;
22

33
require LWP::UserAgent;
44
@ISA = qw(LWP::UserAgent);
5-
$VERSION = "5.827";
5+
$VERSION = "5.835";
66

77
require WWW::RobotRules;
88
require HTTP::Request;

lib/LWP/Simple.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ require Exporter;
1414
use HTTP::Status;
1515
push(@EXPORT, @HTTP::Status::EXPORT);
1616

17-
$VERSION = "5.827";
17+
$VERSION = "5.835";
1818

1919
sub import
2020
{

lib/LWP/UserAgent.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use vars qw(@ISA $VERSION);
55

66
require LWP::MemberMixin;
77
@ISA = qw(LWP::MemberMixin);
8-
$VERSION = "5.834";
8+
$VERSION = "5.835";
99

1010
use HTTP::Request ();
1111
use HTTP::Response ();

lib/WWW/RobotRules/AnyDBM_File.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package WWW::RobotRules::AnyDBM_File;
22

33
require WWW::RobotRules;
44
@ISA = qw(WWW::RobotRules);
5-
$VERSION = "5.810";
5+
$VERSION = "5.835";
66

77
use Carp ();
88
use AnyDBM_File;

lib/WWW/RobotRules/DB_File.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package WWW::RobotRules::DB_File;
22

33
require WWW::RobotRules;
44
@ISA = qw(WWW::RobotRules);
5-
$VERSION = "5.810";
5+
$VERSION = "5.835";
66

77
use Carp ();
88
use DB_File;

0 commit comments

Comments
 (0)