]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
more 1.10 prep
authorBob Halley <halley@dnspython.org>
Fri, 30 Dec 2011 17:06:53 +0000 (17:06 +0000)
committerBob Halley <halley@dnspython.org>
Fri, 30 Dec 2011 17:06:53 +0000 (17:06 +0000)
ChangeLog
README

index 71b796149077fb336ba1433f32b778fc37aa407b..f916ad5c508065bf6ae4d13ec84182335fe76be5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,9 @@
-2011-08-22  Robert Halley  <halley@dnspython.org>
+2011-08-22  Bob Halley  <halley@dnspython.org>
 
-       * dns/resolver.py: Added LRUCache, which allows a maximum number
-         of nodes to be cached, and removes the least-recently used node
-         when adding a new node to a full cache.
+       * dns/resolver.py: Added LRUCache.  In this cache implementation,
+         the cache size is limited to a user-specified number of nodes, and
+         when adding a new node to a full cache the least-recently used
+         node is removed.
 
 2011-07-13  Bob Halley  <halley@dnspython.org>
 
diff --git a/README b/README
index 367e7a2b76e8bd3e467f64feb1286780d3efee39..ac34a0da2f737046b7fa1de26bdae71f8462c4fd 100644 (file)
--- a/README
+++ b/README
@@ -26,11 +26,26 @@ This is dnspython 1.10.0
 
 New since 1.9.4:
 
-        XXX TBS.
+               Added dns.resolver.LRUCache.  In this cache implementation,
+       the cache size is limited to a user-specified number of nodes,
+       and when adding a new node to a full cache the least-recently
+       used node is removed.  If you're crawling the web or otherwise
+       doing lots of resolutions and you are using a cache, switching
+       to the LRUCache is recommended.
+
+       The python socket module's DNS methods can be now be overriden
+       with implementations that use dnspython's resolver.
+
+       Old DNSSEC types KEY, NXT, and SIG have been removed.
 
 Bugs fixed since 1.9.4:
 
-        XXX TBS.
+       IPv4 and IPv6 address processing is now stricter.
+
+       Bounds checking of slices in rdata wire processing is now more
+       strict, and bounds errors (e.g. we got less data than was
+       expected) now raise dns.exception.FormError rather than
+       IndexError.
 
 New since 1.9.3: