ruby-ldap3 0.10.2 → 0.10.4
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 +9 -0
- data/rbldap.h +4 -4
- 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: dfab3dd68d24407fe192ef81c6ebe0124a3792500f9bb39e8dcf7ff000d2af01
|
4
|
+
data.tar.gz: 50d447f19070a4f534e4ddbb91f51937d162b69b5c07f81583f14ef8e320f6be
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d371b29d079658c2992a5cb32d4fafc3951f263955e57bad42c71af7db010e022c774fa1056418663cba01b73dde50a522905eaf4fda990205c19f6b13de63fe
|
7
|
+
data.tar.gz: 87fe1c675c09658e737c631ea25c408b77e6736cf85232fcafea8e43f87a837c5fec7734bda0867ce7735c5692bdc68a972db17450aa109311ed02dc08de9835
|
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
@@ -1,3 +1,12 @@
|
|
1
|
+
0.10.4
|
2
|
+
------
|
3
|
+
* Fix up RB_LDAP_MINOR_VERSION and RB_LDAP_PATCH_VERSION to agree with RB_LDAP_VERSION
|
4
|
+
|
5
|
+
0.10.3
|
6
|
+
-----
|
7
|
+
* Cast (rb_block_call_func_t) per https://github.com/bearded/ruby-ldap/issues/47#issuecomment-1645066553
|
8
|
+
* Rebuild and push correct gem to Rubygems
|
9
|
+
|
1
10
|
0.10.1
|
2
11
|
-----
|
3
12
|
* bearded/ruby-ldap PRs 44, 45, 46 pulled up
|
data/rbldap.h
CHANGED
@@ -25,10 +25,10 @@
|
|
25
25
|
# define LDAP_OPT_ERROR (-1)
|
26
26
|
#endif
|
27
27
|
|
28
|
-
#define RB_LDAP_MAJOR_VERSION 0
|
29
|
-
#define RB_LDAP_MINOR_VERSION
|
30
|
-
#define RB_LDAP_PATCH_VERSION
|
31
|
-
#define RB_LDAP_VERSION "0.10.
|
28
|
+
#define RB_LDAP_MAJOR_VERSION 0 /* Must agree with RB_LDAP_VERSION below */
|
29
|
+
#define RB_LDAP_MINOR_VERSION 10 /* Must agree with RB_LDAP_VERSION below */
|
30
|
+
#define RB_LDAP_PATCH_VERSION 4 /* Must agree with RB_LDAP_VERSION below */
|
31
|
+
#define RB_LDAP_VERSION "0.10.4" /* This must agree with the numeric version parts above */
|
32
32
|
|
33
33
|
#define LDAP_GET_OPT_MAX_BUFFER_SIZE (1024) /* >= sizeof(LDAPAPIInfo) */
|
34
34
|
|
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.4
|
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
|