yggdrasil-go/CHANGELOG.md

99 lines
3.4 KiB
Markdown
Raw Normal View History

2018-06-29 02:47:10 +03:00
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
<!-- Use this as a template
## [X.Y.Z] - YYYY-MM-DD
### Added
- for new features.
### Changed
- for changes in existing functionality.
### Deprecated
- for soon-to-be removed features.
### Removed
- for now removed features.
### Fixed
- for any bug fixes.
### Security
- in case of vulnerabilities.
-->
2018-07-08 13:09:49 +03:00
## [0.2.4] - 2018-07-08
### Added
- Support for UNIX domain sockets for the admin socket using `unix:///path/to/file.sock`
- Centralised platform-specific defaults
### Changed
- Backpressure tuning, including reducing resource consumption
### Fixed
- macOS local ping bug, which previously prevented you from pinging your own `utun` adapter's IPv6 address
2018-06-30 01:20:58 +03:00
## [0.2.3] - 2018-06-29
2018-06-29 02:47:10 +03:00
### Added
- Begin keeping changelog (incomplete and possibly inaccurate information before this point).
2018-06-29 10:35:39 +03:00
- Build RPMs in CircleCI using alien. This provides package support for Fedora, Red Hat Enterprise Linux, CentOS and other RPM-based distributions.
2018-06-29 02:47:10 +03:00
### Changed
- Local backpressure improvements.
2018-06-29 10:35:39 +03:00
- Change `box_pub_key` to `key` in admin API for simplicity.
2018-06-29 02:47:10 +03:00
- Session cleanup.
## [0.2.2] - 2018-06-21
### Added
2018-06-29 10:35:39 +03:00
- Add `yggdrasilconf` utility for testing with the `vyatta-yggdrasil` package.
2018-06-29 02:47:10 +03:00
- Add a randomized retry delay after TCP disconnects, to prevent synchronization livelocks.
### Changed
2018-06-29 10:35:39 +03:00
- Update build script to strip by default, which significantly reduces the size of the binary.
- Add debug `-d` and UPX `-u` flags to the `build` script.
2018-06-29 02:47:10 +03:00
- Start pprof in debug builds based on an environment variable (e.g. `PPROFLISTEN=localhost:6060`), instead of a flag.
### Fixed
2018-06-29 10:35:39 +03:00
- Fix typo in big-endian BOM so that both little-endian and big-endian UTF-16 files are detected correctly.
2018-06-29 02:47:10 +03:00
## [0.2.1] - 2018-06-15
### Changed
2018-06-29 10:35:39 +03:00
- The address range was moved from `fd00::/8` to `200::/7`. This range was chosen as it is marked as deprecated. The change prevents overlap with other ULA privately assigned ranges.
2018-06-29 02:47:10 +03:00
### Fixed
2018-06-29 10:35:39 +03:00
- UTF-16 detection conversion for configuration files, which can particularly be a problem on Windows 10 if a configuration file is generated from within PowerShell.
2018-06-29 02:47:10 +03:00
- Fixes to the Debian package control file.
- Fixes to the launchd service for macOS.
- Fixes to the DHT and switch.
## [0.2.0] - 2018-06-13
### Added
- Exchange version information during connection setup, to prevent connections with incompatible versions.
### Changed
- Wire format changes (backwards incompatible).
- Less maintenance traffic per peer.
- Exponential back-off for DHT maintenance traffic (less maintenance traffic for known good peers).
- Iterative DHT (added some time between v0.1.0 and here).
- Use local queue sizes for a sort of local-only backpressure routing, instead of the removed bandwidth estimates, when deciding where to send a packet.
### Removed
- UDP peering, this may be added again if/when a better implementation appears.
2018-06-29 10:35:39 +03:00
- Per peer bandwidth estimation, as this has been replaced with an early local backpressure implementation.
2018-06-29 02:47:10 +03:00
## [0.1.0] - 2018-02-01
### Added
- Adopt semantic versioning.
### Changed
- Wire format changes (backwards incompatible).
- Many other undocumented changes leading up to this release and before the next one.
## [0.0.1] - 2017-12-28
### Added
- First commit.
- Initial public release.