This repository has been archived by the owner on Sep 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
/
ChangeLog
1283 lines (1275 loc) · 74.8 KB
/
ChangeLog
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
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
New features and Compatibility breaking
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2018-09-26 v1.1.10: none
2018-08-02 v1.1.9: none
2018-06-04 v1.1.8: none
2018-02-23 v1.1.7
2018-01-30 libreldap: import - Public key pinning support (ITS#8753).
2018-01-28 libunicode: import - Allow to recognize title-case characters even if they do not have lower-case equivalents (ITS#8508).
2018-01-28 libreldap: drop ldap_pvt_thread_rmutex.
2018-01-28 libreldap: import - Add a recursive mutex for libevent (ITS#8638).
2018-01-28 libreldap: import - Add new ldap_connect() function (ITS#7532).
2017-08-12 v1.1.6
2017-04-16 slapd: backport - Add config support for binary values.
2017-04-16 libreldap: backport - Add options to use DER format cert+keys directly.
2017-04-16 overlays: backport - add AutoCA overlay.
2017-03-29 mdbx: more for compatibility (musl).
2017-03-28 libreldap: more for portability (musl).
2017-03-12 contrib: argon2 password hashing module (ITS#8575).
2017-03-12 libreldap: adds ldif_open_mem() (ITS#8603).
2017-02-25 libreldap: musl support.
2017-02-15 proxy-cache, all: use LDAP_DEBUG_CACHE/Cache.
2017-02-08 mdbx: zero-length data is not an error for MDBX.
2017-02-02 mdbx: don't ignore `data` arg in mdb_del() for libfpta.
2017-01-31 mdbx: rework mdbx_replace() for libfpta.
2017-01-31 mdbx: add mdbx_dbi_open_ex() for libfpta.
2017-01-30 mdbx: add mdbx_is_dirty() for libfpta.
2017-01-30 mdbx: add MDBX_RESULT_FALSE and MDBX_RESULT_TRUE for libfpta.
2017-01-27 mdbx: zero-length key is not an error for MDBX.
2017-01-24 mdbx: MDBX_EMULTIVAL errcode for libfpta.
2017-01-24 mdbx: allows cursors to be free/reuse explicitly, regardless of transaction wr/ro type.
2017-01-19 mdbx: adds mdbx_get_ex() for libfpta.
2017-01-13 libreldap: more for LibreSSL and OpenSSL 1.1.0c (ITS#8533, ITS#8353).
2017-01-07 mdbx: support glibc < 2.18 for TLS cleanup on thread termination.
2016-12-22 mdbx: adds mdbx_replace() for libfpta.
2016-12-18 mdbx: allows zero-length keys for libfpta.
2016-12-15 mdbx: rework MDB_CURRENT handling for libfpta.
2016-12-06 mdbx: adds mdbx_cursor_eof() for libfpta.
2016-12-06 mdbx: explicit overwrite support for mdbx_put().
2016-11-27 mdbx: add 'canary' support for libfpta.
2016-04-13 mdbx: 'attributes' support for Nexenta.
2016-12-30 v1.1.5
2016-12-03 ci: scripts from `ps/build` branch.
2016-12-03 configure: adds `check-news` option.
2016-12-04 build: add its-regressions to `make test` target.
2016-11-30 v1.1.4
2016-11-26 reopenldap: support for OpenSSL-1.1.x and LibreSSL-2.5.x (#115, #116).
2016-11-26 contrib: added mr_passthru module.
2016-11-12 return to the original OpenLDAP Foundation license.
2016-10-27 `configure: support for --with-buildid=SUFFIX`.
2016-10-26 moznss: support for <nspr4/nspr.h> and <nss3/nss.h>.
2016-08-30 v1.1.3
2016-08-28 `configure --with-gssapi=auto/yes/no`.
2016-08-28 slapi: use /var/log/slapi-errors.
2016-08-28 slapd: move the ldapi socket to /var/run/slapd from /var/run.
2016-08-23 reopenldap LICENSE note.
2016-08-24 `configure: --enable-debug=extra`.
2016-08-07 libreldap: NTLM bind support.
2016-08-07 contrib: add check_password module.
2016-08-07 contrib: allow build smbk5pwd without heimdal-kerberos.
2016-08-07 libreldap: Disables opening of ldaprc file in current directory (RHEL#38402).
2016-08-07 libreldap: Support TLSv1.3 and later.
2016-07-30 v1.1.2
2016-07-28 `configure --enable-contrib` for build contributes modules and plugins.
2016-07-28 `configure --enable-experimental` for experimental and developing features.
2016-07-27 'configure --enable-valgrind' for testing with Valgrind Memory Debugger.
2016-07-24 `configure --enable-check --enable-hipagut` for builtin runtime checking.
2016-07-12 v1.1.1
2016-06-17 reopenldap: use automake-1.15 and autoconf-2.69.
2016-05-25 slapd: 'keepalive' config option.
2016-05-19 slapd: adds biglock's latency tracer (-DSLAPD_BIGLOCK_TRACELATENCY=deep).
2016-05-09 v1.0
2016-05-06 mdbx: lifo-reclaimig for weak-to-steady conversion.
2016-04-13 contrib: backport - ITS#6826 conversion scripts.
2016-03-25 mdbx: simple ioarena-based benchmark.
2016-03-04 syncrepl: 'require-present' config option.
2016-03-04 syncprov: 'syncprov-showstatus' config option.
2015-12-13 slapd: integration with AddressSanitizer.
2015-12-13 mdbx: basic support for ThreadSanitizer.
2015-12-13 backend-mdb: explicit 'utterly-nosync' for 'envflags' config.
2015-10-11 all: added reopenldap 'idclip' mode.
2015-08-04 contrib-modules, passwd/totp: Add TOTP pw mechanism.
2015-08-04 contrib-modules, adremap: New ADremap overlay.
2015-05-01 slapd-syncrepl: 'limit-concurrent-refresh' feature for quorum.
2015-04-19 slapd: adds 'quorum' feature.
2015-02-24 slapd: ReOpenLDAP cheat-codes id-dqd, id-kfa.
2015-02-18 slapd: 'biglock' feature.
2015-01-21 test: use Valgrind for all LDAP-tools.
2015-01-20 liblder, slapd: use Hipagut memory checker, include sl-allocator.
2015-01-10 liblber: added "Hipagut" memory checker (imported partialy from 1Hippeus).
2014-??-?? slapd: stack backtrace on SIGSEGV/SIGABRT.
2014-??-?? slapd: ITS#7974 oom-handler feature.
2014-??-?? slapd: ITS#7974 dreamcatcher feature (early & finally txn-detach).
2014-??-?? lmdb-backend: supoort 'lifo' and 'coalesce' features.
2014-??-?? back-mdb: support for "checkpoint kbytes" config-option.
2014-??-?? back-mdb: checkpoint-interval in seconds instead of minutes.
Documentation
~~~~~~~~~~~~~
2018-09-26 v1.1.10
2018-09-21 mdbx: import - `mdb_cursor_del` does not invalidate the cursor (ITS#8857).
2018-09-21 mdbx: import - `GET_MULTIPLE` etc don't return the key (ITS#8908).
2018-08-07 doc: update `README.md`
2018-08-02 v1.1.9
2018-07-04 man: import - fix quoting example.
2018-05-10 mdbx: update Project Status.
2018-07-04 man: import - use a regexp (ITS#8051).
2018-07-04 man: import - add DN qualifier (ITS#8051).
2018-06-04 v1.1.8
2018-03-20 man: SASL_MECH/SASL_REALM are not user-only (ITS#8818).
2018-02-27 man: fix SIGHUB typo.
2018-02-23 v1.1.7
2018-02-11 man, contrib: fix one more typo.
2018-02-11 automake: add Russian man-pages.
2018-01-30 man: import - Docs for reqEntryUUID (ITS#6656).
2018-01-28 man: added Russian man-pages.
2018-01-25 contrib-moduled: cleanup obsolete notes about LDAP_SRC.
2018-01-23 man: import - Note ldap_sasl_bind() can be used to make simple binds via the LDAP_SASL_SIMPLE mechanism (ITS#8121).
2018-01-23 man: import - index on entryCSN is mandatory note (ITS#5048).
2018-01-22 configure: note about EXTRA_CFLAGS.
2017-08-22 man: import - Fix typo with olcTLSCipherSuite (ITS#8715).
2017-08-12 v1.1.6
2017-04-26 man: Fix wording to match examples (ITS#8123).
2017-04-26 man-contib: add man-pages for contrib overlays (ITS#8205).
2017-04-24 man: Note that non-zero serverID's are required for MMR, and that serverID 0 is specific to single master replication only (ITS#8635).
2017-04-24 man: Note that slapo-memberOf should not be used in a replicated environment (ITS#8613).
2017-04-18 doc: cleanup tabs in CHANGES.OpenLDAP
2017-04-16 doc: backport - Catalog of assigned OID arcs.
2017-04-15 man: backport - Fix VV option information (ITS#7177, ITS#6339).
2017-02-22 man: Further clarification around replication information (ITS#8253).
2017-02-17 Update CONTRIBUTING.md
2017-02-15 mdbx: notes about free/reuse cursors.
2017-02-09 slapd: refine note for Cyrus-SASL memleak.
2017-02-07 contrib: minor Update TOTP README (ITS#8513).
2017-01-21 man: minor fixes.
2017-01-21 man: backport - Add a manpage for slapo-autogroup (ITS#8569).
2017-01-21 man: backport - Grammar and escaping fixes (ITS#8544).
2017-01-21 man: backport - Clearly document rootdn requirement for the ppolicy overlay (ITS#8565).
2017-01-18 mdbx: refine README.
2016-12-30 v1.1.5
2016-12-23 mdbx: set of LMDB-0.9.19 updates (doxygen and comments)
2016-12-03 man: `interval` keyword info (ITS#8538).
2016-11-30 v1.1.4
2016-10-25 man: fix typo (ITS#8185).
2016-08-30 v1.1.3
2016-08-28 man: added page for contrib/smbk5pwd.
2016-08-28 man: note for ldap.conf that on Debian is linked against GnuTLS.
2016-08-28 doc: added preamble to devel/README.
2016-08-28 man: remove refer to <ldap_log.h>
2016-08-28 man: note olcAuthzRegex needs restart (ITS6035).
2016-08-18 docs: fixed readme's module-names for contrib (.so -> .la)
2016-08-04 mdbx: comment MDB_page, rename mp_ksize.
2016-08-04 mdbx: VALID_FLAGS, mm_last_pg, mt_loose_count.
2016-08-07 man: fixed SASL_NOCANON option missing in ldap.conf manual page.
2016-07-30 v1.1.2
2016-07-20 man: minor cleanup 'deprecated' libreldap functions.
2016-07-12 v1.1.1
2016-06-22 doc: english man-page for 'syncprov-showstatus none/running/all'.
2016-06-04 doc: syncrepl's 'requirecheckpresent' option.
2016-06-04 man: note about 'ServerID 0' in multi-master mode.
2016-06-04 man: man-pages for global 'keepalive idle:probes:interval' option.
2016-05-09 v1.0
2016-04-14 man-ru: 'syncprov-showstatus none/running/all' feature.
2016-03-11 man: libreldap ITS#7506 Properly support DHParamFile (backport).
2015-12-25 mdbx: MDB_RESERVE doc (backport).
2015-12-25 mdbx: Add Getting Started doc (backport).
2015-11-08 man: ITS#8215 Manpage fixes (backport).
2015-10-11 man: ITS#7897 fix admin guide syncrepl TLS defaults (backport).
2015-06-26 man-ru: slapd-conf.5 reviewed and translated to english.
2015-05-25 man-ru: added translated slapd-bdb.5, slapd.plugin.5, slapo-accesslog.5 and slapo-ppolicy.5
2015-05-21 man-en: ITS#7769 Fix typo in slapd-meta manpage.
2015-05-03 man-ru: described limit-concurrent-refresh for syncrepl.
2015-04-21 man-ru: described "Quorum" feature.
2015-04-08 man: ITS#8099 update to correctly use tls_cipher_suite (backport).
2015-03-18 man-ru: added translated slapd-config.5, slapd.conf.5 and slapo-syncprov.5
2015-03-17 man-ru: described ReOpenLDAP's features.
2015-01-30 man-ru: Added man-page ldif.5 translated into Russian
2015-01-22 man: ITS#8032 document LDAP_OPT_API_INFO/FEATURE_INFO (backport).
2015-01-22 man-ru: russian man pages.
Major and Security Bugs
~~~~~~~~~~~~~~~~~~~~~~~
2018-09-26 v1.1.10
2018-09-21 mdbx: backport - prevent DB corruption due rebalance bugs.
2018-08-02 v1.1.9
2018-07-01 libreldap: fix init/shutdown races/segfaults with modern OpenSSL.
2018-07-01 libreldap: fix deadlock/recursion inside tls-init internals.
2018-06-04 v1.1.8
2018-05-04 mdbx: fix wrong freeDB search.
2018-04-03 slapd: fix memory corruption in connection-handling code.
2018-03-28 syncprov: fix op_response() segfault.
2018-02-23 v1.1.7
2018-02-05 back-ldap: fix search double-free and/or memory corruption.
2018-01-22 overlay-sss: fix server-side-sort overlay segfault.
2017-10-01 build: fix 'ldap_dirs.h' issue (@variables@ are not replaced with paths on).
2017-08-12 v1.1.6
2017-07-26 mdbx: backport - don't madvise(MADV_REMOVE).
2017-05-23 backend-mdb: fix double free on paged search with pagesize 0 (ITS#8655).
2017-05-08 reldap: retry gnutls_handshake after GNUTLS_E_AGAIN (ITS#8650).
2017-05-01 slapo-sssvlv: Cleanup double-free fix in sssvlv overlay (ITS#8592).
2017-05-01 libreldap: fix races around tls_init().
2017-05-01 libreldap: use pthread_once() for SASL init (fix Debian Bug #860947).
2017-04-27 mdbx: fix snap-state bug (backport).
2017-04-17 slapd: fix segfault (ITS#8631)
2017-04-16 libreldap: backport - Fixup cacert/cert/key options.
2017-04-05 libreldap: fix hipagut for ARM/ARM64 (and other where alignment is required).
2017-03-12 overlay-sssvlv: try to fix double-free in server side sort (ITS#8592, ITS#8368).
2017-02-25 libreldap: backport - Avoid hiding the error if user specified CA does not load (ITS#8529).
2017-02-06 syncrepl: fix refer to freed mem.
2017-01-21 slapd: backport - fix sasl SEGV rebind in same session (ITS#8568).
2017-01-13 mdbx: CHANGES for glibc bugs #21031 and #21032.
2016-12-30 v1.1.5: none
2016-11-30 v1.1.4: none
2016-08-30 v1.1.3
2016-08-23 slapd: check for writers while close the connection (fixed #104).
2016-08-23 slapd: fixed #103, stop glue-search on errors.
2016-08-07 libreldap: MozNSS fixed CVE-2015-3276 (RHEL#1238322).
2016-08-07 libreldap: TLS do not reuse tls_session if hostname check fails (RHEL#852476).
2016-08-07 slapd: Switch to lt_dlopenadvise() to get RTLD_GLOBAL set (RHEL#960048, Debian#327585).
2016-08-07 libreldap: reentrant gethostby() (RHEL#179730).
2016-08-07 libreldap: MozNSS ignore certdb database type prefix when checking existence of the directory (RHEL#857373).
2016-07-30 v1.1.2
2016-07-24 syncprov: fix find-csn error handling.
2016-07-30 v1.1.1
2016-06-09 slapd: rurw-locking for config-backend.
2016-06-04 syncprov: fix syncprov_findbase() race with backover's hacks.
2016-06-04 syncprov: bypass 'dead' items in syncprov_playback_locked().
2016-05-24 syncprov: fix syncprov_playback_locked() segfault.
2016-05-24 syncprov: fix syncprov_matchops() race with backover's hacks.
2016-05-24 syncprov: fix rare syncprov_unlink_syncop() deadlock with abandon.
2016-05-24 slapd: fix deadlock in connections_shutdown().
2016-05-19 overlays: fix a lot of segfaults (callback initialization).
2016-05-09 v1.0
2016-05-09 syncrepl: fix RETARD_ALTER when no-cookie but incomming entryCSN is newer.
2016-04-26 mdbx: backport - ITS#8412 fix NEXT_DUP after cursor_del.
2016-04-20 mdbx: backport - ITS#8406 fix xcursors after cursor_del.
2016-03-24 backend-mdb: fix 'forgotten txn' bug.
2016-03-17 syncprov: fix error handling when syncprov_findcsn() fails.
2016-03-10 syncprov: fix rare segfault in search_cleanup().
2016-03-10 backend-bdb/hdb: fix cache segfault.
2016-03-04 syncprov: fix possibility of loss changes.
2016-03-04 syncprov: fix error handling in find-max/csn/present.
2016-03-04 syncprov: fix 'missing present-list' bug.
2016-03-04 syncprov: avoid lock-order-reversal/deadlock (search under si-ops mutex).
2016-02-12 slapd: fix segfault in connection_write().
2016-02-01 mdbx: backport - ITS#8363 Fix off-by-one in mdb_midl_shrink().
2016-01-25 mdbx: backport - ITS#8355 fix subcursors.
2016-01-13 syncprov: avoid deadlock with biglock and/or threadpool pausing.
2015-12-14 syncprov: fix race in syncprov_payback_dequeue().
2015-12-14 slapo-pcache: fix lock-order-reversal.
2015-12-13 mdbx: fix double-free on thread-destroy.
2015-12-01 slapd: slap_csn_stub_self() - fix leak/double-free in case failure value_add_one().
2015-12-01 slapd: fix double-free/segfault in quorum_global_destroy().
2015-11-23 mdbx: backport - ITS#8316 cursor fixup in page_merge.
2015-11-22 syncprov: fix segfault in filter-fix when connection abandon.
2015-11-22 mdb-backend: fix entry memleak (major).
2015-11-20 syncrepl: fix msg-loop memleak (major).
2015-11-20 syncrepl: fix LDAPControl memleak (major).
2015-11-19 mdbx: fix uninit fields in page_malloc().
2015-11-19 mdbx: backport - ITS#8315 fix ovpage_free.
2015-11-19 mdbx: backport - ITS#8311 fix page_split from update_key.
2015-11-14 mdbx: backport - ITS#8310 fix mdb_rebalance cursor fixup.
2015-11-10 mdbx: backport - ITS#8304 fix page_merge (mdb_del cursor tracking).
2015-11-07 backend-bdb: ITS#7432 fix typo in bdb_midl_sort.
2015-11-06 mdbx: backpost - ITS#8300 fix rebalance after node_move.
2015-11-06 mdbx: backport - ITS#8299 fix page_merge cursor fixup.
2015-11-06 mdbx: backport - ITS#8238 fix DUPFIXED page_split.
2015-10-19 mdbx: backport - ITS#8263 fix cursor tracking in cursor_put.
2015-10-19 mdbx: backport - ITS#7771 fix cursor tracking on fake pages.
2015-10-11 syncrepl: use biglock to avoid troubles with uuid-2-dn mapping.
2015-10-11 syncrepl: fix flaw in `delete-non-present`.
2015-10-11 syncrepl: filter-out retarded notifications of updates.
2015-10-11 mdbx: backport - ITS#8264 fix cursor_del cursor tracking.
2015-10-06 mdbx: backport - ITS#8258 fix rebalance/split.
2015-08-29 slapd-syncrepl: icing on the cake, crutch-fix to avoid segfault.
2015-08-27 slapd-syncprov: fix sigfault in case empty op-filterstr.
2015-08-26 backend-mdb: don't storing an undue normalized values.
2015-08-04 slapd: backport - ITS#8199 fix NULL ptr dereference in at_next.
2015-08-04 back-ldap: backport - ITS#8173 fix SEGV after failed retry.
2015-06-26 slapd-syncrepl: fix syncrepl loops & reschedule.
2015-03-23 mdbx: backport - ITS#8062 fix uninit'd cursor index (already fixed in ReOpenLDAP).
2015-03-11 syncprov: fix issue#22 (SIGSEGV) and ITS#8063 regression.
2015-02-18 syncrepl: use biglock for delete-non-present.
2015-02-18 ndb-backend: fix 'uninitialized' bugs (SIGSEGV).
2015-01-21 libldap: ITS#8028 fix SIGSEGV in ldap_new_connection.
2015-01-18 slapd: memory leak/double-free in vr-filter.
2015-01-18 slapd-syncprov: fix search-cleanup callback.
2015-01-17 slapd-syncprov: fix SIGSEGV on error from backend or other overlay (missing cleanup callback).
2015-01-16 slapd: ITS#8022 don't skip TLS init for 'ldaps://' targets.
2015-01-16 slapd: ITS#8022 an async connect may still succeed immediately.
2015-01-15 ITS#8013 fix rare SIGSEGV in test_filter().
2015-01-12 ITS#5452, ITS#8012 fix syncops list iteration and detaching on freed.
Minor Bugs
~~~~~~~~~~
2018-09-26 v1.1.10
2018-09-24 libreldap: fix "retry `gnutls_handshake` after `GNUTLS_E_AGAIN`" (ITS#8650).
2018-09-11 slap: import - omit hidden DBs from rootDse (ITS#8912).
2018-09-11 backend-mdb, backend-bdb: import - fix index delete.
2018-09-11 slapd: import - fix `authz-policy all` condition (ITS#8909).
2018-08-02 v1.1.9
2018-07-10 libreldap: backport - Do some printability checks on the dc RDN (ITS#8842).
2018-07-10 overlay-memberof, tests: backport - Improve memberof cn=config handling (ITS#8663).
2018-07-09 backend-glue: import - Do not finish glue initialisation in tool mode unless requested (ITS#8667).
2018-07-04 backend-mdb, backend-bdb: import - don't convert IDL to range needlessly (ITS#8868).
2018-07-04 backend-sock: import - use a regexp (ITS#8051).
2018-07-04 backend-sock: import - add DN qualifier (ITS#8051).
2018-07-01 libreldap: fix unlock in error-case inside thread-pool handle_pause().
2018-07-01 libreldap: import - fix ber_realloc after a partial ber_flush (ITS#8864).
2018-06-30 slapd: fix wrong/duplicate listening if bind failed.
2018-06-13 slapd: import - fix ldif-wrap errmsg typo.
2018-06-04 v1.1.8
2018-05-24 syncprov: import - don't check for existing value when deleting values (ITS#8616).
2018-05-05 slapd: import - fix domainScope control to ensure the control value is absent (ITS#8840).
2018-05-04 mdbx: backport - can't use fakepage mp_ptrs directly (ITS#8819).
2018-05-04 mdbx: backport - fix regression in 0.9.19 (ITS#8760).
2018-05-04 mdbx: backport - fix FIRST_DUP/LAST_DUP cursor bounds check (ITS#8722).
2018-02-23 v1.1.7
2018-02-14 libmdbx: legacy - fix cursor ops (squashed ITS#8722).
2018-02-13 overlay-dds: fix callbacks (invalid results or bug-check).
2018-02-11 slapd-schema: don't strip pretty-trailing zeros while normalize time.
2018-02-11 syncprov: Try other CSNs as pivot if consumer's and provider's sets are the same.
2018-02-11 syncrepl: add SYNC_NEED_RESTART code and handling.
2018-02-11 syncrepl: fix resched-interval.
2018-02-11 syncrepl: LDAP_UNWILLING_TO_PERFORM in case no any CSN's.
2018-02-10 libmdbx: legacy - fix regression in 0.9.19 (ITS#8760).
2018-02-10 accesslog: import - Fix CSN queue processing (ITS#8801).
2018-02-10 syncprov: fixed in ReOpenLDAP two years ago - remove originator check in syncprov_search_response (ITS#8800).
2018-02-10 syncprov: import - don't replicate checkpoints (ITS#8607).
2018-02-01 syncprov: fixes for delta-syncrepl with empty accesslog (ITS#8100).
2018-01-30 slapd: import - Fix SASL SSF reset (ITS#8796).
2018-01-30 libreldap: import - Fix MozNSS initialization (ITS#8484).
2018-01-30 libreldap: import - plug memleaks in cancel (ITS#8782).
2018-01-30 slapd: import - Fix telephoneNumberNormalize (ITS#8778).
2018-01-30 syncprov: use cookie and thread_pool_retract() when overlay deleting.
2018-01-29 accesslog: fix recursive locking.
2018-01-28 slapd: import - olcTimeLimit should be Single Value (ITS#8153).
2018-01-28 overlay-lastbind: import - Allow authTimestamp updates to be forwarded via updateref (ITS#7721).
2018-01-28 libreldap: import - Non-blocking TLS is not compatible with MOZNSS (ITS#7428).
2018-01-28 slapd: import - Fix additional compile for /dev/poll support.
2018-01-28 slapd: import - Fix calls to SLAP_DEVPOLL_SOCK_LX for multi-listener support.
2018-01-28 slapd: import - Always remove listener descriptors from daemon on shutdown.
2018-01-28 slapd: import - Avoid listener thread startup race (ITS#8725).
2018-01-28 libreldap: import - plug ber leaks (ITS#8727).
2018-01-28 backend-sock: import - Send out EXTENDED operation message from back-sock (ITS#8714).
2018-01-23 syncrepl: import - fix syncrepl deadlock from updateCookie (ITS#8752).
2018-01-23 overlay-accesslog: import - cleanup should only be called on failures (ITS#8752).
2018-01-23 syncrepl: import - fix syncrepl null_callback (ITS#8752).
2018-01-23 backend-sock: import - let back-sock generate increment (ITS#8692).
2018-01-23 libreldap: import - Fix non-blocking TLS with referrals (ITS#8167).
2018-01-23 backend-mdb: import - fix/remove unused-variables (ITS#8578).
2018-01-23 backend-meta: import - Fix an assertion failure during modify of olcDbRewrite in back-meta (ITS#8404).
2018-01-23 backend-ldap: import - fix omit-unknown-schema changes (ITS#7520).
2018-01-23 libreldap: import - do not reuse TLS_session if hostname check fails (ITS#7373).
2018-01-23 overlay-dds: import - Update entryTtl behaviour to match RFC 2589 (ITS#7100).
2018-01-23 libreldap: import - call connection delete callbacks (ITS#8717).
2018-01-22 overlay-constraint: fix comparison between pointer and zero character constant.
2018-01-22 backend-mdb: fix "warning: '%s' directive output may be truncated..."
2018-01-12 syncrepl: fix "syncrepl_process: rid=NNN (-45) Unknown API error".
2018-01-19 slapd: fix 'ptrace: Operation not permitted' from backtrace feature.
2017-10-01 backend-ldap: import - use the configured exop timeout for StartTLS (ITS#8270).
2017-08-25 syncprov: import - ITS#8444 Do not clear the pending operation when checkpointing.
2017-08-12 v1.1.6
2017-08-02 mdbx: backport - ITS#8699 more for cursor_del ITS#8622.
2017-08-02 slapd: avoid hang/crash the backtrace_sigaction().
2017-08-02 reopenldap: avoid deadlock/recursion in debug-output.
2017-08-02 syncrepl: LDAP_PROTOCOL_ERROR if entryCSN missing in 'IDCLIP' mode.
2017-07-26 mdbx: backport - fix mdbx_set_attr().
2017-06-13 mdbx: fix mdbx_txn_straggler() for write-txn (backport from devel).
2017-05-25 mdbx: fix crash on twice txn-end (backport from devel).
2017-05-23 reldap: check result of ldap_int_initialize in ldap_{get,set}_option (ITS#8648).
2017-02-05 slapd: backport - fix LDAP_TAILQ macro, nice bug since 2002 (ITS#8576).
2017-04-16 slapd, autoca-overlay: backport - Move privateKey schema into slapd.
2017-04-15 slapd: backport - Update accesslog format and syncrepl consumer (ITS#6545).
2017-04-15 libreldap: backport - Ensure that the deprecated API is not used when using OpenSSL 1.1 or later (ITS#8353, ITS#8533).
2017-04-15 unique-overlay: backport - Allow empty mods (ITS#8266).
2017-04-15 libutil, slapd: backport - Separate Avlnode and TAvlnode types (ITS#8625).
2017-04-15 libreldap, slapd: backport - Fixes for multiple threadpool queues.
2017-03-24 mdbx: backport - ITS#8622 fix xcursor after cursor_del.
2017-03-09 slapd: backport - Deal with rDN correctly (ITS#8574).
2017-02-17 syncprov: fix possibility of use freed `pivot_csn`.
2017-02-16 mdbx: fix cursor-untrack bug.
2017-02-09 slapd: fix memleaks from mask_to_verbstring().
2017-02-09 slapd: fix minor config-value_string memleak.
2017-02-09 libreldap: fix minor PL_strdup(noforkenvvar) memleak.
2017-02-09 slapd: workaround for Cyrus memleak.
2017-02-09 backend-mdb: fix cursor leaks (follow libmdbx API changes).
2017-02-07 libreldap: backport - Fail ldap_result if handle is already bad (ITS#8585).
2017-02-07 mdbx: fix losing a zero-length value of sorted-dups (for libfpta).
2017-02-05 slapd: fix slap_tls_get_config().
2017-02-05 slapd: fix mr_index_cmp() for match-rules.
2017-02-05 ci: fix static/dymanic for backends.
2017-01-31 mdbx: fix MDB_CURRENT for MDB_DUPSORT in mdbx_cursor_put() for libfpta.
2017-01-31 mdbx: fix LEAF2-pages handling in mdb_cursor_count().
2017-01-21 slapd: fix LDAP_OPT_X_TLS_CRLFILE.
2017-01-19 slapd: temporary fix for issue#120 (its8444).
2017-01-19 syncprov: bypass refresh for refrech-and-persist requests when no local cookies.
2017-01-19 syncprov: minor fix rid/sid debug output.
2017-01-19 slapd: don't treat an empty cookie string as the protocol violation.
2017-01-18 syncrepl: pull cookies before fallback to refresh from delta-mmr.
2017-01-18 mdbx: fix xflags inside mdb_cursor_put().
2017-01-18 mdbx: fix cursor EOF tricks.
2017-01-13 syncrepl: immediately schedule retry for LDAP_SYNC_REFRESH_REQUIRED.
2017-01-13 syncprov: LDAP_BUG() in op-responce if op-tag missing.
2017-01-13 accesslog: fix missing op-tag.
2017-01-13 syncrepl: allow empty sync-cookie for delta-mmr (accesslog).
2017-01-13 mdbx: fix mdb_cursor_last (ITS#8557).
2017-01-07 mdbx: backport - ITS#8558 fix mdb_load with escaped plaintext.
2016-12-23 mdbx: fix cursor_count() for libfpta.
2016-12-21 mdbx: mdb_chk - don't close dbi-handles, set_maxdbs() instead.
2016-12-18 mdbx: fix MDB_GET_CURRENT for dupsort's subcursor.
2016-12-30 v1.1.5
2016-11-30 mdbx: backport - more for cursor tracking after deletion (ITS#8406).
2016-12-16 mdbx: backport - mdb_env_copyfd2(): Don't abort on SIGPIPE (ITS#8504).
2016-12-15 mdbx: fix ov-pages copying in cursor_put().
2016-12-11 mdbx: backport - catch mdb_cursor_sibling() error (ITS#7377).
2016-12-10 mdbx: backport - mdb_dbi_open(): Protect mainDB cursors (ITS#8542).
2016-12-03 backend-mdb: fix mdb_indexer() segfault after cursor closing.
2016-12-03 backend-mdb: refine mdb_tool_xxx() cursor closing.
2016-12-03 backend-mdb: fix mdb_idl_fetch_key() segfault after cursor closing.
2016-12-03 backend-mdb: fix mdb_online_index() cursor leak.
2016-12-03 backend-mdb: simplify mdb_attr_index_config() AttrInfo init.
2016-12-03 backend-mdb: fix mdb_add() cursor leak.
2016-12-03 backend-mdb: fix cursor leak.
2016-11-30 v1.1.4
2016-11-27 mdbx: avoid large '.data' section in mdbx_chk.
2016-11-13 mdbx: fix cursor tracking after mdb_cursor_del (ITS#8406).
2016-10-26 reopenldap: fix LDAPI_SOCK, adds LDAP_VARDIR.
2016-10-25 mdbx: use O_CLOEXEC/FD_CLOEXEC for me_fd,env_copy as well (ITS#8505).
2016-09-06 mdbx: reset cursor EOF flag in cursor_set (ITS#8489).
2016-08-29 slapd: return error on invalid syntax filter-present (#108).
2016-08-30 v1.1.3
2016-08-24 slapd: fixed compare pointer with '\0' in syn_add().
2016-08-24 slapd: fixed indereferenced pointer in fe_acl_group().
2016-08-24 libreldap: fixed overwriting a parameter in tlso_session_errmsg().
2016-08-24 slapd: fixed recurring check in register_matching_rule().
2016-08-23 syncprov/syncrepl: more for #105, two workarounds.
2016-08-22 mdbx: fixed mdb_dump tool and other issues detected by PVS-Studio.
2016-08-18 mdbx: fixed assertions when debug enabled for various open/sync modes.
2016-08-14 slapd: fixed use-after-free in debug/syslog message on module unloaded.
2016-08-14 monitor-backend: fixed cache-release on errors.
2016-08-07 slapd: don't create pid-file for config-check mode.
2016-08-07 libreldap: "tls_reqcert never" by default for ldap.conf
2016-08-07 libreldap: Disables opening of ldaprc file in current directory (RHEL#38402).
2016-08-07 libreldap: MozNSS update list of supported cipher suites.
2016-08-07 libreldap: MozNSS better file name matching for hashed CA certificate directory (RHEL#852786).
2016-08-07 libreldap: MozNSS free PK11 slot (RHEL#929357).
2016-08-07 libreldap: MozNSS load certificates from certdb, fallback to PEM (RHEL#857455).
2016-08-07 slapd: fixed loglevel2bvarray() for config-backend.
2016-08-07 libreldap: LDAPI SASL fix (RHEL#960222).
2016-08-07 libreldap: use AI_ADDRCONFIG if defined in the environment (RHEL#835013).
2016-07-31 libreldap: fixed false-positive ASAN-trap when Valgrind also enabled.
2016-07-30 v1.1.2
2016-07-28 slapd: accept module/plugin name with hyphen.
2016-07-24 syncprov: fix RS_ASSERT failure inside mdb-search.
2016-07-24 slapd: result-asserts (RS_ASSERT) now controlled by mode 'check/idkfa'.
2016-07-24 pcache: fix RS_ASSERT failure.
2016-07-18 mdbx: backport - ITS#8209 fix MDB_CP_COMPACT.
2016-07-12 v1.1.1
2016-07-12 install: hotfix slaptools install, sbin instead of libexec.
2016-07-01 contrib-modules: hotfix - remove obsolete ad-hoc of copy register_at().
2016-06-27 syncrepl: backport - ITS#8432 fix infinite looping mods in delta-mmr.
2016-06-15 slapd: fix memory corruption while test034-translucent.
2016-06-10 reopenldap: hotfix 'derived from' copy-paste error.
2016-06-09 slapd: upgradable recursive read/write lock.
2016-06-09 slapd: rurw-locking for config-backend.
2016-06-09 mdbx: backport - mdb_env_setup_locks() Plug mutexattr leak on error.
2016-06-09 mdbx: backport - ITS#8339 Solaris 10/11 robust mutex fixes.
2016-06-02 libreldap: fix PR_GetUniqueIdentity() for ReOpenLDAP.
2016-05-31 liblber: don't trap ber_memcpy_safe() when dst == src.
2016-05-25 syncprov: kicks the connection from syncprov_unlink_syncop().
2016-05-25 slapd: reschedule from connection_closing().
2016-05-25 slapd: connections_socket_troube() and EPOLLERR|EPOLLHUP.
2016-05-25 slapd: 2-stage for connection_abandon().
2016-05-24 syncprov: rework cancellation path in syncprov_matchops().
2016-05-24 syncprov: fix invalid status ContextCSN.
2016-05-21 slapd: fix handling idle/write timeouts.
2016-05-19 accesslog: backport - ITS#8423 check for pause in accesslog_purge.
2016-05-16 mdbx: backport - ITS#8424 init cursor in mdb_env_cwalk.
2016-05-09 v1.0
2016-05-09 syncrepl: refine status-nofify for dead/dirty cases.
2016-05-09 syncrepl: more o_dont_replicate for syncprov's mock status.
2016-05-09 syncrepl: don't notify QS_DIRTY before obtain connection.
2016-05-09 syncprov: refine matchops() for search-cleanup case.
2016-05-09 slapd: fix valgrind-checks for sl-malloc.
2016-05-09 liblber: fix hipagut support for realloc.
2016-05-09 backend-ldap: fix/remove gentle-kick.
2016-05-07 mdbx: workaround for pthread_setspecific's memleak.
2016-05-06 mdbx: clarify mdbx_oomkick() for LMDB-mode.
2016-04-28 syncrepl: backport - ITS#8413 don't use str2filter on precomputable filters.
2016-04-13 mdbx: always copy the rest of page (MDB_RESERVE case).
2016-03-29 mdbx: fix nasty/stupid mistake in cmp-functions.
2016-03-29 mdbx: backport - ITS#8393 fix MDB_GET_BOTH on non-dup record.
2016-03-25 slapd: request thread-pool pause only for SLAP_SERVER_MODE.
2016-03-25 slapd: fix backover bug (since 532929a0776d47753377461dcf89ff38aba61779).
2016-03-24 syncrepl: enforce csn/cookie while recovering lost-delete(s).
2016-03-23 syncrepl: fix 'quorum' for mad configurations.
2016-03-22 backend-mdb: fix mdb_opinfo_get() error handling.
2016-03-18 syncrepl: fix 'limit-concurrent-refresh' feature.
2016-03-18 slapd: ignore EBADF in epoll_ctl(DEL).
2016-03-17 syncprov: fix rare assert-failure on race with abandon.
2016-03-17 mdbx: fix mdb_kill_page() for MDB_PAGEPERTURB.
2016-03-12 libldap: backport - ITS#8385 Fix use-after-free with GnuTLS.
2016-03-10 syncprov: fix minor op-memleak.
2016-03-04 syncrepl: don't skipping retarded DELETE-notification with UUID.
2016-03-04 syncrepl: don't replicate glue-ancestors, but not an entry.
2016-03-04 syncrepl: del_nonpresent() - filtering glue entries as usual.
2016-03-04 syncrepl: consider notifications with the same CSN as an 'echo'.
2016-03-04 syncrepl: checking for present-list before delete-nonpresent.
2016-03-04 syncrepl: accepts extra refresh-present in multi-master.
2016-03-04 syncprov: send cookie even if entryCSN available.
2016-03-04 syncprov: oversight refresh-present for multi-master.
2016-03-04 syncprov: fix persistent-search - rework cleanup and release.
2016-03-04 syncprov: don't skips sending DELETE-notify to the originator.
2016-03-04 syncprov: don't filter refresh-resp just by originator.
2016-03-04 slapd: stop scan on self-committed in slap_get_commit_csn().
2016-02-12 syncrepl: enumerates operations to distinguish from each other.
2016-02-12 backend-mdb: fix mistake backport ITS#8226.
2016-02-11 syncrepl: fix & rework compare_cookies().
2016-02-10 syncrepl: fix pre-condition for delete-nonpresent.
2016-02-09 mdbx: mdbx_chk - empty freedb record isn't an error.
2016-02-09 backend-mdb: fix infinite loop in callback removal.
2016-02-08 mdbx: fix percent in mdbx_txn_straggler().
2016-02-04 slapd: fix and make optional ordering of pending-csn queue.
2016-02-04 mdbx: fix madvise() flags, it is not a bitmask.
2016-02-04 mdbx: cleanup inherited errno's bug.
2016-02-03 syncrepl: accept empty incoming cookies if iddqd/idclip is off.
2016-02-03 syncprov: don't skip 1900-sub csn in SS_CHANGED case.
2016-02-03 syncprov: backport - ITS#8365 partially revert ITS#8281.
2016-02-03 backend-mdb: more to avoid races on mi_numads.
2016-02-01 backend-mdb: backport - ITS#8360 fix ad info after failed txn.
2016-02-01 backend-mdb: backport - ITS#8226 limit size of read txns in searches.
2016-01-25 slapd: cleanup bullshit around op->o_csn.
2016-01-16 syncprov: wake waiting mod-ops when handle loop-pause.
2016-01-16 syncprov: don't block mod-ops by waiting fetch-ops when pool-pause pending.
2016-01-15 accesslog: backport - ITS#8351 fix callback init.
2016-01-14 syncprov: mutual fetch/modify - wakes opposite if waiting was broken.
2016-01-12 syncrepl: fix race on cookieState->cs_ref.
2015-12-24 syncrepl: LDAP_PROTOCOL_ERROR if an entry-UUID is empty or invalid.
2015-12-24 syncrepl: LDAP_PROTOCOL_ERROR if an entry-UUID is empty or invalid.
2015-12-24 syncprov: lookfor entryCSN in sr_operational_attrs first, then in entry-attrs.
2015-12-24 slapo-pcache: fix race in consistency_check().
2015-12-24 slapd: orderliness CSN-queue by timestamp.
2015-12-24 slapd: orderliness CSN-queue by timestamp.
2015-12-24 slapd: fix race in daemon (suspend/resume listeners).
2015-12-15 mdbx: backport - Catch strdup failure in mdb_dbi_open().
2015-12-14 syncprov: si->si_ops_mutex for syncprov_detach_op().
2015-12-14 syncprov: op_copy() for syncprov_matchops().
2015-12-14 syncprov: crutch to avoid race with overlays.
2015-12-14 slapo-ppolicy: backport - ITS#8327 fix ppolicy_get_default.
2015-12-14 slapo-pcache: avoid tsan-trap by acl pickup.
2015-12-14 slapd: lock c_mutex in send_ldap_ber().
2015-12-14 slapd: fix races in bconfig.
2015-12-14 slapd: fix races around attribute-description list.
2015-12-14 slapd: fix race in connection-destroy.
2015-12-14 slapd: fix race in connection-bind.
2015-12-14 slapd: fix race at slap_sync_cookie list.
2015-12-14 slapd: fix daemon races.
2015-12-14 slapd: fix 'bd_self' for quorum and biglock.
2015-12-14 slapd: fix 'bd_self' for quorum and biglock.
2015-12-14 liblber: fix debug/logging race.
2015-12-14 liblber: fix debug/logging race.
2015-12-14 backend-sql: backport - ITS#8329 Add the id_query config item.
2015-12-14 backend-meta: fix ldap-context races.
2015-12-14 backend-mdb: fix races around indexer.
2015-12-14 backend-mdb: fix races around 'mi_numads'.
2015-12-14 backend-mdb: avoid tsan-trap by 'mi_nextid'.
2015-12-14 backend-ldap: avoid tsan-trap in ldap_back_getconn().
2015-12-14 backend-bdb: backport - ITS#8337 fix missing olcDbChecksum config attr.
2015-12-13 mdbx: backport - ITS#8336 fix page_search_root assert on FreeDB.
2015-12-13 mdbx: backport - ITS#8334 Fix MDB_APPENDDUP vs. rewrite(single item).
2015-12-13 backend-mdb: fix cursor-leak in mdb_ad_read().
2015-12-01 slapd: slap_cookie_parse() - rework to avoid memleak from syncprov.
2015-12-01 slapd: slap_cookie_merge() - return lead from the dest-cookie.
2015-12-01 slapd: slap_cookie_clean() - free ctxcsn to avoid leaks.
2015-12-01 libldap: fix wrong param-name in LDAP_STAILQ_ENTRY_INIT().
2015-11-27 syncrepl: keeps (don't reset) local contextCSN-cookie on REFRESH-error.
2015-11-27 syncprov: one more fix pausing in syncprov_db_destroy().
2015-11-27 syncprov: fix pausing in syncprov_db_destroy().
2015-11-27 slaptools: fix supported-features memleak.
2015-11-27 slappasswd: refix memleak to avoid 'undefined mode' msg.
2015-11-27 ldapsearch: more for slap-controls memleaks.
2015-11-26 ldap-backend: typo in memleak fix.
2015-11-26 ldap-backend: typo in memleak fix.
2015-11-25 slapd: fix logfile FILE memleak.
2015-11-25 slapd: fix config memleak around value_string.
2015-11-25 mdbx: backport - more for cursor tracking.
2015-11-25 mdbx: backport - more for cursor tracking.
2015-11-25 mdbx: backport - ITS#8323 Fix nested commit.
2015-11-25 mdbx: backport - Cleanup C_DEL flag usage.
2015-11-25 mdbx: backport - Cleanup C_DEL flag usage.
2015-11-23 mdbx: backport - ITS#8321 a lot for cursor tracking.
2015-11-23 mdbx: backport - ITS#8320 mdb_load: fix loading data from simple text files.
2015-11-23 mdbx: backport - ITS#8319 mdb_load: explain readline and mdb_cursor_put errors.
2015-11-22 slappasswd: fix memleaks.
2015-11-22 slapo-refint: fix runqueue memleak.
2015-11-22 slapo-dds: fix exop memleak.
2015-11-22 slapd: refine result-ref cleanup, adds rs_send_cleaup().
2015-11-22 slapd: refine config and fix memleaks around value_dn/value_ndn.
2015-11-22 slapd: frontendDB - fix minor memleaks.
2015-11-22 slapd: fix slap_listeners memleak.
2015-11-22 slapd: fix server-name memleak.
2015-11-22 slapd: fix schema/cr memleak.
2015-11-22 slapd: fix sasl config-rewrite memleak.
2015-11-22 slapd: fix oc-cache memleak.
2015-11-22 slapd: fix init loglevel memleak.
2015-11-22 slapd: fix attr_cache memleak.
2015-11-22 slapd: fix ServerID list memleak.
2015-11-22 slapd: fix FILE memleak in read_config_file().
2015-11-22 slapd: config-backend biglock/memleak.
2015-11-22 slapd: avoid referrals memleak for abandon case and protocol < LDAP_VERSION3.
2015-11-22 slapd, slap-tools: fix sasl-regexp memleak.
2015-11-22 slapadd: fix srec memleak.
2015-11-22 slap-tools: fix extop and controls memleaks.
2015-11-22 mdb-backend: fix tool-reindex txn/memleak.
2015-11-22 mdb-backend: fix search_stack memleak.
2015-11-22 librewrite: fix mappers memleak.
2015-11-22 ldapsearch: fix minor memleaks.
2015-11-22 ldapsearch: fix ldap-ctrl memleaks.
2015-11-22 ldapmodrdn: fix newSuperior memleak.
2015-11-22 ldapexop: fix memleak.
2015-11-22 ldap-backend: fix monitor memleak.
2015-11-22 ldap-backend: fix chain referrals memleak.
2015-11-22 ldap-backend: fix chain ref-backend memleak.
2015-11-22 client-tools: fix minor memleak (ldaphost).
2015-11-22 bdb-backend: fix uninit referenses.
2015-11-22 bdb-backend: fix search_stack memleak.
2015-11-20 syncrepl: fix present_list memleak.
2015-11-20 syncprov: avoid recursive/deadlock pausing the thread pool.
2015-11-20 slapd: fix backtrace minor memleak.
2015-11-19 mdbx: tools/tests - fix minor memleaks (for CI with Valgrind).
2015-11-19 mdbx: fix thread-local-storage memleak.
2015-11-19 mdbx: backport - ITS#8312 fix loose pages in commit(nested txn).
2015-11-10 syncrepl: fix retard checks - allow the entry-CSN to be the same as cookie from the origin SID.
2015-11-09 liblber: backport - ITS#8301 remove assert in ber_get_next.
2015-11-07 backend-mdb, backend-bdb: ITS#7256 A few issues discovered during testing slapmodify.
2015-11-06 syncrepl: backport - ITS#8277 simpler check for syncrepl on config DB.
2015-11-06 syncprov: backport - ITS#8281 fix delta-mmr with interrupted refresh.
2015-11-06 slapd: backport - ITS#8289 fix mod Increment with inherited attr type.
2015-11-06 libldap: backport - ITS#8295 fix Windows microsecond timer.
2015-11-06 libldap: backport - ITS#8273 Windows file:// URL fixup.
2015-11-06 backend-relay: backport - ITS#8284 olcRelay needs quotes.
2015-10-31 mdbx: fix segfault on close when open failed.
2015-10-13 syncrepl: fix quorum-by-sid (recovers notification).
2015-10-13 slapd: ldapsync - uses ber_mem instead of ch_mem, to avoid cross-thread collisions inside sl-malloc.
2015-10-11 syncrepl: rework csn-graduate to avoid backend's bugs.
2015-10-11 syncrepl: fix check_syncprov().
2015-10-11 syncrepl: deem that refresh-stage ends later, when all tasks done.
2015-10-11 syncprov: fix locking around syncCookies.
2015-10-11 slapd: fix config parsing ITS#8233 (#8251).
2015-10-11 slapd: ITS#8261 change sl_mem_detach to sl_mem_setctx.
2015-10-06 mdbx: backport - ITS#8221 don't merge branch pages needlessly.
2015-10-06 mdbx: backport - Fix typo in mdb_tassert().
2015-09-30 syncprov: assertion bugfix.
2015-09-09 slapo-rwm: ITS#7964 avoid double-unescaping rewrite rules.
2015-09-09 slapd-syncrepl: assumes fixed a race-bug in removal of syncrepl-config.
2015-09-06 slapo-rmw: ITS#7889 add olcDropUnrequested to olcRwmConfig.
2015-09-05 contrib-nssov: fix a ';' bug (socket was never closed).
2015-09-02 slapo-ppolicy: ITS#8234 revert to default policy on failure.
2015-09-02 slapo-ppolicy: ITS#7537 release entry on failure.
2015-09-02 slapd: ITS#8233 reject lines with unbalanced quotes.
2015-08-30 slapd: ITS#8232 avoid redundant abandon processing.
2015-08-30 slapd: ITS#8082 plug benign memleak.
2015-08-30 slapd-sasl: ITS#8218 zero filter after freeing.
2015-08-27 slapd-syncrepl: fix rare sigfault if HASHUUID enabled.
2015-08-27 slapd-syncprov: crutch-fix to avoid segfault/hang on overlay removal.
2015-08-27 slapd-monitor: crutch-fix to avoid segfault/hang on shutdown.
2015-08-25 slapd-syncprov: fix rare-race segfault on connection drop/abandon.
2015-08-21 slapd-syncrepl: fix reconnect-drop by limit-concurrent-refresh.
2015-08-20 slapd-ndb: fix 'uninit' warning and error-return in ndb-backend search.
2015-08-20 contrib-modules: fix 'uninit' warning in dsaschema_read_config().
2015-08-18 slapd-syncrepl: workaround for sync-flood with limit-concurrent-refresh is reached.
2015-08-15 slapd: ITS#8133 avoid mods during dds_db_open.
2015-08-15 slapd-policy: ITS#8185 add pwdMaxRecordedFailure.
2015-08-15 slap-mdb: dreamcatcher rework, follow ITS#8203 more fixes for #8036/#7904.
2015-08-13 slapd-rewrite/remap: ITS#8213 fix deleting rewrite rules.
2015-08-04 slapd-policy: ITS#8184 avoid redundant mod ops.
2015-08-04 slapd, libldap: ITS#8195 fix ITS#7027 regression, port number sign bit overflow.
2015-08-04 liblber, slapd: Avoid hex timestamp in middle of lines.
2015-08-04 contrib-modules, passwd/totp: Plug memleak on mismatched length.
2015-08-04 contrib-modules, passwd/totp: Fix setting authTimestamp on non-TOTP binds.
2015-08-04 contrib-modules, lastbind: Fix cfg OID typos.
2015-08-04 contrib-modules, adremap: Fix interaction with rwm.
2015-08-04 contrib-modules, adremap: Fix filter init.
2015-06-16 liblber: ITS#8158 Fix sendto() address length for CLDAP.
2015-05-21 slapd: ITS#8150 let check_name_index handle frontend.
2015-05-21 slapd: ITS#8129 fix typo from ITS#6613.
2015-05-21 slapd-mdb: ITS#8146 fix mdb_filter_candidates for unindexed attr.
2015-05-21 slapd-backldap: ITS#8142 drop client connection on remote failure.
2015-05-01 tools-ldapsearch: ITS#8118 dosearch, flush stdout.
2015-05-01 slapd-syncrepl: fix quorum when no any coincidences between P and R lists.
2015-05-01 slapd-syncrepl: fix one of memleak on shutdown (minor).
2015-05-01 slapd-syncrepl: ITS#8120 Move final CHECK_CSN block to before the mutex is unlocked.
2015-04-27 perl-backend: more for ITS#8105, convert perlModuleConfig.
2015-04-24 slapd: ITS#8108 silence rootdn check on hidden backends.
2015-04-24 slapd-syncrepl, syncprov: checks that a remote-ServerID is not the same.
2015-04-24 slapd-memberof: ITS#8107 don't shadow rc (already fixed in ReOpenLDAP).
2015-04-23 slapd-syncrepl: fix assertion in 'quorum' feature on RID-duplication.
2015-04-20 slapd-syncrepl: refine `quorum` feature, fixed few bugs.
2015-04-18 slapd: fix cookie-sids's pre-condition for syncrepl_del_nonpresent().
2015-04-16 slapd: fix reclaim in slap_sl_free().
2015-04-16 perl-backend: ITS#8105 - correctly convert perlModuleConfig.
2015-04-14 lmdb-backend: ITS#8103 fix crash with more than 65535 aliases in a scope.
2015-04-09 unique-overlay: ITS#8057 - Use an actual entry for modify/modrdn checks.
2015-04-05 slapd: sasl - ITS#8092 no-op if there's no context.
2015-04-05 libldap: ITS#8090 fix for async connect.
2015-03-23 contrib-modules: ITS#8080 more nssov fixes.
2015-03-18 contrib-modules: ITS#8079 fix nssov compare for usergroup.
2015-03-12 slapd: fix issue#17 - warnings from valgrind.
2015-03-11 contrib-modules: autogroup - ITS#8065 more for syncrepl compat.
2015-03-03 syncprov-overlay: refix cleanup for ls-malloc.
2015-03-03 syncprov-overlay: fix search-cleanup callback.
2015-03-02 slapd: refine syncprov, remove a bundle of memleaks.
2015-03-02 slapd: refine syncprov intermediate-cleanup.
2015-03-02 contrib-modules: allowed - fix uninitialized bug.
2015-02-26 contrib-modules: ITS#8065 don't log/replicate internal ops.
2015-02-26 contrib-modules: ITS#8006 more rootdn privs.
2015-02-25 syncprov: ITS#8063 don't block our own thread.
2015-02-18 sock-backend: ITS#8048 fix slapo-sock result.
2015-02-18 slapd: ITS#8039 plug syncprov memleak, include cleanup.
2015-02-18 slapd: ITS#8038 free presentlist at end of refresh.
2015-02-18 slapd: ITS#8036 - not affected ReOpenLDAP.
2015-02-18 slapd: ITS#8035 plug memleaks in syncrepl.
2015-02-18 slapd-syncrepl: fix selection for removal in multimaster delete-non-present.
2015-02-18 slapd, unique-overlay: ITS#8057 Enforce uniqueness unless permitted by ACL.
2015-02-18 slapd, tests: ITS#8046 fix vrFilter_free, test added.
2015-02-18 slapd, syncprov-overlay: ITS#8043 - don't leave dangling syncops.
2015-02-18 ndb-backend: don't ignore error from NdbDictionary::Dictionary::listObjects().
2015-02-18 monitor-backend: FIXME - SIGSEGV in monitor-backend on shutdown.
2015-02-18 mdb-backend: ITS#8049 fix typo in config strings.
2015-02-18 libldap: ITS#8050 fix ldap_get_option(LDAP_OPT_SESSION_REFCNT).
2015-01-22 sql-backend: fix minor sql-types missmatch.
2015-01-22 slapi: fix unused result lockf() and LockFile().
2015-01-22 slapd-backends, slapi: fix 'uninitialized' warnings.
2015-01-22 meta-backend: fix wrong logging (missing '%s' in format string).
2015-01-22 bdb/hdb-backend: fix handling BDB_PGSIZE for CONFIG-EMIT.
2015-01-21 deref-overlay: ITS#8027 require non-empty AttributeList.
2015-01-16 ITS#8016 return errmsg for unknown envflags.
2015-01-14 ITS#8014 plug onetime leak in slapadd -w
2015-01-13 ITS#8011 few corrections for lmdb-backend.
Performance
~~~~~~~~~~~
2018-09-26 v1.1.10: none
2018-08-02 v1.1.9
2018-06-30 slapd: minor refine suspend/refine listeners.
2018-06-04 v1.1.8
2018-05-04 mdbx: backport - XCURSOR_REFRESH() fixups/cleanup.
2018-03-12 syncprov, syncrepl, accesslog: reduce unnecessary writes of contextCSN entry (ITS#8789).
2018-02-23 v1.1.7
2018-02-15 slapd: isolate tsan-mutexes under #ifdef __SANITIZE_THREAD__.
2018-02-13 accesslog: fix CSNs for purge logs.
2018-02-11 syncprov: import - Don't keep sl_mutex locked when playing the sessionlog (ITS#8486).
2018-01-23 backend-mdb: import - optimization restart search txn (ITS#8226).
2017-08-12 v1.1.6
2017-02-15 mdbx: 'unlikely' for DB_STALE.
2017-01-27 mdbx: check __OPTIMIZE__ for __hot/__cold/__flatten.
2016-12-30 v1.1.5: none
2016-11-30 v1.1.4: none
2016-08-30 v1.1.3
2016-08-28 libreldap: remove resolv-mutex around getnameinfo() and getnameinfo() (Debian#340601).
2016-08-24 slapd: fixed major typo in rurw_r_unlock() which could cause performance degradation.
2016-07-30 v1.1.2: none
2016-07-12 v1.1.1: none
2016-05-09 v1.0
2016-05-08 mdbx: more likely/unlikely for mdb_node_add.
2016-05-07 slapd: remove crutch-locks from config-backend.
2016-05-07 mdbx: don't memcpy when src eq dest.
2016-05-07 backend-mdb: logs begin/end of OOM, but not an iteration.
2016-05-04 mdbx: refine find_oldest() and oom_kick().
2016-04-27 mdbx: refine/speedup mdb_cmp_memn().
2016-04-27 mdbx: MADV_REMOVE for unallocated space.
2016-04-26 mdbx: extra backlog's page for MDB_LIFORECLAIM.
2016-04-20 mdbx: rework backlog for freeDB deletion.
2016-04-20 mdbx: refine mdb_env_sync0().
2016-04-19 mdbx: refine mdbx_cmp2int().
2016-04-13 mdbx: backport - mdb_drop optimization.
2016-03-22 slapd: remove unused scoped-locks.
2016-03-21 syncrepl: non-modal del_nonpresent().
2016-03-21 syncprov: less locking for mock ContextCSN.
2016-03-17 syncrepl: less debug/logging.
2016-03-17 slapd: less debug/logging for biglock.
2016-03-17 mdbx: more __inline/__hot.
2016-03-17 backend-mdb: less debug/logging for dreamcatcher.
2016-03-13 mdbx: refine mdb_meta_head_r().
2016-03-13 mdbx: refine mdb_env_sync().
2016-03-04 syncrepl: simplify biglock usage in msg-loop.
2016-03-04 slapd: kill bconfig's crutch mutex.
2016-02-10 syncrepl: minor speedup check_for_retard().
2016-01-14 mdbx: msync only used part instead of entire db.
2015-12-24 syncprov: syncprov_op_mod - avoid 'hollow' contextCSN updates.
2015-12-17 syncrepl: uses pulled-cookie to avoid locking.
2015-12-17 syncrepl: cookie-push 11/11 - optimize cookie-ops.
2015-12-17 syncrepl: RIP for pending cookies with locking.
2015-12-17 slapd: checks emptiness of cookie only by 'numcsns'.
2015-12-17 slapd, back-mdb: 'hollow' flag of modify-ops.
2015-12-13 backend-mdb: remove unnecessary assert from mdb_online_index().
2015-08-30 slapo-refint: ITS#8220 restore refint performance.
2015-02-18 syncrepl: ITS#8042 - streamline presentlist to reduce memory usage.
2015-03-26 slapd: use likely/unlikely for reopenldap_mode_xxx().
2015-03-26 all: unlikely for assert().
2015-02-18 slapd-syncprov: refine building list of uuids.
Build
~~~~~
2018-09-26 v1.1.10
2018-09-24 libreldap: import - add missing includes (ITS#8809).
2018-08-08 reopenldap: fix GCC-8.x warnings.
2018-08-08 configure: rework search `NdbClient` headers and libraries.
2018-08-07 configure: add `OSSP-UUID` search for modern Fedora/RHEL.
2018-08-07 configure: fix `EXTRA_CFLAGS` typo.
2018-08-06 configure: explicit separation of experimental backends.
2018-08-03 configure: refine error-msg for mysql_cluster's `mysql_config`.
2018-08-02 v1.1.9
2018-07-30 configure: update for modern libtool.
2018-07-02 configure: fix quoting for empty variable.
2018-07-01 configure: add checking for libnsspem.
2018-06-04 v1.1.8
2018-05-04 mdbx: fix check make target (minor).
2018-04-04 reopenldap: refine bootstrap.sh
2018-03-29 automake: fix -fno-lto for ".symver memcpy_compat, memcpy@@@GLIBC_2.2.5"
2018-03-12 liblutil: fix warning variable 'hex' set but not used (minor).
2018-03-12 libreldap, slapd: avoid trigraphs in comments (minor).
2018-03-12 ldapmodify: fix 'uninit' warnigs form lcc (minor).
2018-03-12 libreldap: fix callbacks for NSPR.
2018-03-12 libreldap: #ifdef for SSL_LIBRARY_VERSION_TLS_1_3.
2018-03-12 liblutil: fix 'uninit' warnig from lcc (minor).
2018-02-23 v1.1.7
2018-02-14 contrib-smbk5pwd: fix RELDAP_TLS/RELDAP_TLS_FALLBACK.
2018-02-14 contrib-passwd-totp: fix RELDAP_TLS/RELDAP_TLS_FALLBACK.
2018-02-14 contrib-passwd-pbkdf2: refine RELDAP_TLS/RELDAP_TLS_FALLBACK.
2018-02-14 libreldap, slapd: fix RELDAP_TLS/RELDAP_TLS_FALLBACK.
2018-01-31 libreldap: fix uninit warning for GNUTLS.
2018-01-30 libreldap: import - Fix compilation with older versions of OpenSSL (ITS#8753, ITS#8774).
2018-01-30 libreldap: fix HAVE_OPENSSL_CRL and HAVE_GNUTLS usage.
2018-01-30 libreldap: import - Move base64 decoding to separate file (ITS#8753).
2018-01-28 reopenldap: refine reopenldap's macros definitions.
2018-01-28 slapd: add LDAP_GCCATTR for compat.
2018-01-28 configure: fix EXTRA_CFLAGS substitution magic.
2018-01-28 contrib-modules: refine totp for OpenSSL 1.1.0 compatibility.
2018-01-28 slapd: import - add crypt_r() support (ITS#8719).
2018-01-23 libmdbx: fix warning about <sys/sysmacros.h> for major macro (tests only).
2018-01-23 configure, contrib/smbk5pwd: add check for modern hdb_generate_key_set_password().
2018-01-23 backend-ndb: fix 'directive output may be truncated...'
2018-01-23 ci: auto-bootstrap if ./configure not exists.
2018-01-23 backend-bdb: fix 'directive output may be truncated writing'...
2018-01-23 backend-sql: fix 'directive output may be truncated writing...'
2018-01-23 backend-perl: fix 'directive output may be truncated writing...'
2018-01-23 backend-meta: fix 'directive output may be truncated writing...'
2018-01-23 libreldap: import - fix build if EGD not disabled in OpenSSL (ITS#8687).
2018-01-21 backend-mdb: fix "warning: '%s' directive output may be truncated..."
2018-01-12 build: patch 'libltdl' to avoid clang > 3.x warnings.
2017-08-20 travis-ci: allow build in forks
2017-08-12 v1.1.6
2017-08-02 configure: fix subst for VALGRIND_SUPPRESSIONS_FILES.
2017-08-02 configure: add '--enable-ci' option for Continuous Integration.
2017-05-01 bootstrap: add patch for old ltmain.sh versions.
2017-05-01 configure: check for pkg_config.
2017-04-15 configure: use CPPFLAGS while check headers.
2017-04-15 configure: use OPENSSL_CFLAGS and GNUTLS_CFLAG while check headers.
2017-04-09 build: add workaround for libtool `-no-suppress`.
2017-04-09 build: add `common.mk` (placeholder for now).
2017-04-09 build: add support for EXTRA_CFLAGS.
2017-04-09 slapd: fix gcc `-Ofast` warnings.
2017-04-09 build: check libsodium >= 1.0.9 for argon2.
2017-04-07 dist: use `expr` instead of `bc`.
2017-03-29 reopenldap: update automake's stuff for libmdbx changes.
2017-03-12 contrib: `-Wno-address` for nssov.
2017-03-12 slapd: checks and HAVE_ENOUGH4BACKTRACE for backtrace feature (compatibility).
2017-03-12 configure: add missing ldap_dir.h.in (oops).
2017-02-27 configure: libuuid by pkg-config.
2017-02-27 reopenldap: initial for cross-compilation.
2017-01-08 mdbx: adds -ffunction-sections for CFLAGS.
2017-01-04 mdbx: enable C99.
2016-12-30 v1.1.5
2016-12-14 configure: checking for libperl.
2016-12-13 reopenldap: fix `unused` warnings for `--disable-debug`.
2016-12-04 build: add its-regressions to `make test` target.
2016-12-04 reopenldap: fix GCC 6.x warnings (misleading indentation).
2016-12-04 tests: refine ITS's regression tests.
2016-12-03 build: fix automake xxx_DEPENDENCIES.
2016-12-03 ci: scripts from `ps/build` branch.
2016-12-03 configure: adds `check-news` option.
2016-11-30 v1.1.4
2016-11-12 ppolicy: fix libltdl's includes for ppolicy overlay.
2016-11-12 libltdl: move `build/libltdl` to the start of SUBDURS.
2016-10-26 configure: don't enable tracing for MDBX by --enable-debug.
2016-10-25 reopenldap: fix missing space in bootstrap.sh
2016-08-30 v1.1.3
2016-08-28 configure: added `--with-gssapi=auto/yes/no`.
2016-08-25 mdbx: fixed CC and XCFLAGS in 'ci' make-target rules.
2016-08-24 mdbx: fixed 'clean' make-target typo.
2016-08-23 mdbx: added Makefile deps from mdbx.c
2016-08-18 tests: fixed lt-exe-name for coredump collection.
2016-08-18 backend-mdb: enable debug for libmdbx if --enable-debug.
2016-08-18 mdbx: make ci-target without NDEBUG and with MDB_DEBUG=2.
2016-08-04 mdbx: allow CC=xyz for ci-target rules.
2016-08-14 configure: fixed cases when corresponding to --with-tls=xyz package not available.
2016-08-09 configure: take in account --enable-lmpasswd for TLS choice.
2016-08-09 configure: workaround for --enable-lmpasswd with GnuTLS (ITS#6232).
2016-08-08 liblutils: fixed build with --enable-lmpasswd.
2016-08-08 libreldap: fixed warnings when Mozilla NSS used.
2016-08-08 configure: rework TLS detection (Mozilla NSS, GnuTLS, OpenSSL).
2016-08-08 libreldap: fixed build --with-tls=gnutls.
2016-08-08 contrib: don't build passwd/totp, passwd/pbkdf2 and smbk5pwd with --with-tls=moznss.
2016-08-08 automake: install lber_types.h and ldap_features.h
2016-08-07 automake: fixed $(DESTDIR) for install/uninstall hooks.
2016-08-07 automake: fixed ldapadd tool uninstall.
2016-08-07 configure: Check whether ucred is defined without _GNU_SOURCE.
2016-08-07 slapd: don't link with BerkeleyDB, but bdb/hdb backends only.
2016-08-07 configure: checking for krb5-gssapi for contrib-gssacl.
2016-08-07 configure: Use pkg-config for Mozilla NSS library detection.
2016-08-07 libreldap: fixed build in case --with-tls=moznss.
2016-07-30 v1.1.2
2016-07-28 slapd: fix old gcc's double typedef error.
2016-07-28 slapd: fix bdb/hdb backends build distinction.
2016-07-28 contrib: fix out-of-source build.
2016-07-28 configure: build contrib-modiles conditionaly if 'heimdal' package not available.
2016-07-28 slapd: fix warning with --enable-experimental.
2016-07-28 pcache: fix build with --enable-experimental.
2016-07-28 libreldap: fix warning with --enable-experimental.
2016-07-28 backend-ldap, backend-meta: fix build with --enable-experimental.
2016-07-27 slapd: fix dynamic module support.
2016-07-27 configure: refine libtool patch for LTO.
2016-07-27 build: fixup banner-versioning for tools and libs.
2016-07-25 slapd: fix build with --enable-wrappers.
2016-07-24 all: fixup 'unused' vars, in case assert-checking disabled.
2016-07-20 build: silencing make by default.
2016-07-20 build: mbdx-tools within mdb-backend.
2016-07-12 v1.1.1
2016-06-22 contrib-modules: fix build, contrib-mod.mk
2016-06-22 configure: fix 'pointers aliasing' for libltdl.
2016-06-22 configure: check for libbfd and libelf for backtrace.
2016-06-22 configure: check for 'soelim' and 'soelim -r'.
2016-06-22 configure: build librewrite only if rwm-overlay or meta-backed is enabled.
2016-06-22 configure: PERL_LDFLAGS and PERL_RDIR (rpath) for perl-backend.
2016-06-22 configure: NDB_LDFLAGS and NDB_RDIR (rpath) for ndb-backend.
2016-06-06 reopenldap: fix build parts by C++ (back-ndb).
2016-06-06 mdbx: fix build by clang (missing-field-initializers).
2016-06-04 slapd: fix build ASAN + dynamic + visibility=hidden.
2016-06-04 libreldap: fix 'msgid' may be used uninitialized in ldap_modify_*().
2016-06-04 configure: error if libuuid is missing.
2016-06-02 libreldap: fix build by clang.
2016-06-01 shell-backends: fix passwd-shell tool building.
2016-06-01 contrib/acl: checking for --enable-dynacl.
2016-05-28 slapd: fix keepalive-related typo in slap_listener().
2016-05-26 libldap: fix typo ';' in ldap_pvt_tcpkeepalive().
2016-05-21 libldap: fix build with GnuTLS (error at @wanna_steady_or_not).
2016-05-09 v1.0
2016-03-12 backend-mdb: ability to use old/origin liblmdb.
2016-02-02 libldap: ITS#8353 more for OpenSSL 1.1.x compat.
2016-01-25 libldap: ITS#8353 partial fixes (openssl 1.1.x).
2015-11-25 mdbx: backport - ITS#8169 Allow passing mandir to make install.
2015-09-03 contrib-smbk5pwd: ITS#8235 fix compiler warnings.
2015-08-24 slapd: fix 'uninit' warnings from gcc 4.4 (RHEL 6).
2015-02-18 build: ITS#8056 fix libdb detection with gcc 5.
Cosmetics
~~~~~~~~~
2018-09-26 v1.1.10
2018-09-11 reopenldap: fix typo with ITS#8843 description.
2018-08-03 reopenldap: reformat source code by `clang-format-6.0`.
2018-08-03 reopenldap: remove `LDAP_P` macro.
2018-08-02 reopenldap: drop `LDAP_CONST` macro.
2018-08-02 v1.1.9
2018-07-01 libreldap: message-hint to check 'libnsspem.so' for TLS by MozNSS.
2018-06-30 slapd: cleanup-drop SLAP_FD2SOCK/SLAP_SOCK2FD/SLAP_SOCKNEW.
2018-06-04 v1.1.8
2018-05-04 mdbx: minor fixup comments and warnings.
2018-03-23 reopenldap: sync CHANGES.OpenLDAP.
2018-02-23 v1.1.7
2018-02-14 tests: update its8800 to be less different from openldap.
2018-02-14 tests: enumerate its-ignore messages.
2018-02-11 reopenldap: sync CHANGES.OpenLDAP (ITS#8486, ITS#8100).
2018-02-11 libmdbx: legacy - sync CHANGES with LMDB (ITS#8622, ITS#8722).
2018-02-11 reopenldap: sync CHANGES.OpenLDAP.
2018-02-11 syncrepl: refine loging, rename SYNCLOG_LOGBASED (cosmetics).
2018-02-10 libmdbx: legacy - sync CHANGES with LMDB.
2018-01-30 reopenldap: import - Remove kqueue from project list (ITS#6300).
2018-01-28 reopenldap: rename s/MAY_UNUSED/__maybe_unused/.
2018-01-28 reopenldap: import - spelling fixes (ITS#8605).
2018-01-28 syncprov: minor refine loging when the consumer has a newer cookie than the provider (ITS#8527).
2018-01-23 syncrepl: minor logging spaces (cosmetics).
2018-01-23 slapd: fix 'must be configured...' spelling.
2018-01-23 configure: fix/move final 'done' message.
2018-01-23 libreldap: import - Fix "errror" typo.
2018-01-23 overlay-accesslog: import - additional debug info, thread ID of rmutex lockers (ITS#8752).
2018-01-22 contrib: move 'docker' dir into contrib.
2018-01-21 reopenldap: HNY!
2017-08-12 v1.1.6
2017-08-02 configure: fix message alignment (cosmetics).
2017-08-12 reopenldap: update links after move the repo.
2017-08-12 mdbx: update links after move the repo.
2017-04-18 ci: add Travis-CI status to README.md
2017-04-18 reopenldap: add TODO.md
2017-04-18 libreldap: backport - Fix minor typo (ITS#8643).
2017-04-09 back-monitor: fix monitoredInfo.
2017-03-12 reopenldap: fix 'emtpy' typos (ITS#8587).
2017-02-17 syncprov: refine 'syncprov-sessionlog' config.
2017-02-17 syncprov: minor renames (cosmetics).
2017-02-17 syncprov: refine add_slog (cosmetics).