[Bps-public-commit] rt-extension-rest2 branch, master, updated. 1.09-21-g7a8b273
Jim Brandt
jbrandt at bestpractical.com
Fri Feb 12 16:29:45 EST 2021
The branch, master has been updated
via 7a8b27336c6470c69bcb4ceaa7bea75c1e6ee0d9 (commit)
via c62bd8b146d48654a0ab0d47c39d310af45f00e7 (commit)
via 51273ab8cf843db68441ce0404ed87bc4b73d82c (commit)
via ff638a47de5aafa2fb8ac7346ffb194f3a6d355b (commit)
via c872a559e24603e3b37f4517c627d4bc6ec1d006 (commit)
via 0260bd08cd710a579045e0c26d80989d7bea92df (commit)
from 3d6b9fa1b4069be63f2262796bded3156c43c120 (commit)
Summary of changes:
Changes | 10 ++++-
MANIFEST | 1 +
META.yml | 2 +-
lib/RT/Extension/REST2.pm | 2 +-
lib/RT/Extension/REST2/Resource/Message.pm | 20 +++++++++
lib/RT/Extension/REST2/Resource/Ticket.pm | 67 +++++++++++++++++++++++-------
lib/RT/Extension/REST2/Util.pm | 5 +++
xt/ticket-customroles.t | 44 ++++++++++++++++++++
8 files changed, 134 insertions(+), 17 deletions(-)
- Log -----------------------------------------------------------------
commit 51273ab8cf843db68441ce0404ed87bc4b73d82c
Merge: 3d6b9fa ff638a4
Author: Jim Brandt <jbrandt at bestpractical.com>
Date: Fri Feb 12 14:47:38 2021 -0500
Merge branch 'add-validation-methods'
commit c62bd8b146d48654a0ab0d47c39d310af45f00e7
Merge: 51273ab c872a55
Author: Jim Brandt <jbrandt at bestpractical.com>
Date: Fri Feb 12 14:48:59 2021 -0500
Merge branch 'handle-absent-custom-role-groups'
commit 7a8b27336c6470c69bcb4ceaa7bea75c1e6ee0d9
Author: Jim Brandt <jbrandt at bestpractical.com>
Date: Fri Feb 12 16:26:53 2021 -0500
Prep 1.10 release
diff --git a/Changes b/Changes
index b1952a8..800550d 100644
--- a/Changes
+++ b/Changes
@@ -1,7 +1,15 @@
Revision history for RT-Extension-REST2
-1.09 2020-05-04
+1.10 2021-02-12
+ - Various documentation fixes and updates
+ - Avoid errors for lazy-created custom role groups that may not
+ exist yet
+ - Grant SeeQueue in some tests to align with changes in RT
+ - Allow Status updates on correspond/comment
+ - Allow CustomRoles updates on correspond/comment
+ - Move validation to stand-alone methods for ticket updates
+1.09 2020-05-04
- Allow searches to return disabled objects with
'find_disabled_rows=1'(Thanks gibus!)
- Improve the user experience of pagination(Thanks puck!)
diff --git a/MANIFEST b/MANIFEST
index fae739a..7f28e75 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -88,6 +88,7 @@ xt/queues.t
xt/root.t
xt/search-json.t
xt/search-simple.t
+xt/ticket-correspond-customroles.t
xt/ticket-customfields.t
xt/ticket-customroles.t
xt/ticket-links.t
diff --git a/META.yml b/META.yml
index 1695a39..4a063c4 100644
--- a/META.yml
+++ b/META.yml
@@ -43,7 +43,7 @@ requires:
perl: 5.10.1
resources:
license: http://opensource.org/licenses/gpl-license.php
-version: '1.09'
+version: '1.10'
x_module_install_rtx_version: '0.42'
x_requires_rt: 4.2.4
x_rt_too_new: 5.0.0
diff --git a/lib/RT/Extension/REST2.pm b/lib/RT/Extension/REST2.pm
index 3416ad5..f8123b5 100644
--- a/lib/RT/Extension/REST2.pm
+++ b/lib/RT/Extension/REST2.pm
@@ -4,7 +4,7 @@ use 5.010001;
package RT::Extension::REST2;
-our $VERSION = '1.09';
+our $VERSION = '1.10';
our $REST_PATH = '/REST/2.0';
use Plack::Builder;
-----------------------------------------------------------------------
More information about the Bps-public-commit
mailing list