diff --git a/Changes b/Changes index 928fb5d..a34cd0b 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Revision history for Firefox-Marionette +1.57 Mon May 06 19:45 2024 + Setting minimum perl version to 5.10 + 1.56 Sun May 05 19:16 2024 Using mdn/browser-compat-data for stealth Bookmark fixes for firefox changes diff --git a/META.json b/META.json index ed10522..f2102c5 100644 --- a/META.json +++ b/META.json @@ -67,6 +67,6 @@ } }, "release_status" : "unstable", - "version" : "1.56", + "version" : "1.57", "x_serialization_backend" : "JSON::PP version 4.04" } diff --git a/META.yml b/META.yml index 5373209..4dc6813 100644 --- a/META.yml +++ b/META.yml @@ -49,5 +49,5 @@ requires: base: '0' overload: '0' perl: '5.006' -version: 1.56 +version: 1.57 x_serialization_backend: 'CPAN::Meta::YAML version 0.018' diff --git a/README b/README index fdd1689..06de012 100644 --- a/README +++ b/README @@ -5,7 +5,7 @@ NAME VERSION - Version 1.56 + Version 1.57 SYNOPSIS diff --git a/README.md b/README.md index 626243f..124e9f2 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Firefox::Marionette - Automate the Firefox browser with the Marionette protocol # VERSION -Version 1.56 +Version 1.57 # SYNOPSIS diff --git a/build-bcd-for-firefox b/build-bcd-for-firefox index c49663a..9ed450f 100755 --- a/build-bcd-for-firefox +++ b/build-bcd-for-firefox @@ -22,7 +22,7 @@ delete @ENV{qw(IFS CDPATH ENV BASH_ENV)}; sub _BUFFER_SIZE { return 8192 } sub _MAX_KEYS { return 3 } -our $VERSION = '1.56'; +our $VERSION = '1.57'; MAIN: { my %options; @@ -351,7 +351,7 @@ build-bcd-for-firefox - build user agent data from the @mdn/browser-compat-data =head1 VERSION -Version 1.56 +Version 1.57 =head1 USAGE diff --git a/ca-bundle-for-firefox b/ca-bundle-for-firefox index ddea024..7d2dabc 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.56'; +our $VERSION = '1.57'; my %options; @@ -115,7 +115,7 @@ ca-bundle-for-firefox - generate the ca-bundle.crt for the current firefox insta =head1 VERSION -Version 1.56 +Version 1.57 =head1 USAGE diff --git a/check-firefox-certificate-authorities b/check-firefox-certificate-authorities index 74383b6..988a3af 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.56'; +our $VERSION = '1.57'; 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.56 +Version 1.57 =head1 USAGE diff --git a/firefox-passwords b/firefox-passwords index d8ae5b0..f882d83 100755 --- a/firefox-passwords +++ b/firefox-passwords @@ -14,7 +14,7 @@ use XML::Parser(); use Term::ReadKey(); use charnames ':full'; -our $VERSION = '1.56'; +our $VERSION = '1.57'; 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.56 +Version 1.57 =head1 USAGE diff --git a/lib/Firefox/Marionette.pm b/lib/Firefox/Marionette.pm index 7d92d5d..e07e283 100644 --- a/lib/Firefox/Marionette.pm +++ b/lib/Firefox/Marionette.pm @@ -73,7 +73,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.56'; +our $VERSION = '1.57'; sub _ANYPROCESS { return -1 } sub _COMMAND { return 0 } @@ -12152,7 +12152,7 @@ Firefox::Marionette - Automate the Firefox browser with the Marionette protocol =head1 VERSION -Version 1.56 +Version 1.57 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Bookmark.pm b/lib/Firefox/Marionette/Bookmark.pm index 1682953..060a174 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.56'; +our $VERSION = '1.57'; # 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.56 +Version 1.57 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Buttons.pm b/lib/Firefox/Marionette/Buttons.pm index 7a2c9c3..418f966 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.56'; +our $VERSION = '1.57'; 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.56 +Version 1.57 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Cache.pm b/lib/Firefox/Marionette/Cache.pm index 2c0b11d..d92a34b 100644 --- a/lib/Firefox/Marionette/Cache.pm +++ b/lib/Firefox/Marionette/Cache.pm @@ -42,7 +42,7 @@ our @EXPORT_OK = qw( our %EXPORT_TAGS = ( 'all' => \@EXPORT_OK, ); -our $VERSION = '1.56'; +our $VERSION = '1.57'; sub CLEAR_COOKIES { return 1 } sub CLEAR_NETWORK_CACHE { return 2 } @@ -104,7 +104,7 @@ Firefox::Marionette::Cache - Constants to describe actions on the cache =head1 VERSION -Version 1.56 +Version 1.57 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Capabilities.pm b/lib/Firefox/Marionette/Capabilities.pm index 65586cc..5712a5e 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.56'; +our $VERSION = '1.57'; sub new { my ( $class, %parameters ) = @_; @@ -126,7 +126,7 @@ Firefox::Marionette::Capabilities - Represents Firefox Capabilities retrieved us =head1 VERSION -Version 1.56 +Version 1.57 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Certificate.pm b/lib/Firefox/Marionette/Certificate.pm index 792cf20..bfcb6af 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.56'; +our $VERSION = '1.57'; sub _NUMBER_OF_MICROSECOND_DIGITS { return -6 } @@ -179,7 +179,7 @@ Firefox::Marionette::Certificate - Represents a x509 Certificate from Firefox =head1 VERSION -Version 1.56 +Version 1.57 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Cookie.pm b/lib/Firefox/Marionette/Cookie.pm index d3c7878..f2dd4b7 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.56'; +our $VERSION = '1.57'; sub new { my ( $class, %parameters ) = @_; @@ -73,7 +73,7 @@ Firefox::Marionette::Cookie - Represents a Firefox cookie retrieved using the Ma =head1 VERSION -Version 1.56 +Version 1.57 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Display.pm b/lib/Firefox/Marionette/Display.pm index 7f9a874..4f017ba 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.56'; +our $VERSION = '1.57'; sub new { my ( $class, %parameters ) = @_; @@ -60,7 +60,7 @@ Firefox::Marionette::Display - Represents a display from the displays method =head1 VERSION -Version 1.56 +Version 1.57 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Element.pm b/lib/Firefox/Marionette/Element.pm index f1198ab..ee07f28 100755 --- a/lib/Firefox/Marionette/Element.pm +++ b/lib/Firefox/Marionette/Element.pm @@ -4,7 +4,7 @@ use strict; use warnings; use parent qw(Firefox::Marionette::LocalObject); -our $VERSION = '1.56'; +our $VERSION = '1.57'; sub IDENTIFIER { return 'element-6066-11e4-a52e-4f735466cecf' } @@ -335,7 +335,7 @@ Firefox::Marionette::Element - Represents a Firefox element retrieved using the =head1 VERSION -Version 1.56 +Version 1.57 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Element/Rect.pm b/lib/Firefox/Marionette/Element/Rect.pm index d3e4875..21f4f2d 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.56'; +our $VERSION = '1.57'; sub new { my ( $class, %parameters ) = @_; @@ -40,7 +40,7 @@ Firefox::Marionette::Element::Rect - Represents the box around an Element =head1 VERSION -Version 1.56 +Version 1.57 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Exception.pm b/lib/Firefox/Marionette/Exception.pm index f564363..a7e2a63 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.56'; +our $VERSION = '1.57'; sub throw { my ( $class, $string ) = @_; @@ -43,7 +43,7 @@ Firefox::Marionette::Exception - Represents an base exception class for exceptio =head1 VERSION -Version 1.56 +Version 1.57 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Exception/InsecureCertificate.pm b/lib/Firefox/Marionette/Exception/InsecureCertificate.pm index 2fb54ef..3af986e 100644 --- a/lib/Firefox/Marionette/Exception/InsecureCertificate.pm +++ b/lib/Firefox/Marionette/Exception/InsecureCertificate.pm @@ -4,7 +4,7 @@ use strict; use warnings; use parent qw(Firefox::Marionette::Exception::Response); -our $VERSION = '1.56'; +our $VERSION = '1.57'; sub throw { my ( $class, $response, $parameters ) = @_; @@ -25,7 +25,7 @@ Firefox::Marionette::Exception::InsecureCertificate - Represents a 'insecure cer =head1 VERSION -Version 1.56 +Version 1.57 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Exception/NoSuchAlert.pm b/lib/Firefox/Marionette/Exception/NoSuchAlert.pm index c4f5a16..f29f3b4 100755 --- a/lib/Firefox/Marionette/Exception/NoSuchAlert.pm +++ b/lib/Firefox/Marionette/Exception/NoSuchAlert.pm @@ -4,7 +4,7 @@ use strict; use warnings; use parent qw(Firefox::Marionette::Exception::Response); -our $VERSION = '1.56'; +our $VERSION = '1.57'; sub throw { my ( $class, $response, $parameters ) = @_; @@ -25,7 +25,7 @@ Firefox::Marionette::Exception::NoSuchAlert - Represents a 'no such alert' excep =head1 VERSION -Version 1.56 +Version 1.57 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Exception/NotFound.pm b/lib/Firefox/Marionette/Exception/NotFound.pm index d46b8bc..32834e7 100755 --- a/lib/Firefox/Marionette/Exception/NotFound.pm +++ b/lib/Firefox/Marionette/Exception/NotFound.pm @@ -4,7 +4,7 @@ use strict; use warnings; use parent qw(Firefox::Marionette::Exception::Response); -our $VERSION = '1.56'; +our $VERSION = '1.57'; sub throw { my ( $class, $response, $parameters ) = @_; @@ -29,7 +29,7 @@ Firefox::Marionette::Exception::NotFound - Represents a 'no such element' except =head1 VERSION -Version 1.56 +Version 1.57 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Exception/Response.pm b/lib/Firefox/Marionette/Exception/Response.pm index 3540cc5..305a037 100755 --- a/lib/Firefox/Marionette/Exception/Response.pm +++ b/lib/Firefox/Marionette/Exception/Response.pm @@ -4,7 +4,7 @@ use strict; use warnings; use parent qw(Firefox::Marionette::Exception); -our $VERSION = '1.56'; +our $VERSION = '1.57'; sub throw { my ( $class, $response ) = @_; @@ -45,7 +45,7 @@ Firefox::Marionette::Exception::Response - Represents an exception thrown by Fir =head1 VERSION -Version 1.56 +Version 1.57 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Exception/StaleElement.pm b/lib/Firefox/Marionette/Exception/StaleElement.pm index 6c07cd1..684ea44 100755 --- a/lib/Firefox/Marionette/Exception/StaleElement.pm +++ b/lib/Firefox/Marionette/Exception/StaleElement.pm @@ -4,7 +4,7 @@ use strict; use warnings; use parent qw(Firefox::Marionette::Exception::Response); -our $VERSION = '1.56'; +our $VERSION = '1.57'; sub throw { my ( $class, $response, $parameters ) = @_; @@ -26,7 +26,7 @@ Firefox::Marionette::Exception::StaleElement - Represents a 'stale element refer =head1 VERSION -Version 1.56 +Version 1.57 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Extension/HarExportTrigger.pm b/lib/Firefox/Marionette/Extension/HarExportTrigger.pm index f087050..19f5023 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.56'; +our $VERSION = '1.57'; sub as_string { return <<'_BASE64_'; @@ -573,7 +573,7 @@ Firefox::Marionette::Extension::HarExportTrigger - Contains the HAR Export Trigg =head1 VERSION -Version 1.56 +Version 1.57 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Extension/Stealth.pm b/lib/Firefox/Marionette/Extension/Stealth.pm index d9c79f8..f83a65d 100644 --- a/lib/Firefox/Marionette/Extension/Stealth.pm +++ b/lib/Firefox/Marionette/Extension/Stealth.pm @@ -7,7 +7,7 @@ use English qw( -no_match_vars ); use strict; use warnings; -our $VERSION = '1.56'; +our $VERSION = '1.57'; sub _BUFFER_SIZE { return 65_536 } @@ -668,7 +668,7 @@ Firefox::Marionette::Extension::Stealth - Contains the Stealth Extension =head1 VERSION -Version 1.56 +Version 1.57 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/GeoLocation.pm b/lib/Firefox/Marionette/GeoLocation.pm index 68ed70d..f591a2f 100644 --- a/lib/Firefox/Marionette/GeoLocation.pm +++ b/lib/Firefox/Marionette/GeoLocation.pm @@ -6,7 +6,7 @@ use Encode(); use overload q[""] => '_lat_long'; use charnames qw(:full); -our $VERSION = '1.56'; +our $VERSION = '1.57'; sub _MINUTES_IN_ONE_HOUR { return 60 } sub _MINUTES_IN_ONE_DEGREE { return 60 } @@ -203,7 +203,7 @@ Firefox::Marionette::GeoLocation - Represents a GeoLocation for Firefox =head1 VERSION -Version 1.56 +Version 1.57 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Image.pm b/lib/Firefox/Marionette/Image.pm index c80a0de..b526595 100644 --- a/lib/Firefox/Marionette/Image.pm +++ b/lib/Firefox/Marionette/Image.pm @@ -6,7 +6,7 @@ use URI::URL(); use parent qw(Firefox::Marionette::Element); -our $VERSION = '1.56'; +our $VERSION = '1.57'; sub new { my ( $class, $element ) = @_; @@ -89,7 +89,7 @@ Firefox::Marionette::Image - Represents an image from the images method =head1 VERSION -Version 1.56 +Version 1.57 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Keys.pm b/lib/Firefox/Marionette/Keys.pm index 3455336..2de4845 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.56'; +our $VERSION = '1.57'; 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.56 +Version 1.57 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Link.pm b/lib/Firefox/Marionette/Link.pm index bb17fd6..81a4c1c 100644 --- a/lib/Firefox/Marionette/Link.pm +++ b/lib/Firefox/Marionette/Link.pm @@ -6,7 +6,7 @@ use URI::URL(); use parent qw(Firefox::Marionette::Element); -our $VERSION = '1.56'; +our $VERSION = '1.57'; sub new { my ( $class, $element ) = @_; @@ -78,7 +78,7 @@ Firefox::Marionette::Link - Represents a link from the links method =head1 VERSION -Version 1.56 +Version 1.57 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/LocalObject.pm b/lib/Firefox/Marionette/LocalObject.pm index a7ef610..73f2cc4 100644 --- a/lib/Firefox/Marionette/LocalObject.pm +++ b/lib/Firefox/Marionette/LocalObject.pm @@ -4,7 +4,7 @@ use strict; use warnings; use overload q[""] => 'uuid', 'cmp' => '_cmp', q[==] => '_numeric_eq'; -our $VERSION = '1.56'; +our $VERSION = '1.57'; sub new { my ( $class, $browser, %parameters ) = @_; @@ -56,7 +56,7 @@ Firefox::Marionette::LocalObject - Parent class that represents a Firefox local =head1 VERSION -Version 1.56 +Version 1.57 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Login.pm b/lib/Firefox/Marionette/Login.pm index 503ac1d..7deaba1 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.56'; +our $VERSION = '1.57'; 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.56 +Version 1.57 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Profile.pm b/lib/Firefox/Marionette/Profile.pm index a866a52..902c253 100755 --- a/lib/Firefox/Marionette/Profile.pm +++ b/lib/Firefox/Marionette/Profile.pm @@ -13,7 +13,7 @@ BEGIN { require Win32; } } -our $VERSION = '1.56'; +our $VERSION = '1.57'; sub ANY_PORT { return 0 } sub _GETPWUID_DIR_INDEX { return 7 } @@ -530,7 +530,7 @@ Firefox::Marionette::Profile - Represents a prefs.js Firefox Profile =head1 VERSION -Version 1.56 +Version 1.57 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Proxy.pm b/lib/Firefox/Marionette/Proxy.pm index 98917d8..9ce117b 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.56'; +our $VERSION = '1.57'; sub DEFAULT_SOCKS_VERSION { return 5 } sub DEFAULT_SQUID_PORT { return 3128 } @@ -107,7 +107,7 @@ Firefox::Marionette::Proxy - Represents a Proxy used by Firefox Capabilities usi =head1 VERSION -Version 1.56 +Version 1.57 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Response.pm b/lib/Firefox/Marionette/Response.pm index 65f5cf8..4036079 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.56'; +our $VERSION = '1.57'; sub _TYPE_INDEX { return 0 } sub _MESSAGE_ID_INDEX { return 1 } @@ -147,7 +147,7 @@ Firefox::Marionette::Response - Represents a Marionette protocol response =head1 VERSION -Version 1.56 +Version 1.57 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/ShadowRoot.pm b/lib/Firefox/Marionette/ShadowRoot.pm index a5a6bae..b19bff7 100644 --- a/lib/Firefox/Marionette/ShadowRoot.pm +++ b/lib/Firefox/Marionette/ShadowRoot.pm @@ -4,7 +4,7 @@ use strict; use warnings; use parent qw(Firefox::Marionette::LocalObject); -our $VERSION = '1.56'; +our $VERSION = '1.57'; sub IDENTIFIER { return 'shadow-6066-11e4-a52e-4f735466cecf' } @@ -17,7 +17,7 @@ Firefox::Marionette::ShadowRoot - Represents a Firefox shadow root retrieved usi =head1 VERSION -Version 1.56 +Version 1.57 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Timeouts.pm b/lib/Firefox/Marionette/Timeouts.pm index 0552a30..26c8cef 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.56'; +our $VERSION = '1.57'; sub new { my ( $class, %parameters ) = @_; @@ -35,7 +35,7 @@ Firefox::Marionette::Timeouts - Represents the timeouts for page loading, search =head1 VERSION -Version 1.56 +Version 1.57 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/UpdateStatus.pm b/lib/Firefox/Marionette/UpdateStatus.pm index 6add5dd..c8b6215 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.56'; +our $VERSION = '1.57'; 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.56 +Version 1.57 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/WebAuthn/Authenticator.pm b/lib/Firefox/Marionette/WebAuthn/Authenticator.pm index 1c0b0a6..3451fec 100644 --- a/lib/Firefox/Marionette/WebAuthn/Authenticator.pm +++ b/lib/Firefox/Marionette/WebAuthn/Authenticator.pm @@ -3,7 +3,7 @@ package Firefox::Marionette::WebAuthn::Authenticator; use strict; use warnings; -our $VERSION = '1.56'; +our $VERSION = '1.57'; sub BLE { return 'ble' } sub CTAP1_U2F { return 'ctap1/u2f' } @@ -65,7 +65,7 @@ Firefox::Marionette::WebAuthn::Authenticator - Represents a Firefox WebAuthn Aut =head1 VERSION -Version 1.56 +Version 1.57 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/WebAuthn/Credential.pm b/lib/Firefox/Marionette/WebAuthn/Credential.pm index e398c06..491f09a 100644 --- a/lib/Firefox/Marionette/WebAuthn/Credential.pm +++ b/lib/Firefox/Marionette/WebAuthn/Credential.pm @@ -3,7 +3,7 @@ package Firefox::Marionette::WebAuthn::Credential; use strict; use warnings; -our $VERSION = '1.56'; +our $VERSION = '1.57'; my %key_mapping = ( isResidentCredential => 'is_resident', @@ -68,7 +68,7 @@ Firefox::Marionette::WebAuthn::Credential - Represents a Firefox WebAuthn Creden =head1 VERSION -Version 1.56 +Version 1.57 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/WebFrame.pm b/lib/Firefox/Marionette/WebFrame.pm index e7da9b6..e22254d 100644 --- a/lib/Firefox/Marionette/WebFrame.pm +++ b/lib/Firefox/Marionette/WebFrame.pm @@ -4,7 +4,7 @@ use strict; use warnings; use parent qw(Firefox::Marionette::LocalObject); -our $VERSION = '1.56'; +our $VERSION = '1.57'; sub IDENTIFIER { return 'frame-075b-4da1-b6ba-e579c2d3230a' } @@ -17,7 +17,7 @@ Firefox::Marionette::WebFrame - Represents a Firefox web frame retrieved using t =head1 VERSION -Version 1.56 +Version 1.57 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/WebWindow.pm b/lib/Firefox/Marionette/WebWindow.pm index 364c19c..d6987f5 100644 --- a/lib/Firefox/Marionette/WebWindow.pm +++ b/lib/Firefox/Marionette/WebWindow.pm @@ -4,7 +4,7 @@ use strict; use warnings; use parent qw(Firefox::Marionette::LocalObject); -our $VERSION = '1.56'; +our $VERSION = '1.57'; sub IDENTIFIER { return 'window-fcc6-11e5-b4f8-330a88ab9d7f' } @@ -17,7 +17,7 @@ Firefox::Marionette::WebWindow - Represents a Firefox window retrieved using the =head1 VERSION -Version 1.56 +Version 1.57 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Window/Rect.pm b/lib/Firefox/Marionette/Window/Rect.pm index c381021..5515773 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.56'; +our $VERSION = '1.57'; 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.56 +Version 1.57 =head1 SYNOPSIS diff --git a/lib/Waterfox/Marionette.pm b/lib/Waterfox/Marionette.pm index c6c0918..d6cd030 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.56'; +our $VERSION = '1.57'; sub default_binary_name { return 'waterfox'; @@ -54,7 +54,7 @@ Waterfox::Marionette - Automate the Waterfox browser with the Marionette protoco =head1 VERSION -Version 1.56 +Version 1.57 =head1 SYNOPSIS diff --git a/lib/Waterfox/Marionette/Profile.pm b/lib/Waterfox/Marionette/Profile.pm index 18aa138..ecdcf97 100644 --- a/lib/Waterfox/Marionette/Profile.pm +++ b/lib/Waterfox/Marionette/Profile.pm @@ -11,7 +11,7 @@ BEGIN { require Win32; } } -our $VERSION = '1.56'; +our $VERSION = '1.57'; sub profile_ini_directory { my ($class) = @_; @@ -101,7 +101,7 @@ Waterfox::Marionette::Profile - Represents a prefs.js Waterfox Profile =head1 VERSION -Version 1.56 +Version 1.57 =head1 SYNOPSIS diff --git a/mozilla-head-check b/mozilla-head-check index 1e02b7f..abe4b17 100755 --- a/mozilla-head-check +++ b/mozilla-head-check @@ -11,7 +11,7 @@ use Carp(); use DirHandle(); use Sys::Syslog(); -our $VERSION = '1.56'; +our $VERSION = '1.57'; MAIN: { my $facility = 'LOG_LOCAL0'; diff --git a/ssh-auth-cmd-marionette b/ssh-auth-cmd-marionette index ec0c150..c8a3ff4 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.56'; +our $VERSION = '1.57'; 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.56 +Version 1.57 =head1 USAGE