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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fb487768946c1d6ad6532ed0f6a1f993202ba23b
4
- data.tar.gz: 34e4d89ac933c6d4916d8df082d9e02e8ac48d02
3
+ metadata.gz: 13158eb5295138dfdbb01e8cb277458235ccbab1
4
+ data.tar.gz: 70edb984eda164cc752e967429a348c2370ff852
5
5
  SHA512:
6
- metadata.gz: 019f96b0e7586bc91c578db37c0a10b58aa9a6599879d9483c2651d9f7704742d80640dd17ed88dad60fa1a3c7e4501fde1c53167edfa1dc886136c279f6d04a
7
- data.tar.gz: d571397a73402c511890a01c59d35469bcd461acb929b3535658d2e7eb0c0e03573fc9bdbc5a96a7ca7b37de4c820ed361df9bc09605e125095c988be605019b
6
+ metadata.gz: b085680909cc6b880a148a15e343d72204ccf2833c627b293d6d803289713a9e27c661e7637b173fe86f03863e3918e2309a0e768c3386b677bbac0eec3233c4
7
+ data.tar.gz: 8370ea4fade64ee468dc835aa7dd8bc0113cae914f8f9e07fa8e1e420ad875a2b2a2055eba6b6f4203361fcdf05408bbd970160e78d370b7caf44091217c867e
data/.gitignore CHANGED
@@ -1,2 +1,3 @@
1
1
  Gemfile.lock
2
2
  pkg
3
+ .idea
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}
@@ -1,5 +1,5 @@
1
1
  module LDAP #:nodoc:
2
2
  class Server #:nodoc:
3
- VERSION = '0.5.2'
3
+ VERSION = '0.5.3'
4
4
  end
5
5
  end
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.2
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-06-24 00:00:00.000000000 Z
11
+ date: 2015-08-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler