update Changelogs

This commit is contained in:
Benjamin Fry 2017-11-01 05:48:16 -07:00
parent 407eacc943
commit 25b16b6294
2 changed files with 11 additions and 5 deletions

View File

@ -3,14 +3,14 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
## 0.12.1
## 0.13.0
### Added
- TRust-DNS Proto crate to separate server management from base operations
- TRust-DNS Proto crate to separate server management from base operations #222
- TRust-DNS Util crate for dnssec management tools (@briansmith)
- Integration tests for Server to validate all supported DNSSec key types
- Common feature `dnssec-ring`, `dnssec-openssl`, and `dnssec` across all crates
- Common features `dnssec-ring`, `dnssec-openssl`, and `dnssec` across all crates
- Clarified `tls` feature with `tls-openssl`, and `tls` in server
### Changed
@ -22,15 +22,19 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Many interfaces moved from `client::ClientStreamHandle` to `trust_dns_proto::DnsStreamHandle`
- `Message::sign` has been renamed and change to the more general method `Message::finalize`
- Some `io::Error`s have been converted to `trust_dns_proto::ProtoError`
- `SyncClient` and `SecureSyncClient` are now `Send + Sync`
- `SyncClient` and `SecureSyncClient` are now `Send + Sync` #245
### Fixed
- Server signing issues when loading from persistence
- Server: signing issues when loading from persistence
- Server: When SupportedAlgorithms (rfc6975) not supplied default to returning all signatures #215
### Removed
- Removed the `NativeTls` and `OpenSSL` `ClientConnection` variants, used the Rustls impls or the tokio based `TlsClientStream` instead. This was required for `SyncClient` being `Send + Sync`
- Server: no longer auto-generate keys on startup #218
- All deprecated APIs removed from -proto #262
- Server: removed deprated RSA config loading options, see reference test cargo.tomls #276 (@briansmith)
## 0.12.0

View File

@ -10,6 +10,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Resolver no longer depends on Client
- *breaking* Resolver no longer returns io:Errors, use `From<ResolveError>` for `io::Error`
- Resolver is now `Send`
- DNSSec now disabled by default in Resolver, see `dnssec-ring` or `dnssec-openssl` features #268
- CNAME chaining was cleaned up #271 (@briansmith)
### Added