1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318
|
<!--
%CopyrightBegin%
Copyright Ericsson AB 2023-2024. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
%CopyrightEnd%
-->
# Eldap Release Notes
This document describes the changes made to the Eldap application.
## Eldap 1.2.14.1
### Fixed Bugs and Malfunctions
- With this change eldap's 'not' function will have specs fixed.
Own Id: OTP-19658 Aux Id: [PR-9859]
[PR-9859]: https://github.com/erlang/otp/pull/9859
## Eldap 1.2.14
### Fixed Bugs and Malfunctions
- Corrected dialyzer spec for usage of TLS options. The incorrect usage for the options in `eldap` could cause dialyzer warnings in user code referring to `eldap` specs.
Own Id: OTP-19281 Aux Id: [PR-8906]
[PR-8906]: https://github.com/erlang/otp/pull/8906
## Eldap 1.2.13
### Improvements and New Features
- The documentation has been migrated to use Markdown and ExDoc.
Own Id: OTP-18955 Aux Id: [PR-8026]
[PR-8026]: https://github.com/erlang/otp/pull/8026
## Eldap 1.2.12
### Fixed Bugs and Malfunctions
- Add missing dependency to asn1 application
Own Id: OTP-18810
## Eldap 1.2.11
### Improvements and New Features
- Added a new function eldap:info/1 that returns the socket and the transport
protocol for the eldap connection.
Own Id: OTP-18480
## Eldap 1.2.10
### Fixed Bugs and Malfunctions
- Fix eldap extensibleMatch dnAttributes option.
According to the ldap ASN1 the dnAttributes should be a bool, instead it was
generated as a string.
Own Id: OTP-17877 Aux Id: PR-5615
### Improvements and New Features
- Implemented paged searches according to
https://www.rfc-editor.org/rfc/rfc2696.txt
Own Id: OTP-17924 Aux Id: PR-5538
## Eldap 1.2.9
### Improvements and New Features
- Add ability to specify size limit on ldap requests
Own Id: OTP-17166 Aux Id: PR-2904
## Eldap 1.2.8
### Fixed Bugs and Malfunctions
- Fix dialyzer warnings in eldap when not matching the return value of
ssl:close/1.
Own Id: OTP-15775
## Eldap 1.2.7
### Improvements and New Features
- Back port of bug fix ERL-893 from OTP-22 and document enhancements that will
solve dialyzer warnings for users of the ssl application.
This change also affects public_key, eldap (and inet doc).
Own Id: OTP-15785 Aux Id: ERL-929, ERL-893, PR-2215
## Eldap 1.2.6
### Fixed Bugs and Malfunctions
- A race condition at close could cause the eldap client to exit with a badarg
message as cause.
Own Id: OTP-15342 Aux Id: ERIERL-242
## Eldap 1.2.5
### Fixed Bugs and Malfunctions
- Improved documentation.
Own Id: OTP-15190
## Eldap 1.2.4
### Improvements and New Features
- Update to use the new string api instead of the old.
Own Id: OTP-15036
## Eldap 1.2.3.1
### Fixed Bugs and Malfunctions
- A race condition at close could cause the eldap client to exit with a badarg
message as cause.
Own Id: OTP-15342 Aux Id: ERIERL-242
## Eldap 1.2.3
### Fixed Bugs and Malfunctions
- Removed all old unused files in the documentation.
Own Id: OTP-14475 Aux Id: ERL-409, PR-1493
## Eldap 1.2.2.1
### Fixed Bugs and Malfunctions
- A race condition at close could cause the eldap client to exit with a badarg
message as cause.
Own Id: OTP-15342 Aux Id: ERIERL-242
## Eldap 1.2.2
### Fixed Bugs and Malfunctions
- If the underlying tcp connection is closed and an LDAP operation returned
tcp_error, the client applications tend to close the ldap handle with
eldap:close. This will cause a `{nocatch, {gen_tcp_error, ...}}` exception.
Such errors are now ignored during close, because the socket will be closed
anyway.
Own Id: OTP-13590 Aux Id: PR-1048
### Improvements and New Features
- Modernize test suites
Own Id: OTP-13566
## Eldap 1.2.1
### Fixed Bugs and Malfunctions
- ELDAP did not send an `'unBind'` request before closing the connection.
Own Id: OTP-13327
### Improvements and New Features
- Handles the `referral` result code from LDAP servers. Adds the return value
`{ok, {referral,UrlList}}` to some functions. See the Eldap reference manual
for details.
Own Id: OTP-12272
## Eldap 1.2
### Improvements and New Features
- Support added for LDAP Password Modify Extended Operation (RFC 3062). Thanks
to danielwhite.
Own Id: OTP-12282
## Eldap 1.1.1
### Fixed Bugs and Malfunctions
- Corrects that `eldap:close/1` returned a tuple instead of the specified atom
`ok`.
Own Id: OTP-12349
### Improvements and New Features
- Clarification in the reference manual for `eldap:modify_dn/5`,
`eldap:search/2` and `eldap:start_tls/3`.
Own Id: OTP-12354
- The eldap test suites are extended and re-organized.
Own Id: OTP-12355
## Eldap 1.1
### Fixed Bugs and Malfunctions
- Fixed that eldap:open did not use the Timeout parameter when calling
ssl:connect. (Thanks Wiesław Bieniek for reporting)
Own Id: OTP-12311
### Improvements and New Features
- Added the LDAP filter `extensibleMatch`.
Own Id: OTP-12174
## Eldap 1.0.4
### Fixed Bugs and Malfunctions
- `eldap:open/2` and `eldap:open/3` gave wrong return values for option errors.
Own Id: OTP-12182
### Improvements and New Features
- Nearly all TCP options are possible to give in the `eldap:open/2` call.
Own Id: OTP-12171
## Eldap 1.0.3
### Fixed Bugs and Malfunctions
- Application upgrade (appup) files are corrected for the following
applications:
`asn1, common_test, compiler, crypto, debugger, dialyzer, edoc, eldap, erl_docgen, et, eunit, gs, hipe, inets, observer, odbc, os_mon, otp_mibs, parsetools, percept, public_key, reltool, runtime_tools, ssh, syntax_tools, test_server, tools, typer, webtool, wx, xmerl`
A new test utility for testing appup files is added to test_server. This is
now used by most applications in OTP.
(Thanks to Tobias Schlager)
Own Id: OTP-11744
- Add support for IPv6 connections, By including the \[inet6] option in
eldap:open/2. Default value is still \[inet] (Thanks to Edwin Fine)
Own Id: OTP-11753
- Fixed bug where eldap:search returned binaries instead of strings. (Thanks
Simon MacMullen for the report)
Own Id: OTP-11768
## Eldap 1.0.2
### Fixed Bugs and Malfunctions
- Removed \{verify,0\} from ssl-options because eldap does not support peer
verification. Thanks to Florian Waas for reporting.
Own Id: OTP-11354
### Improvements and New Features
- The ldap client eldap now supports the start_tls operation. This upgrades an
existing tcp connection to encryption using tls, if the server supports it.
See eldap:start_tls/2 and /3.
Own Id: OTP-11336
## Eldap 1.0.1
### Improvements and New Features
- Fixed various dialyzer warnings
Own Id: OTP-10403 Aux Id: kunagi-258 \[169]
- Configure the SSL options fully in eldap.
Own Id: OTP-10728
## Eldap 1.0
New application.
|