Skip to content

Commit

Permalink
Release 5.815.
Browse files Browse the repository at this point in the history
  • Loading branch information
gisle committed Sep 24, 2008
1 parent 9a23ea2 commit b099484
Show file tree
Hide file tree
Showing 12 changed files with 57 additions and 10 deletions.
44 changes: 44 additions & 0 deletions Changes
@@ -1,3 +1,47 @@
2008-09-24 Gisle Aas <gisle@ActiveState.com>

Release 5.815

Gisle Aas (23):
We don't need to build the docs to run the tests.
Style tweaks.
The jigsaw service isn't up to much good these days.
HTTP::Cookies produces warnings for undefined cookie param names [RT#38480]
Typo fix; HTTP::Message will never include x-bzip2 in Accept-Encoding [RT#38617]
Added HTTP::Config module
Add methods to configure processing handlers.
100 Continue response not complete.
Use 3-arg open when response content to files.
Make the show_progress attribute official (by documenting it).
Start using handlers for driving the inner logic of LWP::UserAgent.
Expose the content_is_html and content_is_xhtml methods from HTTP::Headers.
Make credentials method able to get/set values.
An auth handler per realm.
Match proxy setting for request.
Set up separate handler for adding proxy authentication.
Add request_preprepare to be able to initialize proxy early enough.
Smarter get_my_handler() that can also create handlers.
Refactor; introduce run_handlers method
Pass in handler hash to the handler callback.
Don't let version=1 override behaviour if specified with a plan Set-Cookie header.
Remove handler when we don't have a username/password for the realm.
Make tests use Test.pm

Bron Gondwana (2):
Double-check that username or password has changed after a failed login.
Update Digest Authen to subclass Basic.

Ondrej Hanak (1):
Avoid running out of filehandles with DYNAMIC_FILE_UPLOAD.

Todd Lipcon (1):
Fixed parsing of header values starting with ':' [RT#39367]

amire80 (1):
Documentation typo fixes [RT#38203]



2008-07-25 Gisle Aas <gisle@ActiveState.com>

Release 5.814
Expand Down
3 changes: 3 additions & 0 deletions lib/HTTP/Config.pm
Expand Up @@ -2,6 +2,9 @@ package HTTP::Config;

use strict;
use URI;
use vars qw($VERSION);

$VERSION = "5.815";

sub new {
my $class = shift;
Expand Down
2 changes: 1 addition & 1 deletion lib/HTTP/Cookies.pm
Expand Up @@ -6,7 +6,7 @@ use HTTP::Headers::Util qw(split_header_words join_header_words);
use LWP::Debug ();

use vars qw($VERSION $EPOCH_OFFSET);
$VERSION = "5.810";
$VERSION = "5.815";

# Legacy: because "use "HTTP::Cookies" used be the ONLY way
# to load the class HTTP::Cookies::Netscape.
Expand Down
2 changes: 1 addition & 1 deletion lib/HTTP/Daemon.pm
Expand Up @@ -3,7 +3,7 @@ package HTTP::Daemon;
use strict;
use vars qw($VERSION @ISA $PROTO $DEBUG);

$VERSION = "5.810";
$VERSION = "5.815";

use IO::Socket qw(AF_INET INADDR_ANY inet_ntoa);
@ISA=qw(IO::Socket::INET);
Expand Down
2 changes: 1 addition & 1 deletion lib/HTTP/Headers.pm
Expand Up @@ -4,7 +4,7 @@ use strict;
use Carp ();

use vars qw($VERSION $TRANSLATE_UNDERSCORE);
$VERSION = "5.810";
$VERSION = "5.815";

# The $TRANSLATE_UNDERSCORE variable controls whether '_' can be used
# as a replacement for '-' in header field names.
Expand Down
2 changes: 1 addition & 1 deletion lib/HTTP/Message.pm
Expand Up @@ -2,7 +2,7 @@ package HTTP::Message;

use strict;
use vars qw($VERSION $AUTOLOAD);
$VERSION = "5.814";
$VERSION = "5.815";

require HTTP::Headers;
require Carp;
Expand Down
2 changes: 1 addition & 1 deletion lib/HTTP/Request.pm
Expand Up @@ -2,7 +2,7 @@ package HTTP::Request;

require HTTP::Message;
@ISA = qw(HTTP::Message);
$VERSION = "5.814";
$VERSION = "5.815";

use strict;

Expand Down
2 changes: 1 addition & 1 deletion lib/HTTP/Request/Common.pm
Expand Up @@ -13,7 +13,7 @@ require Exporter;
require HTTP::Request;
use Carp();

$VERSION = "5.814";
$VERSION = "5.815";

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

Expand Down
2 changes: 1 addition & 1 deletion lib/LWP.pm
@@ -1,6 +1,6 @@
package LWP;

$VERSION = "5.814";
$VERSION = "5.815";
sub Version { $VERSION; }

require 5.005;
Expand Down
2 changes: 1 addition & 1 deletion lib/LWP/Protocol.pm
Expand Up @@ -2,7 +2,7 @@ package LWP::Protocol;

require LWP::MemberMixin;
@ISA = qw(LWP::MemberMixin);
$VERSION = "5.810";
$VERSION = "5.815";

use strict;
use Carp ();
Expand Down
2 changes: 1 addition & 1 deletion lib/LWP/UserAgent.pm
Expand Up @@ -5,7 +5,7 @@ use vars qw(@ISA $VERSION);

require LWP::MemberMixin;
@ISA = qw(LWP::MemberMixin);
$VERSION = "5.814";
$VERSION = "5.815";

use HTTP::Request ();
use HTTP::Response ();
Expand Down
2 changes: 1 addition & 1 deletion lib/Net/HTTP/Methods.pm
Expand Up @@ -5,7 +5,7 @@ require 5.005; # 4-arg substr
use strict;
use vars qw($VERSION);

$VERSION = "5.812";
$VERSION = "5.815";

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

Expand Down

0 comments on commit b099484

Please sign in to comment.