ruby-ldap3 0.10.1 → 0.10.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/ChangeLog +2 -1
- data/NOTES +5 -0
- data/ldap.c +2 -1
- data/rbldap.h +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6d51cc329d450ec3fca95b42e37242982346fd6cd0992588fa6ffb8474137728
|
4
|
+
data.tar.gz: 16d22bdc15149ec2348b55b9b61cf657df1ad16458f2f49a47b4336e3928e458
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4b11f66d6df5076477a42de5d7d6855451bb1782c9134f2d55e798b72b0760b46121f30c37807831949e9981f26892e9c75f0d6fdb209eea83366d6d994f0ebe
|
7
|
+
data.tar.gz: ce21556be3e22b4a3f5c1a4725ecf87ec4d836abd2c873d80f7eb40f1fb926a2b8629007cfbccdfd5a87685945ba4016ba35b82db75b8dc94164ebadaaa6a2c0
|
data/ChangeLog
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
Sun Jan 25 08:00:00 UTC 2024 Shane Curcuru <shane@punderthings.com>
|
2
2
|
* Forked from bearded/ruby-ldap at 3cfab0fd05c9fdf4c92c60d52457a6dadad4c8c0
|
3
3
|
* Renaming to ruby-ldap3 to avoid conflicts
|
4
|
-
* Applying existing PRs
|
4
|
+
* Applying existing PRs and comments from bearded to run on Ruby 3.x
|
5
|
+
* See NOTES for more details and update to 0.10.x
|
5
6
|
|
6
7
|
Wed Jul 11 21:58:38 UTC 2018 Alexey Chebotar <alexey.chebotar@gmail.com>
|
7
8
|
* Version 0.9.20
|
data/NOTES
CHANGED
data/ldap.c
CHANGED
@@ -201,7 +201,8 @@ rb_ldap_hash2mods (VALUE self, VALUE op, VALUE hash)
|
|
201
201
|
VALUE tmp;
|
202
202
|
|
203
203
|
tmp = rb_assoc_new (op, rb_ary_new ());
|
204
|
-
|
204
|
+
/* Explicitly cast value per: https://github.com/bearded/ruby-ldap/issues/47#issuecomment-1645066553 */
|
205
|
+
rb_iterate (rb_each, hash, (rb_block_call_func_t) rb_ldap_hash2mods_i, tmp);
|
205
206
|
|
206
207
|
return rb_ary_entry (tmp, 1);
|
207
208
|
}
|
data/rbldap.h
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby-ldap3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.10.
|
4
|
+
version: 0.10.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shane Curcuru
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2025-01-
|
12
|
+
date: 2025-01-27 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: 'It provides the interface to some LDAP libraries (e.g. OpenLDAP, Netscape
|
15
15
|
SDK and Active Directory). The common API for application development is described
|
@@ -90,7 +90,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
90
90
|
- !ruby/object:Gem::Version
|
91
91
|
version: '0'
|
92
92
|
requirements: []
|
93
|
-
rubygems_version: 3.
|
93
|
+
rubygems_version: 3.4.1
|
94
94
|
signing_key:
|
95
95
|
specification_version: 4
|
96
96
|
summary: Ruby/LDAP is an extension module for Ruby
|