Skip to content

Commit

Permalink
Changes for 0.35
Browse files Browse the repository at this point in the history
  • Loading branch information
gbarr committed Mar 30, 2008
1 parent 1a3869c commit f246e55
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 12 deletions.
17 changes: 17 additions & 0 deletions Changes
@@ -1,3 +1,20 @@
perl-ldap 0.35 -- Sun Mar 30 13:35:04 CDT 2008
==============================================

Bug Fixes
* Fix wrapping in Net::LDAP::LDIF
* Patch from Gergely Santa to allow entries with no attributes in LDIF
* Fix modr?dn to fetch values in sclar context
* send packets in sizes that IO::Socket::SSL can chew
* Avoid attept to use undef as hash reference in ->sync
* Ensure Bind.pm presents final server response to SASL object

Enhancements
* Added vendorName/vendorVersion (RFC 3045) to root_dse()
* add option to support IPv6
* Allow Entry->deleted to be called with a single value is well as array ref
* Added Net::LDAP::Control::PasswordPolicy to support draft RFC

perl-ldap 0.34 -- Sat Feb 10 17:39:49 CST 2007 perl-ldap 0.34 -- Sat Feb 10 17:39:49 CST 2007
============================================== ==============================================


Expand Down
2 changes: 1 addition & 1 deletion MANIFEST
Expand Up @@ -53,13 +53,13 @@ lib/Net/LDAP/Control.pm
lib/Net/LDAP/Control/EntryChange.pm lib/Net/LDAP/Control/EntryChange.pm
lib/Net/LDAP/Control/ManageDsaIT.pm lib/Net/LDAP/Control/ManageDsaIT.pm
lib/Net/LDAP/Control/Paged.pm lib/Net/LDAP/Control/Paged.pm
lib/Net/LDAP/Control/PasswordPolicy.pm
lib/Net/LDAP/Control/PersistentSearch.pm lib/Net/LDAP/Control/PersistentSearch.pm
lib/Net/LDAP/Control/ProxyAuth.pm lib/Net/LDAP/Control/ProxyAuth.pm
lib/Net/LDAP/Control/Sort.pm lib/Net/LDAP/Control/Sort.pm
lib/Net/LDAP/Control/SortResult.pm lib/Net/LDAP/Control/SortResult.pm
lib/Net/LDAP/Control/VLV.pm lib/Net/LDAP/Control/VLV.pm
lib/Net/LDAP/Control/VLVResponse.pm lib/Net/LDAP/Control/VLVResponse.pm
lib/Net/LDAP/Control/PasswordPolicy.pm
lib/Net/LDAP/DSML.pm lib/Net/LDAP/DSML.pm
lib/Net/LDAP/Entry.pm lib/Net/LDAP/Entry.pm
lib/Net/LDAP/Entry.pod lib/Net/LDAP/Entry.pod
Expand Down
13 changes: 6 additions & 7 deletions Makefile.PL
Expand Up @@ -2,6 +2,8 @@


use inc::Module::Install; use inc::Module::Install;


perl_version 5.004;

name ('perl-ldap'); name ('perl-ldap');
module_name ('Net::LDAP'); module_name ('Net::LDAP');
author ('Graham Barr <gbarr@cpan.org>'); author ('Graham Barr <gbarr@cpan.org>');
Expand All @@ -13,10 +15,7 @@ sign(1);


check_nmake(); # check and download nmake.exe for Win32 check_nmake(); # check and download nmake.exe for Win32


requires( requires ( 'Convert::ASN1' => 0.07);
perl => 5.004,
'Convert::ASN1' => 0.07,
);


include_deps ('Test::More'); include_deps ('Test::More');
include ('ExtUtils::AutoInstall'); include ('ExtUtils::AutoInstall');
Expand All @@ -25,9 +24,9 @@ features(
'SASL authentication' => [ 'SASL authentication' => [
-default => 0, -default => 0,
'Authen::SASL' => '2.00', 'Authen::SASL' => '2.00',
recommends('Digest::MD5'), # for DIGEST-MD5 SASL mech #recommends('Digest::MD5'), # for DIGEST-MD5 SASL mech
recommends('Digest::HMAC_MD5'), # for CRAM-MD5 SASL mech #recommends('Digest::HMAC_MD5'), # for CRAM-MD5 SASL mech
recommends('GSSAPI'), # for GSSAPI SASL mech #recommends('GSSAPI'), # for GSSAPI SASL mech
], ],
'LDAP URLs' => [ 'LDAP URLs' => [
-default => 0, -default => 0,
Expand Down
2 changes: 1 addition & 1 deletion lib/Net/LDAP.pm
Expand Up @@ -28,7 +28,7 @@ use Net::LDAP::Constant qw(LDAP_SUCCESS
LDAP_UNAVAILABLE LDAP_UNAVAILABLE
); );


$VERSION = "0.34_03"; $VERSION = "0.35";
@ISA = qw(Tie::StdHash Net::LDAP::Extra); @ISA = qw(Tie::StdHash Net::LDAP::Extra);
$LDAP_VERSION = 3; # default LDAP protocol version $LDAP_VERSION = 3; # default LDAP protocol version


Expand Down
2 changes: 1 addition & 1 deletion lib/Net/LDAP/Bind.pm
Expand Up @@ -10,7 +10,7 @@ use Net::LDAP qw(LDAP_SASL_BIND_IN_PROGRESS LDAP_DECODING_ERROR LDAP_SUCCESS
use Net::LDAP::Message; use Net::LDAP::Message;
use vars qw(@ISA $VERSION); use vars qw(@ISA $VERSION);


$VERSION = "1.02_1"; $VERSION = "1.03";
@ISA = qw(Net::LDAP::Message); @ISA = qw(Net::LDAP::Message);


sub _sasl_info { sub _sasl_info {
Expand Down
2 changes: 1 addition & 1 deletion lib/Net/LDAP/Entry.pm
Expand Up @@ -17,7 +17,7 @@ BEGIN {
} }




$VERSION = "0.23_2"; $VERSION = "0.24";


sub new { sub new {
my $self = shift; my $self = shift;
Expand Down
2 changes: 1 addition & 1 deletion lib/Net/LDAP/LDIF.pm
Expand Up @@ -17,7 +17,7 @@ BEGIN {
} }




$VERSION = "0.17_02"; $VERSION = "0.18";


my %mode = qw(w > r < a >>); my %mode = qw(w > r < a >>);


Expand Down

0 comments on commit f246e55

Please sign in to comment.