[Bps-public-commit] RT-Extension-LDAPImport branch, master, updated. 0.31_01-2-g90c8c22
Kevin Falcone
falcone at bestpractical.com
Tue Dec 14 12:51:21 EST 2010
The branch, master has been updated
via 90c8c2278a432ebb1b7b60e80e87e0807ba33205 (commit)
via 3027c810d9eebf3e8f0e38d14d469b73f349c397 (commit)
from eb93fc34a415f67d46cac26240b4cc2763499ae5 (commit)
Summary of changes:
Changes | 11 +++++++++++
META.yml | 4 ++--
Makefile.PL | 2 +-
README | 4 ++--
inc/Module/Install/RTx.pm | 2 +-
lib/RT/Extension/LDAPImport.pm | 2 +-
6 files changed, 18 insertions(+), 7 deletions(-)
- Log -----------------------------------------------------------------
commit 3027c810d9eebf3e8f0e38d14d469b73f349c397
Author: Kevin Falcone <falcone at bestpractical.com>
Date: Tue Dec 14 12:49:55 2010 -0500
better doc for LDAPUpdateOnly
diff --git a/README b/README
index 09f47bd..92edfe4 100644
--- a/README
+++ b/README
@@ -76,8 +76,8 @@ data with data from LDAP.
Should we import new users or just update existing ones?
By default, we create users who don't exist in RT but do
match your LDAP filter and obey $LDAPUpdateUsers for existing
-users. This setting overrides $LDAPUpdateUsers but skips users
-who can't be found in RT.
+users. This setting overrides $LDAPUpdateUsers but won't create
+users who are found in LDAP but not in RT.
Set($LDAPUpdateOnly,1);
Where to search for groups to import
commit 90c8c2278a432ebb1b7b60e80e87e0807ba33205
Author: Kevin Falcone <falcone at bestpractical.com>
Date: Tue Dec 14 12:50:38 2010 -0500
Prepare 0.31_02 release
diff --git a/Changes b/Changes
index addc873..690b609 100644
--- a/Changes
+++ b/Changes
@@ -1,4 +1,15 @@
Revision history for RT-Extension-LDAPImport
+0.31_02
+ packaging fix since Module::Install doesn't support
+ require(RT => '3.6.3'); as well as it could
+ doc updates
+
+0.31_01
+ Many new features, primary among them, we now support
+ importing groups from LDAP and managing group memberships
+
+0.20_01
+ Integrate a number of patches and suggestions from Robert Nesius
0.07
Documentation fixes
diff --git a/META.yml b/META.yml
index 0f31420..eae5005 100644
--- a/META.yml
+++ b/META.yml
@@ -24,8 +24,8 @@ requires:
Class::Accessor: 0
Net::LDAP: 0
Net::LDAP::Server::Test: 0
- RT: 3.6.3
+ RT: 0
Test::More: 0
resources:
license: http://dev.perl.org/licenses/
-version: 0.31_01
+version: 0.31_02
diff --git a/Makefile.PL b/Makefile.PL
index 53c481d..07a57e1 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -8,7 +8,7 @@ all_from('lib/RT/Extension/LDAPImport.pm');
requires('Test::More');
requires('Net::LDAP');
-requires('RT' => '3.6.3');
+requires('RT');
requires('Class::Accessor');
feature "Proper Testing" =>
diff --git a/inc/Module/Install/RTx.pm b/inc/Module/Install/RTx.pm
index b780a6c..bd13f00 100644
--- a/inc/Module/Install/RTx.pm
+++ b/inc/Module/Install/RTx.pm
@@ -8,7 +8,7 @@ no warnings 'once';
use Module::Install::Base;
use base 'Module::Install::Base';
-our $VERSION = '0.25';
+our $VERSION = '0.26';
use FindBin;
use File::Glob ();
diff --git a/lib/RT/Extension/LDAPImport.pm b/lib/RT/Extension/LDAPImport.pm
index 48b8ac6..153d0c7 100644
--- a/lib/RT/Extension/LDAPImport.pm
+++ b/lib/RT/Extension/LDAPImport.pm
@@ -1,6 +1,6 @@
package RT::Extension::LDAPImport;
-our $VERSION = '0.31_01';
+our $VERSION = '0.31_02';
use warnings;
use strict;
-----------------------------------------------------------------------
More information about the Bps-public-commit
mailing list