5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2024-09-19 21:52:32 +00:00
yggdrasil-go/CHANGELOG.md

182 lines
7.5 KiB
Markdown
Raw Normal View History

2018-06-28 23:47:10 +00: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-12-17 11:13:11 +00:00
## [0.3.1] - 2018-12-17
### Added
- Build name and version is now imprinted onto the binaries if available/specified during build
- Ability to disable admin socket with `AdminListen: none`
- `AF_UNIX` domain sockets for the admin socket
- Cache size restriction for crypto-key routes
- `NodeInfo` support for specifying node information, e.g. node name or contact, which can be used in network crawls or surveys
- `getNodeInfo` request added to admin socket
- Adds flags `-c`, `-l` and `-t` to `build` script for specifying `GCFLAGS`, `LDFLAGS` or whether to keep symbol/DWARF tables
### Changed
- Default `AdminListen` in newly generated config is now `unix:///var/run/yggdrasil.sock`
- Formatting of `getRoutes` in the admin socket has been improved
- Debian package now adds `yggdrasil` group to assist with `AF_UNIX` admin socket permissions
- Crypto, address and other utility code refactored into separate Go packages
### Fixed
- Switch peer convergence is now much faster again (previously it was taking up to a minute once the peering was established)
- `yggdrasilctl` is now less prone to crashing when parameters are specified incorrectly
- Panic fixed when `Peers` or `InterfacePeers` was commented out
2018-12-09 23:35:40 +00:00
## [0.3.0] - 2018-12-12
2018-12-05 23:39:28 +00:00
### Added
2018-12-09 23:35:40 +00:00
- Crypto-key routing support for tunnelling both IPv4 and IPv6 over Yggdrasil
- Add advanced `SwitchOptions` in configuration file for tuning the switch
2018-12-05 23:39:28 +00:00
- Add `dhtPing` to the admin socket to aid in crawling the network
- New macOS .pkgs built automatically by CircleCI
2018-12-09 23:35:40 +00:00
- Add Dockerfile to repository for Docker support
- Add `-json` command line flag for generating and normalising configuration in plain JSON instead of HJSON
2018-12-07 23:30:07 +00:00
- Build name and version numbers are now imprinted onto the build, accessible through `yggdrasil -version` and `yggdrasilctl getSelf`
2018-12-09 17:48:35 +00:00
- Add ability to disable admin socket by setting `AdminListen` to `"none"`
2018-12-10 11:34:37 +00:00
- `yggdrasilctl` now tries to look for the default configuration file to find `AdminListen` if `-endpoint` is not specified
- `yggdrasilctl` now returns more useful logging in the event of a fatal error
2018-12-05 23:39:28 +00:00
### Changed
2018-12-09 23:35:40 +00:00
- Switched to Chord DHT (instead of Kademlia, although still compatible at the protocol level)
2018-12-10 00:42:56 +00:00
- The `AdminListen` option and `yggdrasilctl` now default to `unix:///var/run/yggdrasil.sock` on BSDs, macOS and Linux
2018-12-09 23:35:40 +00:00
- Cleaned up some of the parameter naming in the admin socket
- Latency-based parent selection for the switch instead of uptime-based (should help to avoid high latency links somewhat)
- Real peering endpoints now shown in the admin socket `getPeers` call to help identify peerings
- Reuse the multicast port on supported platforms so that multiple Yggdrasil processes can run
2018-12-09 13:37:19 +00:00
- `yggdrasilctl` now has more useful help text (with `-help` or when no arguments passed)
2018-12-05 23:39:28 +00:00
### Fixed
- Memory leaks in the DHT fixed
2018-12-09 23:35:40 +00:00
- Crash fixed where the ICMPv6 NDP goroutine would incorrectly start in TUN mode
- Removing peers from the switch table if they stop sending switch messages but keep the TCP connection alive
2018-12-05 23:39:28 +00:00
2018-10-13 18:37:07 +00:00
## [0.2.7] - 2018-10-13
### Added
- Session firewall, which makes it possible to control who can open sessions with your node
- Add `getSwitchQueues` to admin socket
- Add `InterfacePeers` for configuring static peerings via specific network interfaces
- More output shown in `getSwitchPeers`
- FreeBSD service script in `contrib`
## Changed
- CircleCI builds are now built with Go 1.11 instead of Go 1.9
## Fixed
- Race condition in the switch table, reported by trn
- Debug builds are now tested by CircleCI as well as platform release builds
- Port number fixed on admin graph from unknown nodes
2018-07-31 09:04:22 +00:00
## [0.2.6] - 2018-07-31
### Added
- Configurable TCP timeouts to assist in peering over Tor/I2P
- Prefer IPv6 flow label when extending coordinates to sort backpressure queues
- `arm64` builds through CircleCI
### Changed
- Sort dot graph links by integer value
2018-07-19 23:38:48 +00:00
## [0.2.5] - 2018-07-19
### Changed
- Make `yggdrasilctl` less case sensitive
- More verbose TCP disconnect messages
### Fixed
- Fixed debug builds
- Cap maximum MTU on Linux in TAP mode
- Process successfully-read TCP traffic before checking for / handling errors (fixes EOF behavior)
2018-07-08 10:09:49 +00: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-29 22:20:58 +00:00
## [0.2.3] - 2018-06-29
2018-06-28 23:47:10 +00:00
### Added
- Begin keeping changelog (incomplete and possibly inaccurate information before this point).
2018-06-29 07:35:39 +00: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-28 23:47:10 +00:00
### Changed
- Local backpressure improvements.
2018-06-29 07:35:39 +00:00
- Change `box_pub_key` to `key` in admin API for simplicity.
2018-06-28 23:47:10 +00:00
- Session cleanup.
## [0.2.2] - 2018-06-21
### Added
2018-06-29 07:35:39 +00:00
- Add `yggdrasilconf` utility for testing with the `vyatta-yggdrasil` package.
2018-06-28 23:47:10 +00:00
- Add a randomized retry delay after TCP disconnects, to prevent synchronization livelocks.
### Changed
2018-06-29 07:35:39 +00: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-28 23:47:10 +00:00
- Start pprof in debug builds based on an environment variable (e.g. `PPROFLISTEN=localhost:6060`), instead of a flag.
### Fixed
2018-06-29 07:35:39 +00:00
- Fix typo in big-endian BOM so that both little-endian and big-endian UTF-16 files are detected correctly.
2018-06-28 23:47:10 +00:00
## [0.2.1] - 2018-06-15
### Changed
2018-06-29 07:35:39 +00: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-28 23:47:10 +00:00
### Fixed
2018-06-29 07:35:39 +00: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-28 23:47:10 +00: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 07:35:39 +00:00
- Per peer bandwidth estimation, as this has been replaced with an early local backpressure implementation.
2018-06-28 23:47:10 +00: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.