update CHANGELOG for 532, 540 and 541 (#549)
- #532 - #540 - #541 Also fix some whitespace
This commit is contained in:
parent
ea2c186a77
commit
e8b08e49e6
20
CHANGELOG.md
20
CHANGELOG.md
|
@ -10,8 +10,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- SSH `print-cert` has a new `-raw` flag to get the PEM representation of a certificate. (#483)
|
- SSH `print-cert` has a new `-raw` flag to get the PEM representation of a certificate. (#483)
|
||||||
|
|
||||||
- New build architecture: Linux `riscv64`. (#542)
|
- New build architecture: Linux `riscv64`. (#542)
|
||||||
|
|
||||||
|
- New experimental config option `remote_allow_ranges`. (#540)
|
||||||
|
|
||||||
|
### Deprecated
|
||||||
|
|
||||||
|
- The `preferred_ranges` option has been supported as a replacement for
|
||||||
|
`local_range` since v1.0.0. It has now been documented and `local_range`
|
||||||
|
has been officially deprecated. (#541)
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Valid recv_error packets were incorrectly marked as "spoofing" and ignored. (#482)
|
- Valid recv_error packets were incorrectly marked as "spoofing" and ignored. (#482)
|
||||||
|
@ -21,6 +30,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
- Signing a certificate with `nebula-cert sign` now verifies that the supplied
|
- Signing a certificate with `nebula-cert sign` now verifies that the supplied
|
||||||
ca-key matches the ca-crt. (#503)
|
ca-key matches the ca-crt. (#503)
|
||||||
|
|
||||||
|
- If `preferred_ranges` (or the deprecated `local_range`) is configured, we
|
||||||
|
will immediately switch to a preferred remote address after the reception of
|
||||||
|
a handshake packet (instead of waiting until 1,000 packets have been sent).
|
||||||
|
(#532)
|
||||||
|
|
||||||
## [1.4.0] - 2021-05-11
|
## [1.4.0] - 2021-05-11
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -30,13 +44,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
- Experimental: Nebula can now do work on more than 2 cpu cores in send and receive paths via
|
- Experimental: Nebula can now do work on more than 2 cpu cores in send and receive paths via
|
||||||
the new `routines` config option. (#382, #391, #395)
|
the new `routines` config option. (#382, #391, #395)
|
||||||
|
|
||||||
- ICMP ping requests can be responded to when the `tun.disabled` is `true`.
|
- ICMP ping requests can be responded to when the `tun.disabled` is `true`.
|
||||||
This is useful so that you can "ping" a lighthouse running in this mode. (#342)
|
This is useful so that you can "ping" a lighthouse running in this mode. (#342)
|
||||||
|
|
||||||
- Run smoke tests via `make smoke-docker`. (#287)
|
- Run smoke tests via `make smoke-docker`. (#287)
|
||||||
|
|
||||||
- More reported stats, udp memory use on linux, build version (when using Prometheus), firewall,
|
- More reported stats, udp memory use on linux, build version (when using Prometheus), firewall,
|
||||||
handshake, and cached packet stats. (#390, #405, #450, #453)
|
handshake, and cached packet stats. (#390, #405, #450, #453)
|
||||||
|
|
||||||
- IPv6 support for the underlay network. (#369)
|
- IPv6 support for the underlay network. (#369)
|
||||||
|
@ -49,7 +63,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
- Example systemd unit file now better arranged startup order when using `sshd`
|
- Example systemd unit file now better arranged startup order when using `sshd`
|
||||||
and other fixes. (#317, #412, #438)
|
and other fixes. (#317, #412, #438)
|
||||||
|
|
||||||
- Reduced memory utilization/garbage collection. (#320, #323, #340)
|
- Reduced memory utilization/garbage collection. (#320, #323, #340)
|
||||||
|
|
||||||
- Reduced CPU utilization. (#329)
|
- Reduced CPU utilization. (#329)
|
||||||
|
|
Loading…
Reference in New Issue