Skip to content

Commit e8a2e38

Browse files
committed
v2.15
[FIXED] - There was a test suite failure on some Windows machines introduced in 2.14 that is now fixed. (GH#350) (Julien Fiegehenn) [ENHANCEMENTS] - form_with and all_forms_with() now support the "action" attribute to find forms (GH#349) (Julien Fiegehenn)
1 parent 30e9477 commit e8a2e38

File tree

3 files changed

+7
-12
lines changed

3 files changed

+7
-12
lines changed

Changes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Revision history for WWW::Mechanize
22

3-
{{$NEXT}}
3+
2.15 2022-08-21 07:47:35Z
44
[FIXED]
55
- There was a test suite failure on some Windows machines introduced in
66
2.14 that is now fixed. (GH#350) (Julien Fiegehenn)

META.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -119,15 +119,15 @@
119119
"provides" : {
120120
"WWW::Mechanize" : {
121121
"file" : "lib/WWW/Mechanize.pm",
122-
"version" : "2.14"
122+
"version" : "2.15"
123123
},
124124
"WWW::Mechanize::Image" : {
125125
"file" : "lib/WWW/Mechanize/Image.pm",
126-
"version" : "2.14"
126+
"version" : "2.15"
127127
},
128128
"WWW::Mechanize::Link" : {
129129
"file" : "lib/WWW/Mechanize/Link.pm",
130-
"version" : "2.14"
130+
"version" : "2.15"
131131
}
132132
},
133133
"release_status" : "stable",
@@ -142,7 +142,7 @@
142142
"web" : "https://github.com/libwww-perl/WWW-Mechanize"
143143
}
144144
},
145-
"version" : "2.14",
145+
"version" : "2.15",
146146
"x_Dist_Zilla" : {
147147
"perl" : {
148148
"version" : "5.028000"
@@ -656,7 +656,7 @@
656656
"branch" : null,
657657
"changelog" : "Changes",
658658
"signed" : 0,
659-
"tag" : "v2.14",
659+
"tag" : "v2.15",
660660
"tag_format" : "v%V",
661661
"tag_message" : "v%V"
662662
},

README.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ WWW::Mechanize - Handy web browsing in a Perl object
44

55
# VERSION
66

7-
version 2.14
7+
version 2.15
88

99
# SYNOPSIS
1010

@@ -941,8 +941,6 @@ Note that this functionality requires libwww-perl 5.69 or higher.
941941

942942
Searches for forms with arbitrary attribute/value pairs within the <form>
943943
tag.
944-
(Currently does not work for attribute `action` due to implementation details
945-
of [HTML::Form](https://metacpan.org/pod/HTML%3A%3AForm).)
946944
When given more than one pair, all criteria must match.
947945
Using `undef` as value means that the attribute in question must not be present.
948946

@@ -952,9 +950,6 @@ All matching forms (perhaps none) are returned as a list of [HTML::Form](https:/
952950

953951
Searches for forms with arbitrary attribute/value pairs within the <form>
954952
tag.
955-
(Currently does not work for attribute `action` due to implementation details
956-
of [HTML::Form](https://metacpan.org/pod/HTML%3A%3AForm). Use `[form_action()](#mech-form_action-action)`
957-
instead.)
958953
When given more than one pair, all criteria must match.
959954
Using `undef` as value means that the attribute in question must not be present.
960955

0 commit comments

Comments
 (0)