[Bps-public-commit] app-aws-cloudwatch-monitor branch version-0.02 updated. f7b202018dc9cb208a9d3f0f160e7404cb11d766

BPS Git Server git at git.bestpractical.com
Tue May 17 23:55:27 UTC 2022


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "app-aws-cloudwatch-monitor".

The branch, version-0.02 has been updated
       via  f7b202018dc9cb208a9d3f0f160e7404cb11d766 (commit)
       via  2d46156acbf53371a10c096550d184ed95cf3f0c (commit)
      from  8b596ab500744d97c326abfdda04eebd9b1bbdf5 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit f7b202018dc9cb208a9d3f0f160e7404cb11d766
Author: Blaine Motsinger <blaine at bestpractical.com>
Date:   Tue May 17 18:54:07 2022 -0500

    Prepare version 0.02

diff --git a/Changes b/Changes
index 7184110..db563a3 100644
--- a/Changes
+++ b/Changes
@@ -1,6 +1,16 @@
 Revision history for perl module App::AWS::CloudWatch::Monitor
 
-0.01 YYYY-MM-DD
+0.02 2022-05-17
+ - Add LWP::Protocol::https to deps list
+ - Optimize datetime
+ - Replace DateTime with Time::Piece in deps
+ - Add install instructions
+ - Move config.ini.example into examples dir
+
+ [Revisions to CloudWatchClient.pm]
+ - Replace DateTime with Time::Piece
+
+0.01 2022-03-08
  - Initial version
 
  [Revisions to AwsSignatureV4.pm]
diff --git a/bin/aws-cloudwatch-monitor b/bin/aws-cloudwatch-monitor
index 40073c7..4dd7d74 100755
--- a/bin/aws-cloudwatch-monitor
+++ b/bin/aws-cloudwatch-monitor
@@ -21,7 +21,7 @@ use Getopt::Long qw(:config pass_through);
 use Pod::Usage ();
 use App::AWS::CloudWatch::Monitor;
 
-my $VERSION = '0.01';
+my $VERSION = '0.02';
 
 Getopt::Long::GetOptions(
     \my %opt,
diff --git a/lib/App/AWS/CloudWatch/Monitor.pm b/lib/App/AWS/CloudWatch/Monitor.pm
index 11a8f03..7b243e7 100644
--- a/lib/App/AWS/CloudWatch/Monitor.pm
+++ b/lib/App/AWS/CloudWatch/Monitor.pm
@@ -23,7 +23,7 @@ use List::Util;
 use Try::Tiny;
 use Module::Loader;
 
-our $VERSION = '0.01';
+our $VERSION = '0.02';
 
 my $config;
 
diff --git a/lib/App/AWS/CloudWatch/Monitor/AwsSignatureV4.pm b/lib/App/AWS/CloudWatch/Monitor/AwsSignatureV4.pm
index c39bedd..a49c771 100644
--- a/lib/App/AWS/CloudWatch/Monitor/AwsSignatureV4.pm
+++ b/lib/App/AWS/CloudWatch/Monitor/AwsSignatureV4.pm
@@ -41,7 +41,7 @@ use Digest::SHA qw(sha256_hex hmac_sha256 hmac_sha256_hex);
 # For using PurePerl implementation of SHA functions
 # use Digest::SHA::PurePerl qw(sha256_hex hmac_sha256 hmac_sha256_hex);
 
-our $VERSION = '0.01';
+our $VERSION = '0.02';
 
 # RFC3986 safe/unsafe characters
 our $SAFE_CHARACTERS   = 'A-Za-z0-9\-\._~';
diff --git a/lib/App/AWS/CloudWatch/Monitor/Check.pm b/lib/App/AWS/CloudWatch/Monitor/Check.pm
index 24121ee..fb31bb3 100644
--- a/lib/App/AWS/CloudWatch/Monitor/Check.pm
+++ b/lib/App/AWS/CloudWatch/Monitor/Check.pm
@@ -19,7 +19,7 @@ use warnings;
 
 use Capture::Tiny;
 
-our $VERSION = '0.01';
+our $VERSION = '0.02';
 
 sub new {
     my $class = shift;
diff --git a/lib/App/AWS/CloudWatch/Monitor/Check/DiskSpace.pm b/lib/App/AWS/CloudWatch/Monitor/Check/DiskSpace.pm
index 44e9e98..b0d330b 100644
--- a/lib/App/AWS/CloudWatch/Monitor/Check/DiskSpace.pm
+++ b/lib/App/AWS/CloudWatch/Monitor/Check/DiskSpace.pm
@@ -21,7 +21,7 @@ use parent 'App::AWS::CloudWatch::Monitor::Check';
 
 use Getopt::Long qw(:config pass_through);
 
-our $VERSION = '0.01';
+our $VERSION = '0.02';
 
 sub check {
     my $self = shift;
diff --git a/lib/App/AWS/CloudWatch/Monitor/Check/Inode.pm b/lib/App/AWS/CloudWatch/Monitor/Check/Inode.pm
index d39f161..1806490 100644
--- a/lib/App/AWS/CloudWatch/Monitor/Check/Inode.pm
+++ b/lib/App/AWS/CloudWatch/Monitor/Check/Inode.pm
@@ -21,7 +21,7 @@ use parent 'App::AWS::CloudWatch::Monitor::Check';
 
 use Getopt::Long qw(:config pass_through);
 
-our $VERSION = '0.01';
+our $VERSION = '0.02';
 
 sub check {
     my $self = shift;
diff --git a/lib/App/AWS/CloudWatch/Monitor/Check/LoadAvg.pm b/lib/App/AWS/CloudWatch/Monitor/Check/LoadAvg.pm
index 9414c8c..a5bd636 100644
--- a/lib/App/AWS/CloudWatch/Monitor/Check/LoadAvg.pm
+++ b/lib/App/AWS/CloudWatch/Monitor/Check/LoadAvg.pm
@@ -19,7 +19,7 @@ use warnings;
 
 use parent 'App::AWS::CloudWatch::Monitor::Check';
 
-our $VERSION = '0.01';
+our $VERSION = '0.02';
 
 sub check {
     my $self = shift;
diff --git a/lib/App/AWS/CloudWatch/Monitor/Check/Memory.pm b/lib/App/AWS/CloudWatch/Monitor/Check/Memory.pm
index efbca99..82cc7e1 100644
--- a/lib/App/AWS/CloudWatch/Monitor/Check/Memory.pm
+++ b/lib/App/AWS/CloudWatch/Monitor/Check/Memory.pm
@@ -19,7 +19,7 @@ use warnings;
 
 use parent 'App::AWS::CloudWatch::Monitor::Check';
 
-our $VERSION = '0.01';
+our $VERSION = '0.02';
 
 sub check {
     my $self = shift;
diff --git a/lib/App/AWS/CloudWatch/Monitor/Check/Process.pm b/lib/App/AWS/CloudWatch/Monitor/Check/Process.pm
index 8142f81..a487d39 100644
--- a/lib/App/AWS/CloudWatch/Monitor/Check/Process.pm
+++ b/lib/App/AWS/CloudWatch/Monitor/Check/Process.pm
@@ -21,7 +21,7 @@ use parent 'App::AWS::CloudWatch::Monitor::Check';
 
 use Getopt::Long qw(:config pass_through);
 
-our $VERSION = '0.01';
+our $VERSION = '0.02';
 
 sub check {
     my $self = shift;
diff --git a/lib/App/AWS/CloudWatch/Monitor/CloudWatchClient.pm b/lib/App/AWS/CloudWatch/Monitor/CloudWatchClient.pm
index 918bcc5..21c8845 100644
--- a/lib/App/AWS/CloudWatch/Monitor/CloudWatchClient.pm
+++ b/lib/App/AWS/CloudWatch/Monitor/CloudWatchClient.pm
@@ -45,7 +45,7 @@ use LWP 6;
 use LWP::Simple qw($ua get);
 $ua->timeout(2);    # timeout for meta-data calls
 
-our $VERSION = '0.01';
+our $VERSION = '0.02';
 
 our %version_prefix_map = ( '2010-08-01' => [ 'GraniteServiceVersion20100801', 'com.amazonaws.cloudwatch.v2010_08_01#' ] );
 
diff --git a/lib/App/AWS/CloudWatch/Monitor/Config.pm b/lib/App/AWS/CloudWatch/Monitor/Config.pm
index 03e9d70..2ffdfe3 100644
--- a/lib/App/AWS/CloudWatch/Monitor/Config.pm
+++ b/lib/App/AWS/CloudWatch/Monitor/Config.pm
@@ -19,7 +19,7 @@ use warnings;
 
 use Config::Tiny;
 
-our $VERSION = '0.01';
+our $VERSION = '0.02';
 
 sub load {
     my $config = _load_and_verify();
diff --git a/t/lib/App/AWS/CloudWatch/Monitor/Check/TestArgs.pm b/t/lib/App/AWS/CloudWatch/Monitor/Check/TestArgs.pm
index 4166809..4a576f4 100644
--- a/t/lib/App/AWS/CloudWatch/Monitor/Check/TestArgs.pm
+++ b/t/lib/App/AWS/CloudWatch/Monitor/Check/TestArgs.pm
@@ -7,7 +7,7 @@ use parent 'App::AWS::CloudWatch::Monitor::Check';
 
 use Getopt::Long qw(:config pass_through);
 
-our $VERSION = '0.01';
+our $VERSION = '0.02';
 
 sub check {
     my $self = shift;
diff --git a/t/lib/App/AWS/CloudWatch/Monitor/Check/TestSuccess.pm b/t/lib/App/AWS/CloudWatch/Monitor/Check/TestSuccess.pm
index 53d741f..ac00c0d 100644
--- a/t/lib/App/AWS/CloudWatch/Monitor/Check/TestSuccess.pm
+++ b/t/lib/App/AWS/CloudWatch/Monitor/Check/TestSuccess.pm
@@ -5,7 +5,7 @@ use warnings;
 
 use parent 'App::AWS::CloudWatch::Monitor::Check';
 
-our $VERSION = '0.01';
+our $VERSION = '0.02';
 
 sub check {
     my $self = shift;
diff --git a/t/lib/App/AWS/CloudWatch/Monitor/Test.pm b/t/lib/App/AWS/CloudWatch/Monitor/Test.pm
index 22d2c1d..2d93c11 100644
--- a/t/lib/App/AWS/CloudWatch/Monitor/Test.pm
+++ b/t/lib/App/AWS/CloudWatch/Monitor/Test.pm
@@ -5,7 +5,7 @@ use warnings;
 
 use parent 'Test::More';
 
-our $VERSION = '0.01';
+our $VERSION = '0.02';
 
 sub import {
     my $class = shift;
commit 2d46156acbf53371a10c096550d184ed95cf3f0c
Author: Blaine Motsinger <blaine at bestpractical.com>
Date:   Tue May 17 18:52:16 2022 -0500

    Move config.ini.example into examples dir

diff --git a/MANIFEST b/MANIFEST
index 6c34cae..37b3296 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -1,6 +1,6 @@
 bin/aws-cloudwatch-monitor
 Changes
-config.ini.example
+examples/config.ini.example
 lib/App/AWS/CloudWatch/Monitor.pm
 lib/App/AWS/CloudWatch/Monitor/AwsSignatureV4.pm
 lib/App/AWS/CloudWatch/Monitor/Check.pm
diff --git a/config.ini.example b/examples/config.ini.example
similarity index 100%
rename from config.ini.example
rename to examples/config.ini.example
-----------------------------------------------------------------------

Summary of changes:
 Changes                                               | 12 +++++++++++-
 MANIFEST                                              |  2 +-
 bin/aws-cloudwatch-monitor                            |  2 +-
 config.ini.example => examples/config.ini.example     |  0
 lib/App/AWS/CloudWatch/Monitor.pm                     |  2 +-
 lib/App/AWS/CloudWatch/Monitor/AwsSignatureV4.pm      |  2 +-
 lib/App/AWS/CloudWatch/Monitor/Check.pm               |  2 +-
 lib/App/AWS/CloudWatch/Monitor/Check/DiskSpace.pm     |  2 +-
 lib/App/AWS/CloudWatch/Monitor/Check/Inode.pm         |  2 +-
 lib/App/AWS/CloudWatch/Monitor/Check/LoadAvg.pm       |  2 +-
 lib/App/AWS/CloudWatch/Monitor/Check/Memory.pm        |  2 +-
 lib/App/AWS/CloudWatch/Monitor/Check/Process.pm       |  2 +-
 lib/App/AWS/CloudWatch/Monitor/CloudWatchClient.pm    |  2 +-
 lib/App/AWS/CloudWatch/Monitor/Config.pm              |  2 +-
 t/lib/App/AWS/CloudWatch/Monitor/Check/TestArgs.pm    |  2 +-
 t/lib/App/AWS/CloudWatch/Monitor/Check/TestSuccess.pm |  2 +-
 t/lib/App/AWS/CloudWatch/Monitor/Test.pm              |  2 +-
 17 files changed, 26 insertions(+), 16 deletions(-)
 rename config.ini.example => examples/config.ini.example (100%)


hooks/post-receive
-- 
app-aws-cloudwatch-monitor


More information about the Bps-public-commit mailing list