Skip to content

Commit 73b8fad

Browse files
author
Austin Ziegler
committed
Documenting new changes in History.rdoc.
1 parent 7ae8e28 commit 73b8fad

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

History.rdoc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,12 @@
1212
previously only known as Filter.pres.
1313
* Cleaned up Net::LDAP::Filter::FilterParser to handle branches better.
1414
Fixed some of the regular expressions to be more canonically defined.
15+
* Correctly handles single-branch branches.
1516
* Cleaned up the string representation of Filter objects.
1617
* Added experimental support for RFC4515 extensible matching (e.g.,
1718
"(cn:caseExactMatch:=Fred Flintstone)"); provided by "nowhereman".
19+
* Net::LDAP::DN class representing an automatically escaping/unescaping
20+
distinguished name for LDAP queries.
1821
* Minor Enhancements:
1922
* SSL capabilities will be enabled or disabled based on whether we can load
2023
OpenSSL successfully or not.
@@ -23,6 +26,7 @@
2326
related to BER-encoding values. This will make extracting Net::BER from
2427
Net::LDAP easier in the future.
2528
* Added some unit tests for the BER core extensions.
29+
* Paging controls are only sent where they are supported.
2630
* Documentation Changes:
2731
* Core class extension methods under Net::BER.
2832
* Extensive changes to Net::BER documentation.

Manifest.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ lib/net/ber/core_ext/string.rb
2020
lib/net/ber/core_ext/true_class.rb
2121
lib/net/ldap.rb
2222
lib/net/ldap/dataset.rb
23+
lib/net/ldap/dn.rb
2324
lib/net/ldap/entry.rb
2425
lib/net/ldap/filter.rb
2526
lib/net/ldap/password.rb
@@ -31,6 +32,7 @@ spec/spec.opts
3132
spec/spec_helper.rb
3233
spec/unit/ber/ber_spec.rb
3334
spec/unit/ber/core_ext/string_spec.rb
35+
spec/unit/ldap/dn_spec.rb
3436
spec/unit/ldap/entry_spec.rb
3537
spec/unit/ldap/filter_spec.rb
3638
spec/unit/ldap_spec.rb

net-ldap.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Gem::Specification.new do |s|
44
s.name = %q{net-ldap}
5-
s.version = "0.2.20110317215300"
5+
s.version = "0.2.20110317223538"
66

77
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
88
s.authors = ["Francis Cianfrocca", "Emiel van de Laar", "Rory O'Connell", "Kaspar Schiess", "Austin Ziegler"]
@@ -20,7 +20,7 @@ Our roadmap for Net::LDAP 1.0 is to gain full <em>client</em> compliance with
2020
the most recent LDAP RFCs (4510–4519, plutions of 4520–4532).}
2121
s.email = ["blackhedd@rubyforge.org", "gemiel@gmail.com", "rory.ocon@gmail.com", "kaspar.schiess@absurd.li", "austin@rubyforge.org"]
2222
s.extra_rdoc_files = ["Manifest.txt", "Contributors.rdoc", "Hacking.rdoc", "History.rdoc", "License.rdoc", "README.rdoc"]
23-
s.files = [".autotest", ".rspec", "Contributors.rdoc", "Hacking.rdoc", "History.rdoc", "License.rdoc", "Manifest.txt", "README.rdoc", "Rakefile", "autotest/discover.rb", "lib/net-ldap.rb", "lib/net/ber.rb", "lib/net/ber/ber_parser.rb", "lib/net/ber/core_ext.rb", "lib/net/ber/core_ext/array.rb", "lib/net/ber/core_ext/bignum.rb", "lib/net/ber/core_ext/false_class.rb", "lib/net/ber/core_ext/fixnum.rb", "lib/net/ber/core_ext/string.rb", "lib/net/ber/core_ext/true_class.rb", "lib/net/ldap.rb", "lib/net/ldap/dataset.rb", "lib/net/ldap/entry.rb", "lib/net/ldap/filter.rb", "lib/net/ldap/password.rb", "lib/net/ldap/pdu.rb", "lib/net/snmp.rb", "net-ldap.gemspec", "spec/integration/ssl_ber_spec.rb", "spec/spec.opts", "spec/spec_helper.rb", "spec/unit/ber/ber_spec.rb", "spec/unit/ber/core_ext/string_spec.rb", "spec/unit/ldap/entry_spec.rb", "spec/unit/ldap/filter_spec.rb", "spec/unit/ldap_spec.rb", "test/common.rb", "test/test_entry.rb", "test/test_filter.rb", "test/test_ldap_connection.rb", "test/test_ldif.rb", "test/test_password.rb", "test/test_rename.rb", "test/test_snmp.rb", "test/testdata.ldif", "testserver/ldapserver.rb", "testserver/testdata.ldif", ".gemtest"]
23+
s.files = [".autotest", ".rspec", "Contributors.rdoc", "Hacking.rdoc", "History.rdoc", "License.rdoc", "Manifest.txt", "README.rdoc", "Rakefile", "autotest/discover.rb", "lib/net-ldap.rb", "lib/net/ber.rb", "lib/net/ber/ber_parser.rb", "lib/net/ber/core_ext.rb", "lib/net/ber/core_ext/array.rb", "lib/net/ber/core_ext/bignum.rb", "lib/net/ber/core_ext/false_class.rb", "lib/net/ber/core_ext/fixnum.rb", "lib/net/ber/core_ext/string.rb", "lib/net/ber/core_ext/true_class.rb", "lib/net/ldap.rb", "lib/net/ldap/dataset.rb", "lib/net/ldap/dn.rb", "lib/net/ldap/entry.rb", "lib/net/ldap/filter.rb", "lib/net/ldap/password.rb", "lib/net/ldap/pdu.rb", "lib/net/snmp.rb", "net-ldap.gemspec", "spec/integration/ssl_ber_spec.rb", "spec/spec.opts", "spec/spec_helper.rb", "spec/unit/ber/ber_spec.rb", "spec/unit/ber/core_ext/string_spec.rb", "spec/unit/ldap/dn_spec.rb", "spec/unit/ldap/entry_spec.rb", "spec/unit/ldap/filter_spec.rb", "spec/unit/ldap_spec.rb", "test/common.rb", "test/test_entry.rb", "test/test_filter.rb", "test/test_ldap_connection.rb", "test/test_ldif.rb", "test/test_password.rb", "test/test_rename.rb", "test/test_snmp.rb", "test/testdata.ldif", "testserver/ldapserver.rb", "testserver/testdata.ldif", ".gemtest"]
2424
s.homepage = %q{http://net-ldap.rubyforge.org/}
2525
s.rdoc_options = ["--main", "README.rdoc"]
2626
s.require_paths = ["lib"]

0 commit comments

Comments
 (0)