ruby-ldapserver 0.5.2 → 0.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/ChangeLog +5 -0
- data/lib/ldap/server/operation.rb +1 -1
- data/lib/ldap/server/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 13158eb5295138dfdbb01e8cb277458235ccbab1
|
|
4
|
+
data.tar.gz: 70edb984eda164cc752e967429a348c2370ff852
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b085680909cc6b880a148a15e343d72204ccf2833c627b293d6d803289713a9e27c661e7637b173fe86f03863e3918e2309a0e768c3386b677bbac0eec3233c4
|
|
7
|
+
data.tar.gz: 8370ea4fade64ee468dc835aa7dd8bc0113cae914f8f9e07fa8e1e420ad875a2b2a2055eba6b6f4203361fcdf05408bbd970160e78d370b7caf44091217c867e
|
data/.gitignore
CHANGED
data/ChangeLog
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
0.5.3
|
|
2
|
+
* Handle BN as client_timelimit; fixes incompatibility with some LDAP
|
|
3
|
+
implementations (notably Shibboleth IdP v2 and proftpd).
|
|
4
|
+
(Patch by Pete Birkinshaw.)
|
|
5
|
+
|
|
1
6
|
0.5.2
|
|
2
7
|
* Make sure the exception used to stop the child doesn't propagate up (patch by Kasumi Hanazuki)
|
|
3
8
|
|
|
@@ -243,7 +243,7 @@ class Server
|
|
|
243
243
|
scope = protocolOp.value[1].value
|
|
244
244
|
deref = protocolOp.value[2].value
|
|
245
245
|
client_sizelimit = protocolOp.value[3].value
|
|
246
|
-
client_timelimit = protocolOp.value[4].value
|
|
246
|
+
client_timelimit = protocolOp.value[4].value.to_i
|
|
247
247
|
@typesOnly = protocolOp.value[5].value
|
|
248
248
|
filter = Filter::parse(protocolOp.value[6], @schema)
|
|
249
249
|
@attributes = protocolOp.value[7].value.collect {|x| x.value}
|
data/lib/ldap/server/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruby-ldapserver
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brian Candler
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-08-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|