whitespace fixes

This commit is contained in:
Jeffrey C. Ollie 2011-03-25 12:51:29 -05:00
parent 1799f36ef2
commit ccf26cb913

View File

@ -134,35 +134,35 @@ rm -rf %{buildroot}
* Wed Jan 27 2010 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.8.0-1 * Wed Jan 27 2010 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.8.0-1
- New since 1.7.1: - New since 1.7.1:
- -
- Support for hmac-sha1, hmac-sha224, hmac-sha256, hmac-sha384 and - Support for hmac-sha1, hmac-sha224, hmac-sha256, hmac-sha384 and
- hmac-sha512 has been contributed by Kevin Chen. - hmac-sha512 has been contributed by Kevin Chen.
- -
- The tokenizer's tokens are now Token objects instead of (type, - The tokenizer's tokens are now Token objects instead of (type,
- value) tuples. - value) tuples.
- -
- Bugs fixed since 1.7.1: - Bugs fixed since 1.7.1:
- -
- Escapes in masterfiles now work correctly. Previously they were - Escapes in masterfiles now work correctly. Previously they were
- only working correctly when the text involved was part of a domain - only working correctly when the text involved was part of a domain
- name. - name.
- -
- When constructing a DDNS update, if the present() method was used - When constructing a DDNS update, if the present() method was used
- with a single rdata, a zero TTL was not added. - with a single rdata, a zero TTL was not added.
- -
- The entropy pool needed locking to be thread safe. - The entropy pool needed locking to be thread safe.
- -
- The entropy pool's reading of /dev/random could cause dnspython to - The entropy pool's reading of /dev/random could cause dnspython to
- block. - block.
- -
- The entropy pool did buffered reads, potentially consuming more - The entropy pool did buffered reads, potentially consuming more
- randomness than we needed. - randomness than we needed.
- -
- The entropy pool did not seed with high quality randomness on - The entropy pool did not seed with high quality randomness on
- Windows. - Windows.
- -
- SRV records were compared incorrectly. - SRV records were compared incorrectly.
- -
- In the e164 query function, the resolver parameter was not used. - In the e164 query function, the resolver parameter was not used.
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.1-2 * Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.1-2
@ -170,56 +170,56 @@ rm -rf %{buildroot}
* Fri Jun 19 2009 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.7.1-1 * Fri Jun 19 2009 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.7.1-1
- New since 1.7.0: - New since 1.7.0:
- -
- Nothing - Nothing
- -
- Bugs fixed since 1.7.0: - Bugs fixed since 1.7.0:
- -
- The 1.7.0 kitting process inadventently omitted the code for the - The 1.7.0 kitting process inadventently omitted the code for the
- DLV RR. - DLV RR.
- -
- Negative DDNS prerequisites are now handled correctly. - Negative DDNS prerequisites are now handled correctly.
* Fri Jun 19 2009 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.7.0-1 * Fri Jun 19 2009 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.7.0-1
- New since 1.6.0: - New since 1.6.0:
- -
- Rdatas now have a to_digestable() method, which returns the - Rdatas now have a to_digestable() method, which returns the
- DNSSEC canonical form of the rdata, suitable for use in - DNSSEC canonical form of the rdata, suitable for use in
- signature computations. - signature computations.
- -
- The NSEC3, NSEC3PARAM, DLV, and HIP RR types are now supported. - The NSEC3, NSEC3PARAM, DLV, and HIP RR types are now supported.
- -
- An entropy module has been added and is used to randomize query ids. - An entropy module has been added and is used to randomize query ids.
- -
- EDNS0 options are now supported. - EDNS0 options are now supported.
- -
- UDP IXFR is now supported. - UDP IXFR is now supported.
- -
- The wire format parser now has a 'one_rr_per_rrset' mode, which - The wire format parser now has a 'one_rr_per_rrset' mode, which
- suppresses the usual coalescing of all RRs of a given type into a - suppresses the usual coalescing of all RRs of a given type into a
- single RRset. - single RRset.
- -
- Various helpful DNSSEC-related constants are now defined. - Various helpful DNSSEC-related constants are now defined.
- -
- The resolver's query() method now has an optional 'source' parameter, - The resolver's query() method now has an optional 'source' parameter,
- allowing the source IP address to be specified. - allowing the source IP address to be specified.
- -
- Bugs fixed since 1.6.0: - Bugs fixed since 1.6.0:
- -
- On Windows, the resolver set the domain incorrectly. - On Windows, the resolver set the domain incorrectly.
- -
- DS RR parsing only allowed one Base64 chunk. - DS RR parsing only allowed one Base64 chunk.
- -
- TSIG validation didn't always use absolute names. - TSIG validation didn't always use absolute names.
- -
- NSEC.to_text() only printed the last window. - NSEC.to_text() only printed the last window.
- -
- We did not canonicalize IPv6 addresses before comparing them; we - We did not canonicalize IPv6 addresses before comparing them; we
- would thus treat equivalent but different textual forms, e.g. - would thus treat equivalent but different textual forms, e.g.
- "1:00::1" and "1::1" as being non-equivalent. - "1:00::1" and "1::1" as being non-equivalent.
- -
- If the peer set a TSIG error, we didn't raise an exception. - If the peer set a TSIG error, we didn't raise an exception.
- -
- Some EDNS bugs in the message code have been fixed (see the ChangeLog - Some EDNS bugs in the message code have been fixed (see the ChangeLog
- for details). - for details).