[Bps-public-commit] rt-action-assignunownedtoactor branch master updated. 1.01-5-g0ac7054
BPS Git Server
git at git.bestpractical.com
Fri Mar 4 13:53:14 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-action-assignunownedtoactor".
The branch, master has been updated
via 0ac705413045042a9bd149ea43f5dcea0573e505 (commit)
via 08db26810ac58f59126e2e690b40ab859c0807fb (commit)
via 4d53ed9d6225b9d079e35dd5fdadfbf7711a9823 (commit)
via c0b8db61507b30e5a197991d4a537e8ab8cb9998 (commit)
via a14efead662e07561e2d56c1001087b51874ce7a (commit)
from 038e831ce8ecaefb52fb5624369a8b4e5f39adf8 (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 0ac705413045042a9bd149ea43f5dcea0573e505
Author: sunnavy <sunnavy at bestpractical.com>
Date: Fri Mar 4 21:48:35 2022 +0800
Prep 1.02
diff --git a/CHANGES b/CHANGES
index 4f398ae..9aec778 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,6 @@
+1.02 2022-03-04
+ - Add RT 5 support
+
1.01 2014-12-16
- Packaging updates
diff --git a/MANIFEST b/MANIFEST
index 7af5c86..6e20271 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -12,7 +12,6 @@ inc/Module/Install/RTx.pm
inc/Module/Install/RTx/Runtime.pm
inc/Module/Install/Win32.pm
inc/Module/Install/WriteAll.pm
-inc/unicore/Name.pm
inc/YAML/Tiny.pm
lib/RT/Action/AssignUnownedToActor.pm
Makefile.PL
diff --git a/META.yml b/META.yml
index 3db7522..b173b5b 100644
--- a/META.yml
+++ b/META.yml
@@ -23,6 +23,6 @@ requires:
resources:
license: http://opensource.org/licenses/gpl-license.php
repository: https://github.com/bestpractical/rt-action-assignunownedtoactor
-version: '1.01'
+version: '1.02'
x_module_install_rtx_version: '0.43'
x_requires_rt: 4.0.0
diff --git a/lib/RT/Action/AssignUnownedToActor.pm b/lib/RT/Action/AssignUnownedToActor.pm
index ddc2e2b..0311235 100644
--- a/lib/RT/Action/AssignUnownedToActor.pm
+++ b/lib/RT/Action/AssignUnownedToActor.pm
@@ -2,7 +2,7 @@ use strict;
use warnings;
package RT::Action::AssignUnownedToActor;
-our $VERSION = '1.01';
+our $VERSION = '1.02';
use base qw(RT::Action);
commit 08db26810ac58f59126e2e690b40ab859c0807fb
Merge: 038e831 4d53ed9
Author: sunnavy <sunnavy at bestpractical.com>
Date: Fri Mar 4 21:51:59 2022 +0800
Merge branch 'update-for-rt5'
commit 4d53ed9d6225b9d079e35dd5fdadfbf7711a9823
Author: Jason Crome <jcrome at bestpractical.com>
Date: Thu Mar 3 11:17:09 2022 -0500
Updated docs for RT5
diff --git a/README b/README
index 69e0c8f..d4e8aac 100644
--- a/README
+++ b/README
@@ -2,6 +2,9 @@ NAME
RT-Action-AssignUnownedToActor - Assigns unowned tickets to the
transaction actor
+RT VERSION
+ Works with RT 4, 5.0
+
DESCRIPTION
Assigns tickets to the actor of the transaction that triggered the
scrip, if all the conditions below are met:
@@ -29,7 +32,7 @@ INSTALLATION
If you are upgrading this module, check for upgrading instructions
in case changes need to be made to your database.
- Edit your /opt/rt4/etc/RT_SiteConfig.pm
+ Edit your /opt/rt5/etc/RT_SiteConfig.pm
If you are using RT 4.2 or greater, add this line:
Plugin('RT::Action::AssignUnownedToActor');
@@ -56,7 +59,7 @@ BUGS
L<rt.cpan.org|http://rt.cpan.org/Public/Dist/Display.html?Name=RT-Action-AssignUnownedToActor>.
LICENSE AND COPYRIGHT
- This software is Copyright (c) 2011-2014 by Best Pracical Solutions,
+ This software is Copyright (c) 2011-2022 by Best Pracical Solutions,
LLC.
This is free software, licensed under:
diff --git a/lib/RT/Action/AssignUnownedToActor.pm b/lib/RT/Action/AssignUnownedToActor.pm
index b706c87..ddc2e2b 100644
--- a/lib/RT/Action/AssignUnownedToActor.pm
+++ b/lib/RT/Action/AssignUnownedToActor.pm
@@ -47,6 +47,10 @@ sub Commit {
RT-Action-AssignUnownedToActor - Assigns unowned tickets to the transaction actor
+=head1 RT VERSION
+
+Works with RT 4, 5.0
+
=head1 DESCRIPTION
Assigns tickets to the actor of the transaction that triggered the
@@ -89,7 +93,7 @@ in your database.
If you are upgrading this module, check for upgrading instructions
in case changes need to be made to your database.
-=item Edit your F</opt/rt4/etc/RT_SiteConfig.pm>
+=item Edit your F</opt/rt5/etc/RT_SiteConfig.pm>
If you are using RT 4.2 or greater, add this line:
@@ -121,7 +125,7 @@ or via the web at
=head1 LICENSE AND COPYRIGHT
-This software is Copyright (c) 2011-2014 by Best Pracical Solutions, LLC.
+This software is Copyright (c) 2011-2022 by Best Pracical Solutions, LLC.
This is free software, licensed under:
-----------------------------------------------------------------------
Summary of changes:
CHANGES | 3 +
MANIFEST | 1 -
META.yml | 6 +-
Makefile.PL | 1 +
README | 7 +-
inc/Module/Install.pm | 35 +--
inc/Module/Install/Base.pm | 2 +-
inc/Module/Install/Can.pm | 13 +-
inc/Module/Install/Fetch.pm | 2 +-
inc/Module/Install/Include.pm | 2 +-
inc/Module/Install/Makefile.pm | 2 +-
inc/Module/Install/Metadata.pm | 2 +-
inc/Module/Install/RTx.pm | 81 +++++--
inc/Module/Install/RTx/Runtime.pm | 1 +
inc/Module/Install/ReadmeFromPod.pm | 76 +++++--
inc/Module/Install/Win32.pm | 2 +-
inc/Module/Install/WriteAll.pm | 2 +-
inc/YAML/Tiny.pm | 37 ++-
inc/unicore/Name.pm | 417 ----------------------------------
lib/RT/Action/AssignUnownedToActor.pm | 10 +-
20 files changed, 193 insertions(+), 509 deletions(-)
delete mode 100644 inc/unicore/Name.pm
hooks/post-receive
--
rt-action-assignunownedtoactor
More information about the Bps-public-commit
mailing list