Skip to content

Commit

Permalink
Update Changes, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Max Maischein committed Apr 30, 2020
1 parent 7aa5b73 commit 909a3ad
Show file tree
Hide file tree
Showing 23 changed files with 34 additions and 28 deletions.
6 changes: 6 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@
* Tested against Chromium Chromium/78.0.3904.108
* Tested against Chromium Chromium/80.0.3987.106

0.49 2020-04-30
* Fix sending events after changing an element value
This makes
$mech->field( foo => 'bar', undef, undef, ['change'] );
actually send the onchange event

0.48 2020-04-19
* API CHANGES:
* ->field() now takes the form field index as third parameter, like
Expand Down
2 changes: 1 addition & 1 deletion META.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
"web" : "https://github.com/Corion/WWW-Mechanize-Chrome"
}
},
"version" : "0.48",
"version" : "0.49",
"x_serialization_backend" : "JSON::PP version 4.04",
"x_static_install" : 1
}
2 changes: 1 addition & 1 deletion META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,6 @@ requires:
perl: '5.010'
resources:
repository: git://github.com/Corion/WWW-Mechanize-Chrome.git
version: '0.48'
version: '0.49'
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
x_static_install: 1
4 changes: 2 additions & 2 deletions lib/Chrome/DevToolsProtocol.pm
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use Chrome::DevToolsProtocol::Transport;
use Scalar::Util 'weaken', 'isweak';
use Try::Tiny;

our $VERSION = '0.48';
our $VERSION = '0.49';
our @CARP_NOT;

=head1 NAME
Expand Down Expand Up @@ -861,7 +861,7 @@ use Filter::signatures;
no warnings 'experimental::signatures';
use feature 'signatures';

our $VERSION = '0.48';
our $VERSION = '0.49';

has 'protocol' => (
is => 'ro',
Expand Down
2 changes: 1 addition & 1 deletion lib/Chrome/DevToolsProtocol/Target.pm
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use Scalar::Util 'weaken', 'isweak';
use Try::Tiny;
use PerlX::Maybe;

our $VERSION = '0.48';
our $VERSION = '0.49';
our @CARP_NOT;

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/Chrome/DevToolsProtocol/Transport.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use Filter::signatures;
no warnings 'experimental::signatures';
use feature 'signatures';

our $VERSION = '0.48';
our $VERSION = '0.49';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/Chrome/DevToolsProtocol/Transport/AnyEvent.pm
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use AnyEvent;
use AnyEvent::WebSocket::Client;
use AnyEvent::Future qw(as_future_cb);

our $VERSION = '0.48';
our $VERSION = '0.49';
our @CARP_NOT = ();

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/Chrome/DevToolsProtocol/Transport/Mojo.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use Scalar::Util 'weaken';
use Mojo::UserAgent;
use Future::Mojo;

our $VERSION = '0.48';
our $VERSION = '0.49';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/Chrome/DevToolsProtocol/Transport/NetAsync.pm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use IO::Async::Loop;
use Net::Async::WebSocket::Client;
Net::Async::WebSocket::Client->VERSION(0.12); # fixes some errors with masked frames

our $VERSION = '0.48';
our $VERSION = '0.49';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/Chrome/DevToolsProtocol/Transport/Pipe.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use Filter::signatures;
no warnings 'experimental::signatures';
use feature 'signatures';

our $VERSION = '0.48';
our $VERSION = '0.49';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/Chrome/DevToolsProtocol/Transport/Pipe/AnyEvent.pm
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use Carp qw(croak);
use AnyEvent;
use AnyEvent::Future qw(as_future_cb);

our $VERSION = '0.48';
our $VERSION = '0.49';
our @CARP_NOT = ();

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/Chrome/DevToolsProtocol/Transport/Pipe/Mojo.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use Scalar::Util 'weaken';
use Mojo::IOLoop::Stream;
use Future::Mojo;

our $VERSION = '0.48';
our $VERSION = '0.49';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/Chrome/DevToolsProtocol/Transport/Pipe/NetAsync.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use Scalar::Util 'weaken';
use IO::Async::Loop;
use IO::Async::Stream;

our $VERSION = '0.48';
our $VERSION = '0.49';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/Chrome/DevToolsProtocol/Transport/Win32PipeOpener.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package Win32::InheritHandles;
use strict;
#use Win32::API;

our $VERSION = '0.48';
our $VERSION = '0.49';

# This only works with Windows version 8+ (Vista onwards)

Expand Down
2 changes: 1 addition & 1 deletion lib/HTTP/Cookies/ChromeDevTools.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package HTTP::Cookies::ChromeDevTools;
use strict;
use Carp qw[croak];

our $VERSION = '0.48';
our $VERSION = '0.49';
our @CARP_NOT;

use Moo 2;
Expand Down
2 changes: 1 addition & 1 deletion lib/StructDumbDebug.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ use IO::Async::Loop;
use Net::Async::WebSocket::Client;
Net::Async::WebSocket::Client->VERSION(0.12); # fixes some errors with masked frames

our $VERSION = '0.48';
our $VERSION = '0.49';

1;
2 changes: 1 addition & 1 deletion lib/WWW/Mechanize/Chrome.pm
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use HTML::Selector::XPath 'selector_to_xpath';
use HTTP::Cookies::ChromeDevTools;
use POSIX ':sys_wait_h';

our $VERSION = '0.48';
our $VERSION = '0.49';
our @CARP_NOT;

=encoding utf-8
Expand Down
2 changes: 1 addition & 1 deletion lib/WWW/Mechanize/Chrome/Cookbook.pm
Original file line number Diff line number Diff line change
Expand Up @@ -129,5 +129,5 @@ This module is released under the same terms as Perl itself.
=cut

package WWW::Mechanize::Chrome::Cookbook;
our $VERSION = '0.48';
our $VERSION = '0.49';
1;
2 changes: 1 addition & 1 deletion lib/WWW/Mechanize/Chrome/DSL.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use WWW::Mechanize::Chrome;
use Object::Import;
use Carp qw(croak);

our $VERSION = '0.48';
our $VERSION = '0.49';

our @CARP_NOT = (qw[
WWW::Mechanize::Chrome
Expand Down
12 changes: 6 additions & 6 deletions lib/WWW/Mechanize/Chrome/Examples.pm
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ package WWW::Mechanize::Chrome::Examples;
#

use strict;
our $VERSION = '0.48';
our $VERSION = '0.49';

1;

Expand Down Expand Up @@ -94,7 +94,7 @@ The following is a list of the 5 example programs that are included in the WWW::
in the script's directory.
Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Chrome-0.48/examples/url-to-image.pl>
Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Chrome-0.49/examples/url-to-image.pl>
=head2 Example: html-to-pdf.pl
Expand Down Expand Up @@ -133,7 +133,7 @@ Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Chr
saves it as a PDF file in the current directory.
Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Chrome-0.48/examples/html-to-pdf.pl>
Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Chrome-0.49/examples/html-to-pdf.pl>
=head2 Example: dump-links.pl
Expand Down Expand Up @@ -170,7 +170,7 @@ Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Chr
=cut
Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Chrome-0.48/examples/dump-links.pl>
Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Chrome-0.49/examples/dump-links.pl>
=head2 Example: sendkeys.pl
Expand Down Expand Up @@ -204,7 +204,7 @@ Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Chr
=cut
Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Chrome-0.48/examples/sendkeys.pl>
Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Chrome-0.49/examples/sendkeys.pl>
=head2 Example: javascript.pl
Expand Down Expand Up @@ -238,7 +238,7 @@ Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Chr
=cut
Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Chrome-0.48/examples/javascript.pl>
Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Chrome-0.49/examples/javascript.pl>
=head1 AUTHOR
Expand Down
2 changes: 1 addition & 1 deletion lib/WWW/Mechanize/Chrome/Node.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ WWW::Mechanize::Chrome::Node - represent a Chrome HTML node in Perl
=cut

our $VERSION = '0.48';
our $VERSION = '0.49';

=head1 MEMBERS
Expand Down
2 changes: 1 addition & 1 deletion lib/WWW/Mechanize/Chrome/Troubleshooting.pm
Original file line number Diff line number Diff line change
Expand Up @@ -94,5 +94,5 @@ This module is released under the same terms as Perl itself.
=cut

package WWW::Mechanize::Chrome::Troubleshooting;
our $VERSION = '0.48';
our $VERSION = '0.49';
1;
2 changes: 1 addition & 1 deletion lib/WWW/Mechanize/Chrome/URLBlacklist.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use Filter::signatures;
use feature 'signatures';
no warnings 'experimental::signatures';

our $VERSION = '0.48';
our $VERSION = '0.49';

=head1 NAME
Expand Down

0 comments on commit 909a3ad

Please sign in to comment.