vpncloud/CHANGELOG.md

107 lines
3.6 KiB
Markdown
Raw Normal View History

2015-12-10 08:53:14 +00:00
# Changelog
This project follows [semantic versioning](http://semver.org).
### UNRELEASED
- [changed] Updated dependencies
- [changed] Turned some clippy warnings off
- [changed] Cross-compiling for ARMv7
2016-06-02 07:36:45 +00:00
### v0.6.0 (2016-06-02)
- [added] Exponential backoff for reconnect timeouts
2016-05-11 10:18:23 +00:00
- [added] Systemd compatible startup scripts
- [changed] Repeatedly resolving connect addresses to allow DynDNS
2016-05-02 07:05:34 +00:00
- [changed] Listening on IPv4 and IPv6
2016-05-02 06:35:11 +00:00
- [changed] Using SO_REUSEADDR to allow frequent rebinding
- [changed] Building and using local libsodium library automatically
2016-05-02 06:35:11 +00:00
- [changed] Updated dependencies
2016-04-05 13:36:06 +00:00
### v0.5.0 (2016-04-05)
2016-02-02 21:05:54 +00:00
- [added] Added license and copyright information
- [added] Added documentation for daemon config files
2016-02-02 21:05:54 +00:00
- [added] Script for performance measurements
2016-02-08 19:39:31 +00:00
- [added] Added more tests and benchmarks
- [changed] Daemon now detects network config files on its own
2016-02-02 21:05:54 +00:00
- [changed] Using display format for addresses
- [changed] Updated dependencies
- [changed] New measurements
2016-02-08 19:39:31 +00:00
- [changed] Only calling crypto_init once
- [changed] Passing listen address as &str
2016-03-29 08:45:54 +00:00
- [changed] Using FNV hash for better performance
- [changed] Using slice operations instead of loops
2016-04-05 20:07:25 +00:00
- [changed] Updated libsodium to 1.0.10
2016-04-05 13:48:28 +00:00
- [changed] Renamed default.net to example.net
2016-02-02 22:58:47 +00:00
- [fixed] Fixed wrong hex address formatting
- [fixed] Fixed peer exchange for more than 65000 peers
2016-02-08 19:39:31 +00:00
- [fixed] Initializing crypto for benchmarks
- [fixed] Removing learned addresses of lost peers
2016-02-02 21:05:54 +00:00
2016-02-02 10:32:47 +00:00
### v0.4.3 (2016-02-02)
2016-02-02 10:06:54 +00:00
- [changed] Updated libsodium to 1.0.8
- [fixed] Fixed problem with nodes broadcasting to themselves
2016-01-19 20:58:39 +00:00
### v0.4.2 (2016-01-19)
- [changed] Updated dependencies
- [changed] New measurements
- [changed] Using copy trait more often
- [fixed] Fixed deb changelog
2015-12-22 21:52:46 +00:00
### v0.4.1 (2015-12-22)
2015-12-22 21:39:02 +00:00
- [changed] Logging more verbosely
- [fixed] Removing NULL-bytes from interface name
2015-12-22 21:44:25 +00:00
- [fixed] Supporting hostnames as peers
2015-12-22 21:45:52 +00:00
- [fixed] No longer encrypting multiple times
2015-12-22 21:47:41 +00:00
- [fixed] Properly decoding protocol header when sending
- [fixed] Corrected size of read data
2015-12-10 08:53:14 +00:00
2015-12-22 21:52:46 +00:00
### v0.4.0 (2015-12-22)
2015-12-10 08:53:14 +00:00
2015-12-22 18:32:10 +00:00
- [added] Init script
2015-12-13 21:03:06 +00:00
- [changed] Removed last payload memcopy
2015-12-10 08:53:14 +00:00
- [changed] Using RNG to select peers for peers list exchange
- [changed] Updated dependency versions
- [changed] Updated documentation
- [fixed] Printing errors instead of panics in some cases
2015-12-22 18:32:10 +00:00
- [fixed] Build script for Debian packages
2015-12-10 08:53:14 +00:00
### v0.3.1 (2015-12-03)
- [added] Unique node ids to avoid connecting to self (**incompatible**)
- [fixed] Calling sync when writing to TUN/TAP device
### v0.3.0 (2015-12-02)
- [added] Support for AES256GCM encryption
- [added] Including current libsodium in builds
- [added] --crypto parameter to select encryption method
- [changed] Increased ChaCha20Poly1305 nonce from 8 to 12 bytes (**incompatible**)
- [changed] Updated dependency versions
- [changed] More tests
- [changed] Removed more "unsafe" blocks (**fixes security issue**)
2015-12-10 08:53:14 +00:00
- [fixed] Forgot to call `sodium_init`, huge performance increase
### v0.2.0 (2015-11-26)
- [added] Sending close message at the end
- [added] Support for IPv6 addresses
- [added] Support for ChaCha20Poly1305 encryption
- [removed] Support for ChaCha20HmacSha512256 encryption
- [changed] Complete rewrite of encryption code (**incompatible**)
- [changed] Removed unused code
- [changed] Some speed improvements
- [changed] Removed lots of "unsafe" blocks (**fixes security issue**)
2015-12-10 08:53:14 +00:00
- [changed] Added benchmarks
- [changed] Two step handshake in order to fix problems with inconsistent state
- [fixed] Pretty error messages instead of panics with traces
- [fixed] Pretty addresses instead of debug representation
### v0.1.0 (2015-11-25)
- First release