[Bps-public-commit] RT-Extension-MandatoryOnTransition branch master updated. 0.21-6-g73a1b3d

BPS Git Server git at git.bestpractical.com
Wed Jul 13 20:34:07 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 "RT-Extension-MandatoryOnTransition".

The branch, master has been updated
       via  73a1b3d1a5edf7485a5be03098cc173d47e85fdd (commit)
       via  177668ca43832ffdfc60fdc850d6cd3c37efdd95 (commit)
      from  ba37835910e5ea883a977dce12b9e88a895b4154 (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 73a1b3d1a5edf7485a5be03098cc173d47e85fdd
Author: sunnavy <sunnavy at bestpractical.com>
Date:   Thu Jul 14 04:25:44 2022 +0800

    Prep 0.22

diff --git a/Changes b/Changes
index b04c527..14d4d8a 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Revision history for RT-Extension-MandatoryOnTransition
 
+0.22 2022-07-13
+ - Add RTIR support
+
 0.21 2021-10-29
  - Call RT method CustomFieldValueIsEmpty to perform additional custom
    field checks. This specifically improves checks for date custom fields
diff --git a/MANIFEST b/MANIFEST
index 0cdd251..348657e 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -5,6 +5,9 @@ html/Callbacks/RT-Extension-MandatoryOnTransition/Helpers/TicketUpdate/ProcessAr
 html/Callbacks/RT-Extension-MandatoryOnTransition/m/ticket/create/BeforeCreate
 html/Callbacks/RT-Extension-MandatoryOnTransition/m/ticket/reply/AfterWorked
 html/Callbacks/RT-Extension-MandatoryOnTransition/m/ticket/reply/BeforeUpdate
+html/Callbacks/RT-Extension-MandatoryOnTransition/RTIR/Incident/Elements/ReplyForm/AfterWorked
+html/Callbacks/RT-Extension-MandatoryOnTransition/RTIR/Incident/Reply/index.html/BeforeUpdate
+html/Callbacks/RT-Extension-MandatoryOnTransition/RTIR/Update.html/BeforeUpdate
 html/Callbacks/RT-Extension-MandatoryOnTransition/Ticket/Create.html/BeforeCreate
 html/Callbacks/RT-Extension-MandatoryOnTransition/Ticket/Display.html/BeforeProcessArguments
 html/Callbacks/RT-Extension-MandatoryOnTransition/Ticket/Elements/EditBasics/MassageFields
diff --git a/META.yml b/META.yml
index 4d578c0..cc8e535 100644
--- a/META.yml
+++ b/META.yml
@@ -27,6 +27,6 @@ requires:
 resources:
   license: http://opensource.org/licenses/gpl-license.php
   repository: https://github.com/bestpractical/rt-extension-mandatoryontransition
-version: '0.21'
+version: '0.22'
 x_module_install_rtx_version: '0.43'
 x_requires_rt: 4.0.9
diff --git a/README b/README
index 1268a30..230e95a 100644
--- a/README
+++ b/README
@@ -330,7 +330,7 @@ BUGS
         L<rt.cpan.org|http://rt.cpan.org/Public/Dist/Display.html?Name=RT-Extension-MandatoryOnTransition>.
 
 LICENSE AND COPYRIGHT
-    This software is Copyright (c) 2012-2020 by Best Pracical Solutions,
+    This software is Copyright (c) 2012-2022 by Best Pracical Solutions,
     LLC.
 
     This is free software, licensed under:
diff --git a/lib/RT/Extension/MandatoryOnTransition.pm b/lib/RT/Extension/MandatoryOnTransition.pm
index 5cc3a78..41d9357 100644
--- a/lib/RT/Extension/MandatoryOnTransition.pm
+++ b/lib/RT/Extension/MandatoryOnTransition.pm
@@ -2,7 +2,7 @@ use strict;
 use warnings;
 package RT::Extension::MandatoryOnTransition;
 
-our $VERSION = '0.21';
+our $VERSION = '0.22';
 
 =head1 NAME
 
@@ -991,7 +991,7 @@ or via the web at
 
 =head1 LICENSE AND COPYRIGHT
 
-This software is Copyright (c) 2012-2020 by Best Pracical Solutions, LLC.
+This software is Copyright (c) 2012-2022 by Best Pracical Solutions, LLC.
 
 This is free software, licensed under:
 

commit 177668ca43832ffdfc60fdc850d6cd3c37efdd95
Author: sunnavy <sunnavy at bestpractical.com>
Date:   Thu Jul 14 04:25:27 2022 +0800

    Update M:I:RTx to 0.43

diff --git a/META.yml b/META.yml
index bcd92ef..4d578c0 100644
--- a/META.yml
+++ b/META.yml
@@ -28,5 +28,5 @@ resources:
   license: http://opensource.org/licenses/gpl-license.php
   repository: https://github.com/bestpractical/rt-extension-mandatoryontransition
 version: '0.21'
-x_module_install_rtx_version: '0.42'
+x_module_install_rtx_version: '0.43'
 x_requires_rt: 4.0.9
diff --git a/inc/Module/Install/RTx.pm b/inc/Module/Install/RTx.pm
index 2dd9489..2889ece 100644
--- a/inc/Module/Install/RTx.pm
+++ b/inc/Module/Install/RTx.pm
@@ -9,7 +9,7 @@ no warnings 'once';
 use Term::ANSIColor qw(:constants);
 use Module::Install::Base;
 use base 'Module::Install::Base';
-our $VERSION = '0.42';
+our $VERSION = '0.43';
 
 use FindBin;
 use File::Glob     ();
@@ -134,7 +134,7 @@ lexicons ::
     if( $extra_args->{'remove_files'} ){
         $self->include('Module::Install::RTx::Remove');
         our @remove_files;
-        eval { require "etc/upgrade/remove_files" }
+        eval { require "./etc/upgrade/remove_files" }
           or print "No remove file located, no files to remove\n";
         $remove_files = join ",", map {"q(\$(DESTDIR)$plugin_path/$name/$_)"} @remove_files;
     }

-----------------------------------------------------------------------

Summary of changes:
 Changes                                   | 3 +++
 MANIFEST                                  | 3 +++
 META.yml                                  | 4 ++--
 README                                    | 2 +-
 inc/Module/Install/RTx.pm                 | 4 ++--
 lib/RT/Extension/MandatoryOnTransition.pm | 4 ++--
 6 files changed, 13 insertions(+), 7 deletions(-)


hooks/post-receive
-- 
RT-Extension-MandatoryOnTransition


More information about the Bps-public-commit mailing list