File tree 5 files changed +33
-4
lines changed
5 files changed +33
-4
lines changed Original file line number Diff line number Diff line change
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
+
1
30
_______________________________________________________________________________
2
31
2009-06-25 Release 5.828
3
32
Original file line number Diff line number Diff line change 5
5
use Carp ();
6
6
7
7
use vars qw( $VERSION $Encode_available) ;
8
- $VERSION = " 5.827 " ;
8
+ $VERSION = " 5.829 " ;
9
9
10
10
eval { require Encode };
11
11
$Encode_available = !$@ ;
Original file line number Diff line number Diff line change 1
1
package LWP ;
2
2
3
- $VERSION = " 5.828 " ;
3
+ $VERSION = " 5.829 " ;
4
4
sub Version { $VERSION ; }
5
5
6
6
require 5.005;
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package LWP::Protocol;
2
2
3
3
require LWP::MemberMixin;
4
4
@ISA = qw( LWP::MemberMixin) ;
5
- $VERSION = " 5.826 " ;
5
+ $VERSION = " 5.829 " ;
6
6
7
7
use strict;
8
8
use Carp ();
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 = " 5.827 " ;
8
+ $VERSION = " 5.829 " ;
9
9
10
10
use HTTP::Request ();
11
11
use HTTP::Response ();
You can’t perform that action at this time.
0 commit comments