From 73e8a55ffd678cafcf00af33dd2f7802ef3c9b9d Mon Sep 17 00:00:00 2001 From: David Dick Date: Sat, 5 Aug 2023 15:13:34 +1000 Subject: [PATCH] Updating to 1.43 --- Changes | 3 +++ META.json | 2 +- META.yml | 2 +- README | 2 +- README.md | 2 +- ca-bundle-for-firefox | 4 ++-- check-firefox-certificate-authorities | 4 ++-- firefox-passwords | 4 ++-- lib/Firefox/Marionette.pm | 4 ++-- lib/Firefox/Marionette/Bookmark.pm | 4 ++-- lib/Firefox/Marionette/Buttons.pm | 4 ++-- lib/Firefox/Marionette/Cache.pm | 4 ++-- lib/Firefox/Marionette/Capabilities.pm | 4 ++-- lib/Firefox/Marionette/Certificate.pm | 4 ++-- lib/Firefox/Marionette/Cookie.pm | 4 ++-- lib/Firefox/Marionette/Display.pm | 4 ++-- lib/Firefox/Marionette/Element.pm | 4 ++-- lib/Firefox/Marionette/Element/Rect.pm | 4 ++-- lib/Firefox/Marionette/Exception.pm | 4 ++-- lib/Firefox/Marionette/Exception/InsecureCertificate.pm | 4 ++-- lib/Firefox/Marionette/Exception/NoSuchAlert.pm | 4 ++-- lib/Firefox/Marionette/Exception/NotFound.pm | 4 ++-- lib/Firefox/Marionette/Exception/Response.pm | 4 ++-- lib/Firefox/Marionette/Exception/StaleElement.pm | 4 ++-- lib/Firefox/Marionette/Extension/HarExportTrigger.pm | 4 ++-- lib/Firefox/Marionette/Image.pm | 4 ++-- lib/Firefox/Marionette/Keys.pm | 4 ++-- lib/Firefox/Marionette/Link.pm | 4 ++-- lib/Firefox/Marionette/Login.pm | 4 ++-- lib/Firefox/Marionette/Profile.pm | 4 ++-- lib/Firefox/Marionette/Proxy.pm | 4 ++-- lib/Firefox/Marionette/Response.pm | 4 ++-- lib/Firefox/Marionette/ShadowRoot.pm | 4 ++-- lib/Firefox/Marionette/Timeouts.pm | 4 ++-- lib/Firefox/Marionette/UpdateStatus.pm | 4 ++-- lib/Firefox/Marionette/Window/Rect.pm | 4 ++-- lib/Waterfox/Marionette.pm | 4 ++-- lib/Waterfox/Marionette/Profile.pm | 4 ++-- mozilla-head-check | 2 +- ssh-auth-cmd-marionette | 4 ++-- 40 files changed, 76 insertions(+), 73 deletions(-) diff --git a/Changes b/Changes index e0832fc..dc92faa 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Revision history for Firefox-Marionette +1.43 Sat Aug 05 15:13 2023 + Documentation fixes + 1.42 Sat Aug 05 08:34 2023 Adding the proxy parameter to the new method Fixes to ssh handling diff --git a/META.json b/META.json index 4d2187a..9ad9e02 100644 --- a/META.json +++ b/META.json @@ -67,6 +67,6 @@ } }, "release_status" : "unstable", - "version" : "1.42", + "version" : "1.43", "x_serialization_backend" : "JSON::PP version 4.04" } diff --git a/META.yml b/META.yml index d7312bf..bc3f18e 100644 --- a/META.yml +++ b/META.yml @@ -49,5 +49,5 @@ requires: base: '0' overload: '0' perl: '5.006' -version: 1.42 +version: 1.43 x_serialization_backend: 'CPAN::Meta::YAML version 0.018' diff --git a/README b/README index 65078c6..ff84ee8 100644 --- a/README +++ b/README @@ -5,7 +5,7 @@ NAME VERSION - Version 1.42 + Version 1.43 SYNOPSIS diff --git a/README.md b/README.md index 17daad3..7548c54 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Firefox::Marionette - Automate the Firefox browser with the Marionette protocol # VERSION -Version 1.42 +Version 1.43 # SYNOPSIS diff --git a/ca-bundle-for-firefox b/ca-bundle-for-firefox index 5470bbf..3a559ab 100755 --- a/ca-bundle-for-firefox +++ b/ca-bundle-for-firefox @@ -8,7 +8,7 @@ use Firefox::Marionette(); use FileHandle(); use Encode(); -our $VERSION = '1.42'; +our $VERSION = '1.43'; my %options; @@ -115,7 +115,7 @@ ca-bundle-for-firefox - generate the ca-bundle.crt for the current firefox insta =head1 VERSION -Version 1.42 +Version 1.43 =head1 USAGE diff --git a/check-firefox-certificate-authorities b/check-firefox-certificate-authorities index 45db274..000bda4 100755 --- a/check-firefox-certificate-authorities +++ b/check-firefox-certificate-authorities @@ -7,7 +7,7 @@ use English qw( -no_match_vars ); use Encode(); use Firefox::Marionette(); -our $VERSION = '1.42'; +our $VERSION = '1.43'; sub _NUMBER_OF_SPACES_FOR_CODE_QUOTING_IN_MARKDOWN { return 4 } @@ -101,7 +101,7 @@ check-firefox-certificate-authorities - check the CA certificates in firefox for =head1 VERSION -Version 1.42 +Version 1.43 =head1 USAGE diff --git a/firefox-passwords b/firefox-passwords index 7f689e8..8de8e8d 100755 --- a/firefox-passwords +++ b/firefox-passwords @@ -14,7 +14,7 @@ use XML::Parser(); use Term::ReadKey(); use charnames ':full'; -our $VERSION = '1.42'; +our $VERSION = '1.43'; sub _NUMBER_OF_BYTES_FOR_ZIP_MAGIC_NUMBER { return 4 } @@ -313,7 +313,7 @@ firefox-passwords - import and export passwords from firefox =head1 VERSION -Version 1.42 +Version 1.43 =head1 USAGE diff --git a/lib/Firefox/Marionette.pm b/lib/Firefox/Marionette.pm index dd0d140..5666850 100644 --- a/lib/Firefox/Marionette.pm +++ b/lib/Firefox/Marionette.pm @@ -66,7 +66,7 @@ our @EXPORT_OK = qw(BY_XPATH BY_ID BY_NAME BY_TAG BY_CLASS BY_SELECTOR BY_LINK BY_PARTIAL); our %EXPORT_TAGS = ( all => \@EXPORT_OK ); -our $VERSION = '1.42'; +our $VERSION = '1.43'; sub _ANYPROCESS { return -1 } sub _COMMAND { return 0 } @@ -11121,7 +11121,7 @@ Firefox::Marionette - Automate the Firefox browser with the Marionette protocol =head1 VERSION -Version 1.42 +Version 1.43 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Bookmark.pm b/lib/Firefox/Marionette/Bookmark.pm index 8683aa4..0377084 100644 --- a/lib/Firefox/Marionette/Bookmark.pm +++ b/lib/Firefox/Marionette/Bookmark.pm @@ -20,7 +20,7 @@ our @EXPORT_OK = qw( our %EXPORT_TAGS = ( 'all' => \@EXPORT_OK, ); -our $VERSION = '1.42'; +our $VERSION = '1.43'; # guids from toolkit/components/places/Bookmarks.sys.mjs @@ -204,7 +204,7 @@ Firefox::Marionette::Bookmark - Represents a Firefox bookmark retrieved using th =head1 VERSION -Version 1.42 +Version 1.43 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Buttons.pm b/lib/Firefox/Marionette/Buttons.pm index 1c4fe91..dc478ae 100644 --- a/lib/Firefox/Marionette/Buttons.pm +++ b/lib/Firefox/Marionette/Buttons.pm @@ -12,7 +12,7 @@ our @EXPORT_OK = qw( our %EXPORT_TAGS = ( 'all' => \@EXPORT_OK, ); -our $VERSION = '1.42'; +our $VERSION = '1.43'; sub LEFT_BUTTON { return 0 } sub MIDDLE_BUTTON { return 1 } @@ -26,7 +26,7 @@ Firefox::Marionette::Buttons - Human readable mouse buttons for the Marionette p =head1 VERSION -Version 1.42 +Version 1.43 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Cache.pm b/lib/Firefox/Marionette/Cache.pm index f67b0b4..7adfa00 100644 --- a/lib/Firefox/Marionette/Cache.pm +++ b/lib/Firefox/Marionette/Cache.pm @@ -38,7 +38,7 @@ our @EXPORT_OK = qw( our %EXPORT_TAGS = ( 'all' => \@EXPORT_OK, ); -our $VERSION = '1.42'; +our $VERSION = '1.43'; sub CLEAR_COOKIES { return 1 } sub CLEAR_NETWORK_CACHE { return 2 } @@ -93,7 +93,7 @@ Firefox::Marionette::Cache - Constants to describe actions on the cache =head1 VERSION -Version 1.42 +Version 1.43 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Capabilities.pm b/lib/Firefox/Marionette/Capabilities.pm index bad3f8e..b1c8931 100755 --- a/lib/Firefox/Marionette/Capabilities.pm +++ b/lib/Firefox/Marionette/Capabilities.pm @@ -3,7 +3,7 @@ package Firefox::Marionette::Capabilities; use strict; use warnings; -our $VERSION = '1.42'; +our $VERSION = '1.43'; sub new { my ( $class, %parameters ) = @_; @@ -126,7 +126,7 @@ Firefox::Marionette::Capabilities - Represents Firefox Capabilities retrieved us =head1 VERSION -Version 1.42 +Version 1.43 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Certificate.pm b/lib/Firefox/Marionette/Certificate.pm index 4be460d..15804d3 100644 --- a/lib/Firefox/Marionette/Certificate.pm +++ b/lib/Firefox/Marionette/Certificate.pm @@ -3,7 +3,7 @@ package Firefox::Marionette::Certificate; use strict; use warnings; -our $VERSION = '1.42'; +our $VERSION = '1.43'; sub _NUMBER_OF_MICROSECOND_DIGITS { return -6 } @@ -177,7 +177,7 @@ Firefox::Marionette::Certificate - Represents a x509 Certificate from Firefox =head1 VERSION -Version 1.42 +Version 1.43 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Cookie.pm b/lib/Firefox/Marionette/Cookie.pm index 73fde61..e8047b3 100755 --- a/lib/Firefox/Marionette/Cookie.pm +++ b/lib/Firefox/Marionette/Cookie.pm @@ -3,7 +3,7 @@ package Firefox::Marionette::Cookie; use strict; use warnings; -our $VERSION = '1.42'; +our $VERSION = '1.43'; sub new { my ( $class, %parameters ) = @_; @@ -73,7 +73,7 @@ Firefox::Marionette::Cookie - Represents a Firefox cookie retrieved using the Ma =head1 VERSION -Version 1.42 +Version 1.43 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Display.pm b/lib/Firefox/Marionette/Display.pm index 34ba2a8..b1e757b 100644 --- a/lib/Firefox/Marionette/Display.pm +++ b/lib/Firefox/Marionette/Display.pm @@ -3,7 +3,7 @@ package Firefox::Marionette::Display; use strict; use warnings; -our $VERSION = '1.42'; +our $VERSION = '1.43'; sub new { my ( $class, %parameters ) = @_; @@ -60,7 +60,7 @@ Firefox::Marionette::Display - Represents a display from the displays method =head1 VERSION -Version 1.42 +Version 1.43 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Element.pm b/lib/Firefox/Marionette/Element.pm index 6d48ebe..75e11f8 100755 --- a/lib/Firefox/Marionette/Element.pm +++ b/lib/Firefox/Marionette/Element.pm @@ -3,7 +3,7 @@ package Firefox::Marionette::Element; use strict; use warnings; -our $VERSION = '1.42'; +our $VERSION = '1.43'; sub IDENTIFIER { return 'element-6066-11e4-a52e-4f735466cecf' } @@ -360,7 +360,7 @@ Firefox::Marionette::Element - Represents a Firefox element retrieved using the =head1 VERSION -Version 1.42 +Version 1.43 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Element/Rect.pm b/lib/Firefox/Marionette/Element/Rect.pm index a29d6f7..d958dab 100755 --- a/lib/Firefox/Marionette/Element/Rect.pm +++ b/lib/Firefox/Marionette/Element/Rect.pm @@ -3,7 +3,7 @@ package Firefox::Marionette::Element::Rect; use strict; use warnings; -our $VERSION = '1.42'; +our $VERSION = '1.43'; sub new { my ( $class, %parameters ) = @_; @@ -40,7 +40,7 @@ Firefox::Marionette::Element::Rect - Represents the box around an Element =head1 VERSION -Version 1.42 +Version 1.43 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Exception.pm b/lib/Firefox/Marionette/Exception.pm index 729a906..e6325f0 100755 --- a/lib/Firefox/Marionette/Exception.pm +++ b/lib/Firefox/Marionette/Exception.pm @@ -5,7 +5,7 @@ use warnings; use Carp(); use overload '""' => 'string'; -our $VERSION = '1.42'; +our $VERSION = '1.43'; sub throw { my ( $class, $string ) = @_; @@ -39,7 +39,7 @@ Firefox::Marionette::Exception - Represents an base exception class for exceptio =head1 VERSION -Version 1.42 +Version 1.43 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Exception/InsecureCertificate.pm b/lib/Firefox/Marionette/Exception/InsecureCertificate.pm index a834c5a..52ead76 100644 --- a/lib/Firefox/Marionette/Exception/InsecureCertificate.pm +++ b/lib/Firefox/Marionette/Exception/InsecureCertificate.pm @@ -4,7 +4,7 @@ use strict; use warnings; use base qw(Firefox::Marionette::Exception::Response); -our $VERSION = '1.42'; +our $VERSION = '1.43'; sub throw { my ( $class, $response, $parameters ) = @_; @@ -25,7 +25,7 @@ Firefox::Marionette::Exception::InsecureCertificate - Represents a 'insecure cer =head1 VERSION -Version 1.42 +Version 1.43 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Exception/NoSuchAlert.pm b/lib/Firefox/Marionette/Exception/NoSuchAlert.pm index ec13546..81590c0 100755 --- a/lib/Firefox/Marionette/Exception/NoSuchAlert.pm +++ b/lib/Firefox/Marionette/Exception/NoSuchAlert.pm @@ -4,7 +4,7 @@ use strict; use warnings; use base qw(Firefox::Marionette::Exception::Response); -our $VERSION = '1.42'; +our $VERSION = '1.43'; sub throw { my ( $class, $response, $parameters ) = @_; @@ -25,7 +25,7 @@ Firefox::Marionette::Exception::NoSuchAlert - Represents a 'no such alert' excep =head1 VERSION -Version 1.42 +Version 1.43 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Exception/NotFound.pm b/lib/Firefox/Marionette/Exception/NotFound.pm index 403c0bc..90528d4 100755 --- a/lib/Firefox/Marionette/Exception/NotFound.pm +++ b/lib/Firefox/Marionette/Exception/NotFound.pm @@ -4,7 +4,7 @@ use strict; use warnings; use base qw(Firefox::Marionette::Exception::Response); -our $VERSION = '1.42'; +our $VERSION = '1.43'; sub throw { my ( $class, $response, $parameters ) = @_; @@ -29,7 +29,7 @@ Firefox::Marionette::Exception::NotFound - Represents a 'no such element' except =head1 VERSION -Version 1.42 +Version 1.43 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Exception/Response.pm b/lib/Firefox/Marionette/Exception/Response.pm index f4e89d0..d200ba4 100755 --- a/lib/Firefox/Marionette/Exception/Response.pm +++ b/lib/Firefox/Marionette/Exception/Response.pm @@ -4,7 +4,7 @@ use strict; use warnings; use base qw(Firefox::Marionette::Exception); -our $VERSION = '1.42'; +our $VERSION = '1.43'; sub throw { my ( $class, $response ) = @_; @@ -45,7 +45,7 @@ Firefox::Marionette::Exception::Response - Represents an exception thrown by Fir =head1 VERSION -Version 1.42 +Version 1.43 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Exception/StaleElement.pm b/lib/Firefox/Marionette/Exception/StaleElement.pm index 6307e7a..abed214 100755 --- a/lib/Firefox/Marionette/Exception/StaleElement.pm +++ b/lib/Firefox/Marionette/Exception/StaleElement.pm @@ -4,7 +4,7 @@ use strict; use warnings; use base qw(Firefox::Marionette::Exception::Response); -our $VERSION = '1.42'; +our $VERSION = '1.43'; sub throw { my ( $class, $response, $parameters ) = @_; @@ -35,7 +35,7 @@ Firefox::Marionette::Exception::StaleElement - Represents a 'stale element refer =head1 VERSION -Version 1.42 +Version 1.43 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Extension/HarExportTrigger.pm b/lib/Firefox/Marionette/Extension/HarExportTrigger.pm index ad05832..201c764 100644 --- a/lib/Firefox/Marionette/Extension/HarExportTrigger.pm +++ b/lib/Firefox/Marionette/Extension/HarExportTrigger.pm @@ -3,7 +3,7 @@ package Firefox::Marionette::Extension::HarExportTrigger; use strict; use warnings; -our $VERSION = '1.42'; +our $VERSION = '1.43'; sub as_string { return <<'_BASE64_'; @@ -573,7 +573,7 @@ Firefox::Marionette::Extension::HarExportTrigger - Contains the HAR Export Trigg =head1 VERSION -Version 1.42 +Version 1.43 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Image.pm b/lib/Firefox/Marionette/Image.pm index 1a63b0e..4afa1fa 100644 --- a/lib/Firefox/Marionette/Image.pm +++ b/lib/Firefox/Marionette/Image.pm @@ -6,7 +6,7 @@ use URI::URL(); use base qw(Firefox::Marionette::Element); -our $VERSION = '1.42'; +our $VERSION = '1.43'; sub new { my ( $class, $element ) = @_; @@ -89,7 +89,7 @@ Firefox::Marionette::Image - Represents an image from the images method =head1 VERSION -Version 1.42 +Version 1.43 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Keys.pm b/lib/Firefox/Marionette/Keys.pm index 75ad369..784dd90 100644 --- a/lib/Firefox/Marionette/Keys.pm +++ b/lib/Firefox/Marionette/Keys.pm @@ -53,7 +53,7 @@ our @EXPORT_OK = qw( our %EXPORT_TAGS = ( 'all' => \@EXPORT_OK, ); -our $VERSION = '1.42'; +our $VERSION = '1.43'; sub CANCEL { return chr hex '0xE001' } sub HELP { return chr hex '0xE002' } @@ -108,7 +108,7 @@ Firefox::Marionette::Keys - Human readable special keys for the Marionette proto =head1 VERSION -Version 1.42 +Version 1.43 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Link.pm b/lib/Firefox/Marionette/Link.pm index f6907fe..4d23f8d 100644 --- a/lib/Firefox/Marionette/Link.pm +++ b/lib/Firefox/Marionette/Link.pm @@ -6,7 +6,7 @@ use URI::URL(); use base qw(Firefox::Marionette::Element); -our $VERSION = '1.42'; +our $VERSION = '1.43'; sub new { my ( $class, $element ) = @_; @@ -78,7 +78,7 @@ Firefox::Marionette::Link - Represents a link from the links method =head1 VERSION -Version 1.42 +Version 1.43 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Login.pm b/lib/Firefox/Marionette/Login.pm index 7437127..f66eac6 100644 --- a/lib/Firefox/Marionette/Login.pm +++ b/lib/Firefox/Marionette/Login.pm @@ -3,7 +3,7 @@ package Firefox::Marionette::Login; use strict; use warnings; -our $VERSION = '1.42'; +our $VERSION = '1.43'; sub _NUMBER_OF_MILLISECONDS_IN_A_SECOND { return 1000 } @@ -131,7 +131,7 @@ Firefox::Marionette::Login - Represents a login from the Firefox Password Manage =head1 VERSION -Version 1.42 +Version 1.43 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Profile.pm b/lib/Firefox/Marionette/Profile.pm index 3cb3fd9..a08befd 100755 --- a/lib/Firefox/Marionette/Profile.pm +++ b/lib/Firefox/Marionette/Profile.pm @@ -13,7 +13,7 @@ BEGIN { require Win32; } } -our $VERSION = '1.42'; +our $VERSION = '1.43'; sub ANY_PORT { return 0 } sub _GETPWUID_DIR_INDEX { return 7 } @@ -521,7 +521,7 @@ Firefox::Marionette::Profile - Represents a prefs.js Firefox Profile =head1 VERSION -Version 1.42 +Version 1.43 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Proxy.pm b/lib/Firefox/Marionette/Proxy.pm index bbaec74..560e55a 100755 --- a/lib/Firefox/Marionette/Proxy.pm +++ b/lib/Firefox/Marionette/Proxy.pm @@ -3,7 +3,7 @@ package Firefox::Marionette::Proxy; use strict; use warnings; -our $VERSION = '1.42'; +our $VERSION = '1.43'; sub new { my ( $class, %parameters ) = @_; @@ -86,7 +86,7 @@ Firefox::Marionette::Proxy - Represents a Proxy used by Firefox Capabilities usi =head1 VERSION -Version 1.42 +Version 1.43 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Response.pm b/lib/Firefox/Marionette/Response.pm index b060f82..c99057c 100755 --- a/lib/Firefox/Marionette/Response.pm +++ b/lib/Firefox/Marionette/Response.pm @@ -8,7 +8,7 @@ use Firefox::Marionette::Exception::StaleElement(); use Firefox::Marionette::Exception::InsecureCertificate(); use Firefox::Marionette::Exception::Response(); -our $VERSION = '1.42'; +our $VERSION = '1.43'; sub _TYPE_INDEX { return 0 } sub _MESSAGE_ID_INDEX { return 1 } @@ -152,7 +152,7 @@ Firefox::Marionette::Response - Represents a Marionette protocol response =head1 VERSION -Version 1.42 +Version 1.43 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/ShadowRoot.pm b/lib/Firefox/Marionette/ShadowRoot.pm index 1ef0660..d84efca 100644 --- a/lib/Firefox/Marionette/ShadowRoot.pm +++ b/lib/Firefox/Marionette/ShadowRoot.pm @@ -3,7 +3,7 @@ package Firefox::Marionette::ShadowRoot; use strict; use warnings; -our $VERSION = '1.42'; +our $VERSION = '1.43'; sub IDENTIFIER { return 'shadow-6066-11e4-a52e-4f735466cecf' } @@ -36,7 +36,7 @@ Firefox::Marionette::ShadowRoot - Represents a Firefox shadow root retrieved usi =head1 VERSION -Version 1.42 +Version 1.43 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Timeouts.pm b/lib/Firefox/Marionette/Timeouts.pm index d56c3cf..1e6c325 100755 --- a/lib/Firefox/Marionette/Timeouts.pm +++ b/lib/Firefox/Marionette/Timeouts.pm @@ -3,7 +3,7 @@ package Firefox::Marionette::Timeouts; use strict; use warnings; -our $VERSION = '1.42'; +our $VERSION = '1.43'; sub new { my ( $class, %parameters ) = @_; @@ -35,7 +35,7 @@ Firefox::Marionette::Timeouts - Represents the timeouts for page loading, search =head1 VERSION -Version 1.42 +Version 1.43 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/UpdateStatus.pm b/lib/Firefox/Marionette/UpdateStatus.pm index 05953ba..7b4c764 100644 --- a/lib/Firefox/Marionette/UpdateStatus.pm +++ b/lib/Firefox/Marionette/UpdateStatus.pm @@ -4,7 +4,7 @@ use strict; use warnings; use URI(); -our $VERSION = '1.42'; +our $VERSION = '1.43'; sub _NUMBER_OF_MILLISECONDS_IN_A_SECOND { return 1000 } @@ -155,7 +155,7 @@ Firefox::Marionette::UpdateStatus - Represents the resulting status of an Firefo =head1 VERSION -Version 1.42 +Version 1.43 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Window/Rect.pm b/lib/Firefox/Marionette/Window/Rect.pm index f2289e8..e89e588 100755 --- a/lib/Firefox/Marionette/Window/Rect.pm +++ b/lib/Firefox/Marionette/Window/Rect.pm @@ -3,7 +3,7 @@ package Firefox::Marionette::Window::Rect; use strict; use warnings; -our $VERSION = '1.42'; +our $VERSION = '1.43'; sub new { my ( $class, %parameters ) = @_; @@ -45,7 +45,7 @@ Firefox::Marionette::Window::Rect - Represents the browser window's shape and si =head1 VERSION -Version 1.42 +Version 1.43 =head1 SYNOPSIS diff --git a/lib/Waterfox/Marionette.pm b/lib/Waterfox/Marionette.pm index 868fccd..ca77365 100644 --- a/lib/Waterfox/Marionette.pm +++ b/lib/Waterfox/Marionette.pm @@ -11,7 +11,7 @@ our @EXPORT_OK = qw(BY_XPATH BY_ID BY_NAME BY_TAG BY_CLASS BY_SELECTOR BY_LINK BY_PARTIAL); our %EXPORT_TAGS = ( all => \@EXPORT_OK ); -our $VERSION = '1.42'; +our $VERSION = '1.43'; sub default_binary_name { return 'waterfox'; @@ -54,7 +54,7 @@ Waterfox::Marionette - Automate the Waterfox browser with the Marionette protoco =head1 VERSION -Version 1.42 +Version 1.43 =head1 SYNOPSIS diff --git a/lib/Waterfox/Marionette/Profile.pm b/lib/Waterfox/Marionette/Profile.pm index 1cbb5ef..9b8b79c 100644 --- a/lib/Waterfox/Marionette/Profile.pm +++ b/lib/Waterfox/Marionette/Profile.pm @@ -11,7 +11,7 @@ BEGIN { require Win32; } } -our $VERSION = '1.42'; +our $VERSION = '1.43'; sub profile_ini_directory { my ($class) = @_; @@ -101,7 +101,7 @@ Waterfox::Marionette::Profile - Represents a prefs.js Waterfox Profile =head1 VERSION -Version 1.42 +Version 1.43 =head1 SYNOPSIS diff --git a/mozilla-head-check b/mozilla-head-check index dbe9416..846b109 100755 --- a/mozilla-head-check +++ b/mozilla-head-check @@ -10,7 +10,7 @@ use English qw( -no_match_vars ); use Carp(); use Sys::Syslog(); -our $VERSION = '1.42'; +our $VERSION = '1.43'; MAIN: { my $facility = 'LOG_LOCAL0'; diff --git a/ssh-auth-cmd-marionette b/ssh-auth-cmd-marionette index 4431d0a..1d1dcaa 100755 --- a/ssh-auth-cmd-marionette +++ b/ssh-auth-cmd-marionette @@ -26,7 +26,7 @@ local $ENV{PATH} = '/usr/bin:/bin:/usr/sbin:/sbin' : q[] ); -our $VERSION = '1.42'; +our $VERSION = '1.43'; my $binary = 'firefox'; my $ident = 'ssh-auth-cmd-marionette'; @@ -401,7 +401,7 @@ ssh-auth-cmd-marionette - ssh ~/.ssh/authorized_keys command for Firefox::Marion =head1 VERSION -Version 1.42 +Version 1.43 =head1 USAGE