summaryrefslogtreecommitdiffstats
path: root/lib/ldb/ABI
Commit message (Collapse)AuthorAgeFilesLines
* ldb: version 1.1.20Stefan Metzmacher2015-01-242-0/+265
| | | | | | | | - Bug 9810 - validate_ldb of String(Generalized-Time) does not accept millisecond format ".000Z" Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org> Reviewed-by: Günther Deschner <gd@samba.org>
* ldb: bump to version 1.1.19Andrew Bartlett2014-12-222-0/+265
| | | | | | Signed-off-by: Andrew Bartlett <abartlet@samba.org> Pair-programmed-by: Garming Sam <garming@catalyst.net.nz> Signed-off-by: Garming Sam <garming@catalyst.net.nz>
* ldb: version 1.1.18Stefan Metzmacher2014-11-292-0/+264
| | | | | | | | | | | | | | This release contains: - fixes for segfaults in pyldb - documentation fixes - build system improvements Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Volker Lendecke <vl@samba.org> Autobuild-User(master): Volker Lendecke <vl@samba.org> Autobuild-Date(master): Sat Nov 29 14:45:56 CET 2014 on sn-devel-104
* ldb: change version to 1.1.17Stefan Metzmacher2014-05-022-0/+264
| | | | | | | | This adds some pyldb methods for ldb.Dn. Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Jelmer Vernooij <jelmer@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
* ldb: bump version to allow a depencency on the substring crash fixAndrew Bartlett2013-06-242-0/+264
| | | | | Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
* ldb: Ensure to decrement the transaction_active whenever we delete a transactionAndrew Bartlett2013-01-262-0/+264
| | | | | | | | | | | | | | | | | This is in the error path for prepare_commit, which rarely fails, but when it does we need to ensure that when a new transaction is opened, that it really starts a new transaction. We bump the version to recognise critical fix for the AD DC Without this fix, a single invalid inbound replicated link disables all subsequent replication as we operate without a transaction (which is refused by ldb_tdb). Andrew Bartlett Reviewed-by: Matthieu Patou <mat@matws.net> Reviewed-by: Stefan Metzmacher <metze@samba.org>
* ldb: fixed callers for ldb_pack_data() and ldb_unpack_data()Andrew Tridgell2012-11-012-0/+264
| | | | | | | | | | | with ltdb_pack_data() and ltdb_unpack_data() now moved into common, we need to increase the minor version and fixup callers of the API Note that this relies on struct ldb_val being the same shape as TDB_DATA, in much the same way as we rely on ldb_val and DATA_BLOB being the same shape. Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* ldb: bump version to 1.1.13 so the 4.0 release can get the isprint fixAndrew Bartlett2012-09-172-0/+262
| | | | | Autobuild-User(master): Andrew Bartlett <abartlet@samba.org> Autobuild-Date(master): Mon Sep 17 23:47:57 CEST 2012 on sn-devel-104
* lib/ldb: Avoid printing secret attributes in ldb trace logsAndrew Bartlett2012-08-292-0/+262
| | | | | | | | These are printed when Samba has debug level 10, which is often used for debugging. Instead, print a note to say that this attribute has been skipped. Andrew Bartlett
* lib/ldb: Bump ldb version to 1.1.11Andrew Bartlett2012-08-282-0/+261
| | | | | | | This will ensure the next Samba release requires an ldb with the recent fixes. Andrew Bartlett
* lib/ldb: Do not vasprintf() the tevent debug messages that will not be shownAndrew Bartlett2012-08-092-0/+261
| | | | | | | | | | This malloc() and free() actually shows up quite high on a call profile of provision of the AD DC. This allows the debug handler to decide if the argument list should be printed. Andrew Bartlett
* lib/ldb: Ensure rename target does not exist before deleting old recordAndrew Bartlett2012-07-312-0/+260
| | | | | | | | This is all in a transaction, but when we are handling rename errors in the repl_meta_data module, we key off the error, and do not close the transaction. We found that the old record was gone and so could not try renaming it again to a conflict DN. Andrew Bartlett
* lib/ldb: Bump ldb release due to pyldb changesAndrew Bartlett2012-07-092-0/+260
| | | | | | | | | | We strictly need these changes to pass make test, and the concat change is backwards incompatible, so we really want to use the right version. Andrew Bartlett Autobuild-User(master): Andrew Bartlett <abartlet@samba.org> Autobuild-Date(master): Mon Jul 9 04:34:06 CEST 2012 on sn-devel-104
* ldb: bump version due to header and internal implementation changesAndrew Bartlett2012-07-032-0/+260
| | | | | | | | | We need this version, not the previous release, for Samba. Andrew Bartlett Autobuild-User(master): Andrew Bartlett <abartlet@samba.org> Autobuild-Date(master): Tue Jul 3 17:20:32 CEST 2012 on sn-devel-104
* ldb: added ldb_msg_element_equal_ordered()Andrew Tridgell2012-04-182-0/+260
| | | | | this gives us a order sensitive msg element comparison. We need this to allow dbcheck to fix the order of objectClass attributes.
* ldb: Allow access to the line number while reading ldif from a fileAndrew Bartlett2012-04-102-0/+259
|
* Update ldb API sigs.Jelmer Vernooij2011-11-302-0/+258
|
* ldb: change version to 1.1.3 after pyldb changesStefan Metzmacher2011-10-102-0/+258
| | | | | | | metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Mon Oct 10 14:24:25 CEST 2011 on sn-devel-104
* pyldb: Generate ABI file.Jelmer Vernooij2011-08-071-0/+2
|
* ldb: added signatures for 1.1.2Andrew Tridgell2011-08-041-0/+256
|
* ldb: added ldb_val_string_cmp()Andrew Tridgell2011-07-131-0/+254
| | | | | | this should help fix some places where we run past the end of a string Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* ldb: make ldb a top level library for Samba 4.0Andrew Bartlett2011-07-0518-0/+4260
Signed-off-by: Andrew Tridgell <tridge@samba.org>