summaryrefslogtreecommitdiffstats
path: root/VERSION
diff options
context:
space:
mode:
authorJan Cholasta <jcholast@redhat.com>2016-04-27 14:26:59 +0200
committerJan Cholasta <jcholast@redhat.com>2016-05-25 16:06:26 +0200
commiteb8be95043210cf3be0e07d3def1bd3439f9e540 (patch)
tree059c21e560efafa21245d36ab2799be7b6af241a /VERSION
parentb6af621432a4120f1e895315259537546dd99f4d (diff)
downloadfreeipa-eb8be95043210cf3be0e07d3def1bd3439f9e540.tar.gz
freeipa-eb8be95043210cf3be0e07d3def1bd3439f9e540.tar.xz
freeipa-eb8be95043210cf3be0e07d3def1bd3439f9e540.zip
dns: do not rely on server data structures in code called on client
Replace code which references the DNSRecord and dnsrecord classes with equivalent code which uses only generic data structures. This will make it possible to move client code to ipaclient without dnsrecord bits, DNSRecord and all its subclasses. The conversion from record value to structured record can't be done on the client without DNSRecord and subclasses. Introduce a new internal command dnsrecord_split_parts to do the job on the server when necessary. https://fedorahosted.org/freeipa/ticket/4739 Reviewed-By: David Kupka <dkupka@redhat.com>
Diffstat (limited to 'VERSION')
-rw-r--r--VERSION4
1 files changed, 2 insertions, 2 deletions
diff --git a/VERSION b/VERSION
index 36d3fe267..17b335280 100644
--- a/VERSION
+++ b/VERSION
@@ -90,5 +90,5 @@ IPA_DATA_VERSION=20100614120000
# #
########################################################
IPA_API_VERSION_MAJOR=2
-IPA_API_VERSION_MINOR=166
-# Last change: tbabej - idviews: Add user certificate attribute to user ID overrides
+IPA_API_VERSION_MINOR=167
+# Last change: dns: do not rely on server data structures in code called on client