Skip to content

Commit 804b4b7

Browse files
committed
Release 5.829
1 parent 1d72417 commit 804b4b7

File tree

5 files changed

+33
-4
lines changed

5 files changed

+33
-4
lines changed

Changes

+29
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
_______________________________________________________________________________
2+
2009-07-07 Release 5.829
3+
4+
This release removes callback handlers that were left over on the returned
5+
HTTP::Responses. This was problematic because it created reference loops
6+
preventing the Perl garbage collector from releasing their memory. Another
7+
problem was that Storable by default would not serialize these objects any
8+
more.
9+
10+
This release also adds support for locating HTML::Form inputs by id or class
11+
attribute; for instance $form->value("#foo", 42) will set the value on the
12+
input with the ID of "foo".
13+
14+
15+
Gisle Aas (5):
16+
Make the example code 'use strict' clean by adding a my
17+
Avoid cycle in response
18+
Clean up handlers has from response after data processing is done
19+
Support finding inputs by id or class in HTML::Form
20+
Test HTML::Form selectors
21+
22+
Mark Stosberg (1):
23+
Tidy and document the internals of mirror() better [RT#23450]
24+
25+
phrstbrn (1):
26+
Avoid warnings from HTML::Form [RT#42654]
27+
28+
29+
130
_______________________________________________________________________________
231
2009-06-25 Release 5.828
332

lib/HTML/Form.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use URI;
55
use Carp ();
66

77
use vars qw($VERSION $Encode_available);
8-
$VERSION = "5.827";
8+
$VERSION = "5.829";
99

1010
eval { require Encode };
1111
$Encode_available = !$@;

lib/LWP.pm

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

3-
$VERSION = "5.828";
3+
$VERSION = "5.829";
44
sub Version { $VERSION; }
55

66
require 5.005;

lib/LWP/Protocol.pm

+1-1
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.826";
5+
$VERSION = "5.829";
66

77
use strict;
88
use Carp ();

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.827";
8+
$VERSION = "5.829";
99

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

0 commit comments

Comments
 (0)