Skip to content

Commit b099484

Browse files
committed
Release 5.815.
1 parent 9a23ea2 commit b099484

File tree

12 files changed

+57
-10
lines changed

12 files changed

+57
-10
lines changed

Changes

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,47 @@
1+
2008-09-24 Gisle Aas <[email protected]>
2+
3+
Release 5.815
4+
5+
Gisle Aas (23):
6+
We don't need to build the docs to run the tests.
7+
Style tweaks.
8+
The jigsaw service isn't up to much good these days.
9+
HTTP::Cookies produces warnings for undefined cookie param names [RT#38480]
10+
Typo fix; HTTP::Message will never include x-bzip2 in Accept-Encoding [RT#38617]
11+
Added HTTP::Config module
12+
Add methods to configure processing handlers.
13+
100 Continue response not complete.
14+
Use 3-arg open when response content to files.
15+
Make the show_progress attribute official (by documenting it).
16+
Start using handlers for driving the inner logic of LWP::UserAgent.
17+
Expose the content_is_html and content_is_xhtml methods from HTTP::Headers.
18+
Make credentials method able to get/set values.
19+
An auth handler per realm.
20+
Match proxy setting for request.
21+
Set up separate handler for adding proxy authentication.
22+
Add request_preprepare to be able to initialize proxy early enough.
23+
Smarter get_my_handler() that can also create handlers.
24+
Refactor; introduce run_handlers method
25+
Pass in handler hash to the handler callback.
26+
Don't let version=1 override behaviour if specified with a plan Set-Cookie header.
27+
Remove handler when we don't have a username/password for the realm.
28+
Make tests use Test.pm
29+
30+
Bron Gondwana (2):
31+
Double-check that username or password has changed after a failed login.
32+
Update Digest Authen to subclass Basic.
33+
34+
Ondrej Hanak (1):
35+
Avoid running out of filehandles with DYNAMIC_FILE_UPLOAD.
36+
37+
Todd Lipcon (1):
38+
Fixed parsing of header values starting with ':' [RT#39367]
39+
40+
amire80 (1):
41+
Documentation typo fixes [RT#38203]
42+
43+
44+
145
2008-07-25 Gisle Aas <[email protected]>
246

347
Release 5.814

lib/HTTP/Config.pm

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ package HTTP::Config;
22

33
use strict;
44
use URI;
5+
use vars qw($VERSION);
6+
7+
$VERSION = "5.815";
58

69
sub new {
710
my $class = shift;

lib/HTTP/Cookies.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use HTTP::Headers::Util qw(split_header_words join_header_words);
66
use LWP::Debug ();
77

88
use vars qw($VERSION $EPOCH_OFFSET);
9-
$VERSION = "5.810";
9+
$VERSION = "5.815";
1010

1111
# Legacy: because "use "HTTP::Cookies" used be the ONLY way
1212
# to load the class HTTP::Cookies::Netscape.

lib/HTTP/Daemon.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package HTTP::Daemon;
33
use strict;
44
use vars qw($VERSION @ISA $PROTO $DEBUG);
55

6-
$VERSION = "5.810";
6+
$VERSION = "5.815";
77

88
use IO::Socket qw(AF_INET INADDR_ANY inet_ntoa);
99
@ISA=qw(IO::Socket::INET);

lib/HTTP/Headers.pm

Lines changed: 1 addition & 1 deletion
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.810";
7+
$VERSION = "5.815";
88

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

lib/HTTP/Message.pm

Lines changed: 1 addition & 1 deletion
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.814";
5+
$VERSION = "5.815";
66

77
require HTTP::Headers;
88
require Carp;

lib/HTTP/Request.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package HTTP::Request;
22

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

77
use strict;
88

lib/HTTP/Request/Common.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ require Exporter;
1313
require HTTP::Request;
1414
use Carp();
1515

16-
$VERSION = "5.814";
16+
$VERSION = "5.815";
1717

1818
my $CRLF = "\015\012"; # "\r\n" is not portable
1919

lib/LWP.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package LWP;
22

3-
$VERSION = "5.814";
3+
$VERSION = "5.815";
44
sub Version { $VERSION; }
55

66
require 5.005;

lib/LWP/Protocol.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package LWP::Protocol;
22

33
require LWP::MemberMixin;
44
@ISA = qw(LWP::MemberMixin);
5-
$VERSION = "5.810";
5+
$VERSION = "5.815";
66

77
use strict;
88
use Carp ();

0 commit comments

Comments
 (0)