diff --git a/Changes b/Changes index 7908f74..fc96b80 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,10 @@ Revision history for Firefox-Marionette +1.53 Sun Mar 03 16:33 2024 + Adding CLEAR_BOUNCE_TRACKING_PROTECTION_STATE + Changes for agent method + Documentation and test suite fixes + 1.52 Mon Feb 03 21:30 2024 Adding stealth attribute Adding CLEAR_FINGERPRINTING_PROTECTION_STATE diff --git a/META.json b/META.json index 161926e..2b8f49d 100644 --- a/META.json +++ b/META.json @@ -67,6 +67,6 @@ } }, "release_status" : "unstable", - "version" : "1.52", + "version" : "1.53", "x_serialization_backend" : "JSON::PP version 4.04" } diff --git a/META.yml b/META.yml index 31cf38e..f068976 100644 --- a/META.yml +++ b/META.yml @@ -49,5 +49,5 @@ requires: base: '0' overload: '0' perl: '5.006' -version: 1.52 +version: 1.53 x_serialization_backend: 'CPAN::Meta::YAML version 0.018' diff --git a/README b/README index c12cac3..16788ca 100644 --- a/README +++ b/README @@ -5,7 +5,7 @@ NAME VERSION - Version 1.52 + Version 1.53 SYNOPSIS diff --git a/README.md b/README.md index 1ddc8be..7fea4dc 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Firefox::Marionette - Automate the Firefox browser with the Marionette protocol # VERSION -Version 1.52 +Version 1.53 # SYNOPSIS diff --git a/ca-bundle-for-firefox b/ca-bundle-for-firefox index 89d1aa8..7a28957 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.52'; +our $VERSION = '1.53'; my %options; @@ -115,7 +115,7 @@ ca-bundle-for-firefox - generate the ca-bundle.crt for the current firefox insta =head1 VERSION -Version 1.52 +Version 1.53 =head1 USAGE diff --git a/check-firefox-certificate-authorities b/check-firefox-certificate-authorities index 8ef3ee3..cfbb719 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.52'; +our $VERSION = '1.53'; 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.52 +Version 1.53 =head1 USAGE diff --git a/firefox-passwords b/firefox-passwords index 07e85d1..6b78048 100755 --- a/firefox-passwords +++ b/firefox-passwords @@ -14,7 +14,7 @@ use XML::Parser(); use Term::ReadKey(); use charnames ':full'; -our $VERSION = '1.52'; +our $VERSION = '1.53'; 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.52 +Version 1.53 =head1 USAGE diff --git a/lib/Firefox/Marionette.pm b/lib/Firefox/Marionette.pm index 2d2e4bd..f613b31 100644 --- a/lib/Firefox/Marionette.pm +++ b/lib/Firefox/Marionette.pm @@ -72,7 +72,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.52'; +our $VERSION = '1.53'; sub _ANYPROCESS { return -1 } sub _COMMAND { return 0 } @@ -12076,7 +12076,7 @@ Firefox::Marionette - Automate the Firefox browser with the Marionette protocol =head1 VERSION -Version 1.52 +Version 1.53 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Bookmark.pm b/lib/Firefox/Marionette/Bookmark.pm index bbd18d3..6c81995 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.52'; +our $VERSION = '1.53'; # 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.52 +Version 1.53 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Buttons.pm b/lib/Firefox/Marionette/Buttons.pm index 871e2d9..2707103 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.52'; +our $VERSION = '1.53'; 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.52 +Version 1.53 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Cache.pm b/lib/Firefox/Marionette/Cache.pm index 0257ce6..7ffb8b1 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.52'; +our $VERSION = '1.53'; 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.52 +Version 1.53 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Capabilities.pm b/lib/Firefox/Marionette/Capabilities.pm index 17a3908..aa01c61 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.52'; +our $VERSION = '1.53'; sub new { my ( $class, %parameters ) = @_; @@ -126,7 +126,7 @@ Firefox::Marionette::Capabilities - Represents Firefox Capabilities retrieved us =head1 VERSION -Version 1.52 +Version 1.53 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Certificate.pm b/lib/Firefox/Marionette/Certificate.pm index 31827ce..41990ca 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.52'; +our $VERSION = '1.53'; sub _NUMBER_OF_MICROSECOND_DIGITS { return -6 } @@ -179,7 +179,7 @@ Firefox::Marionette::Certificate - Represents a x509 Certificate from Firefox =head1 VERSION -Version 1.52 +Version 1.53 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Cookie.pm b/lib/Firefox/Marionette/Cookie.pm index e4f50f1..0515dd4 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.52'; +our $VERSION = '1.53'; sub new { my ( $class, %parameters ) = @_; @@ -73,7 +73,7 @@ Firefox::Marionette::Cookie - Represents a Firefox cookie retrieved using the Ma =head1 VERSION -Version 1.52 +Version 1.53 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Display.pm b/lib/Firefox/Marionette/Display.pm index cd14401..281b4e0 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.52'; +our $VERSION = '1.53'; sub new { my ( $class, %parameters ) = @_; @@ -60,7 +60,7 @@ Firefox::Marionette::Display - Represents a display from the displays method =head1 VERSION -Version 1.52 +Version 1.53 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Element.pm b/lib/Firefox/Marionette/Element.pm index d6ba3f3..9642bb0 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.52'; +our $VERSION = '1.53'; 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.52 +Version 1.53 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Element/Rect.pm b/lib/Firefox/Marionette/Element/Rect.pm index 81c2ed4..708431d 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.52'; +our $VERSION = '1.53'; sub new { my ( $class, %parameters ) = @_; @@ -40,7 +40,7 @@ Firefox::Marionette::Element::Rect - Represents the box around an Element =head1 VERSION -Version 1.52 +Version 1.53 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Exception.pm b/lib/Firefox/Marionette/Exception.pm index 61b559b..f113279 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.52'; +our $VERSION = '1.53'; sub throw { my ( $class, $string ) = @_; @@ -43,7 +43,7 @@ Firefox::Marionette::Exception - Represents an base exception class for exceptio =head1 VERSION -Version 1.52 +Version 1.53 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Exception/InsecureCertificate.pm b/lib/Firefox/Marionette/Exception/InsecureCertificate.pm index 5e27d5a..282f18c 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.52'; +our $VERSION = '1.53'; sub throw { my ( $class, $response, $parameters ) = @_; @@ -25,7 +25,7 @@ Firefox::Marionette::Exception::InsecureCertificate - Represents a 'insecure cer =head1 VERSION -Version 1.52 +Version 1.53 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Exception/NoSuchAlert.pm b/lib/Firefox/Marionette/Exception/NoSuchAlert.pm index e0e6e9b..888c9bc 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.52'; +our $VERSION = '1.53'; sub throw { my ( $class, $response, $parameters ) = @_; @@ -25,7 +25,7 @@ Firefox::Marionette::Exception::NoSuchAlert - Represents a 'no such alert' excep =head1 VERSION -Version 1.52 +Version 1.53 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Exception/NotFound.pm b/lib/Firefox/Marionette/Exception/NotFound.pm index 49cdff5..a82650d 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.52'; +our $VERSION = '1.53'; sub throw { my ( $class, $response, $parameters ) = @_; @@ -29,7 +29,7 @@ Firefox::Marionette::Exception::NotFound - Represents a 'no such element' except =head1 VERSION -Version 1.52 +Version 1.53 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Exception/Response.pm b/lib/Firefox/Marionette/Exception/Response.pm index 13475e0..10e141c 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.52'; +our $VERSION = '1.53'; sub throw { my ( $class, $response ) = @_; @@ -45,7 +45,7 @@ Firefox::Marionette::Exception::Response - Represents an exception thrown by Fir =head1 VERSION -Version 1.52 +Version 1.53 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Exception/StaleElement.pm b/lib/Firefox/Marionette/Exception/StaleElement.pm index 72c6680..336465c 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.52'; +our $VERSION = '1.53'; sub throw { my ( $class, $response, $parameters ) = @_; @@ -26,7 +26,7 @@ Firefox::Marionette::Exception::StaleElement - Represents a 'stale element refer =head1 VERSION -Version 1.52 +Version 1.53 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Extension/HarExportTrigger.pm b/lib/Firefox/Marionette/Extension/HarExportTrigger.pm index eef0a55..8bf1ad3 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.52'; +our $VERSION = '1.53'; sub as_string { return <<'_BASE64_'; @@ -573,7 +573,7 @@ Firefox::Marionette::Extension::HarExportTrigger - Contains the HAR Export Trigg =head1 VERSION -Version 1.52 +Version 1.53 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Extension/Stealth.pm b/lib/Firefox/Marionette/Extension/Stealth.pm index 8fb49e9..bda9719 100644 --- a/lib/Firefox/Marionette/Extension/Stealth.pm +++ b/lib/Firefox/Marionette/Extension/Stealth.pm @@ -4,7 +4,7 @@ use Archive::Zip(); use strict; use warnings; -our $VERSION = '1.52'; +our $VERSION = '1.53'; my $inject_name = 'inject.js'; my $content_name = 'content.js'; @@ -182,7 +182,7 @@ Firefox::Marionette::Extension::Stealth - Contains the Stealth Extension =head1 VERSION -Version 1.52 +Version 1.53 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/GeoLocation.pm b/lib/Firefox/Marionette/GeoLocation.pm index f72e137..edb4335 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.52'; +our $VERSION = '1.53'; 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.52 +Version 1.53 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Image.pm b/lib/Firefox/Marionette/Image.pm index 74881ee..428dd78 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.52'; +our $VERSION = '1.53'; sub new { my ( $class, $element ) = @_; @@ -89,7 +89,7 @@ Firefox::Marionette::Image - Represents an image from the images method =head1 VERSION -Version 1.52 +Version 1.53 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Keys.pm b/lib/Firefox/Marionette/Keys.pm index 714ea15..d1a5206 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.52'; +our $VERSION = '1.53'; 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.52 +Version 1.53 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Link.pm b/lib/Firefox/Marionette/Link.pm index e0fc1f9..db6a985 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.52'; +our $VERSION = '1.53'; sub new { my ( $class, $element ) = @_; @@ -78,7 +78,7 @@ Firefox::Marionette::Link - Represents a link from the links method =head1 VERSION -Version 1.52 +Version 1.53 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/LocalObject.pm b/lib/Firefox/Marionette/LocalObject.pm index c892dbc..b7eb8e4 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.52'; +our $VERSION = '1.53'; sub new { my ( $class, $browser, %parameters ) = @_; @@ -56,7 +56,7 @@ Firefox::Marionette::LocalObject - Parent class that represents a Firefox local =head1 VERSION -Version 1.52 +Version 1.53 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Login.pm b/lib/Firefox/Marionette/Login.pm index d030131..6449ef6 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.52'; +our $VERSION = '1.53'; 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.52 +Version 1.53 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Profile.pm b/lib/Firefox/Marionette/Profile.pm index b7acdb7..5cca6c8 100755 --- a/lib/Firefox/Marionette/Profile.pm +++ b/lib/Firefox/Marionette/Profile.pm @@ -13,7 +13,7 @@ BEGIN { require Win32; } } -our $VERSION = '1.52'; +our $VERSION = '1.53'; 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.52 +Version 1.53 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Proxy.pm b/lib/Firefox/Marionette/Proxy.pm index e7adbd0..24a03aa 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.52'; +our $VERSION = '1.53'; 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.52 +Version 1.53 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Response.pm b/lib/Firefox/Marionette/Response.pm index db1b7d4..d7aa522 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.52'; +our $VERSION = '1.53'; 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.52 +Version 1.53 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/ShadowRoot.pm b/lib/Firefox/Marionette/ShadowRoot.pm index dcd510d..64aee84 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.52'; +our $VERSION = '1.53'; 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.52 +Version 1.53 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Timeouts.pm b/lib/Firefox/Marionette/Timeouts.pm index 01ca0f8..bc89d15 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.52'; +our $VERSION = '1.53'; sub new { my ( $class, %parameters ) = @_; @@ -35,7 +35,7 @@ Firefox::Marionette::Timeouts - Represents the timeouts for page loading, search =head1 VERSION -Version 1.52 +Version 1.53 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/UpdateStatus.pm b/lib/Firefox/Marionette/UpdateStatus.pm index db406cc..7ac3f72 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.52'; +our $VERSION = '1.53'; 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.52 +Version 1.53 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/WebAuthn/Authenticator.pm b/lib/Firefox/Marionette/WebAuthn/Authenticator.pm index 56114cf..7754db1 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.52'; +our $VERSION = '1.53'; 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.52 +Version 1.53 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/WebAuthn/Credential.pm b/lib/Firefox/Marionette/WebAuthn/Credential.pm index e1dae8e..6b6ab2b 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.52'; +our $VERSION = '1.53'; my %key_mapping = ( isResidentCredential => 'is_resident', @@ -68,7 +68,7 @@ Firefox::Marionette::WebAuthn::Credential - Represents a Firefox WebAuthn Creden =head1 VERSION -Version 1.52 +Version 1.53 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/WebFrame.pm b/lib/Firefox/Marionette/WebFrame.pm index 36707d8..462a43c 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.52'; +our $VERSION = '1.53'; 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.52 +Version 1.53 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/WebWindow.pm b/lib/Firefox/Marionette/WebWindow.pm index d96e825..e25e16f 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.52'; +our $VERSION = '1.53'; 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.52 +Version 1.53 =head1 SYNOPSIS diff --git a/lib/Firefox/Marionette/Window/Rect.pm b/lib/Firefox/Marionette/Window/Rect.pm index 55a0660..3541e1b 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.52'; +our $VERSION = '1.53'; 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.52 +Version 1.53 =head1 SYNOPSIS diff --git a/lib/Waterfox/Marionette.pm b/lib/Waterfox/Marionette.pm index d8b4966..5e3508e 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.52'; +our $VERSION = '1.53'; sub default_binary_name { return 'waterfox'; @@ -54,7 +54,7 @@ Waterfox::Marionette - Automate the Waterfox browser with the Marionette protoco =head1 VERSION -Version 1.52 +Version 1.53 =head1 SYNOPSIS diff --git a/lib/Waterfox/Marionette/Profile.pm b/lib/Waterfox/Marionette/Profile.pm index 7297dfa..3917c7b 100644 --- a/lib/Waterfox/Marionette/Profile.pm +++ b/lib/Waterfox/Marionette/Profile.pm @@ -11,7 +11,7 @@ BEGIN { require Win32; } } -our $VERSION = '1.52'; +our $VERSION = '1.53'; sub profile_ini_directory { my ($class) = @_; @@ -101,7 +101,7 @@ Waterfox::Marionette::Profile - Represents a prefs.js Waterfox Profile =head1 VERSION -Version 1.52 +Version 1.53 =head1 SYNOPSIS diff --git a/mozilla-head-check b/mozilla-head-check index caf6dfe..6225e07 100755 --- a/mozilla-head-check +++ b/mozilla-head-check @@ -11,7 +11,7 @@ use Carp(); use DirHandle(); use Sys::Syslog(); -our $VERSION = '1.52'; +our $VERSION = '1.53'; MAIN: { my $facility = 'LOG_LOCAL0'; diff --git a/ssh-auth-cmd-marionette b/ssh-auth-cmd-marionette index 185e79c..4c119f1 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.52'; +our $VERSION = '1.53'; 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.52 +Version 1.53 =head1 USAGE