aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2020-04-06 12:54:24 +0200
committerMarc-André Lureau <marcandre.lureau@redhat.com>2020-04-20 22:24:30 +0200
commit1abf18b2b5edb462797629ed47ad4515a195686e (patch)
treecc9f0207eb51ca38107a7c20be0bd08b2c3ac067
parent9bd6c5913271eabcb7768a58197ed3301fe19f2d (diff)
downloadslirp-1abf18b2b5edb462797629ed47ad4515a195686e.zip
slirp-1abf18b2b5edb462797629ed47ad4515a195686e.tar.gz
slirp-1abf18b2b5edb462797629ed47ad4515a195686e.tar.bz2
Update CHANGELOG
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
-rw-r--r--CHANGELOG.md13
1 files changed, 11 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 67b0a74..d4c935b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,12 +9,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
+ - `SLIRP_VERSION_STRING` macro, with the git sha suffix when building from git
+ - `SlirpConfig.disable_dns`, to disable DNS redirection #16
+
### Changed
+ - `slirp_version_string()` now has the git sha suffix when building form git
+ - Limit DNS redirection to port 53 #16
+
### Deprecated
### Fixed
+ - Fix build regression with mingw & NetBSD
+ - Fix use-afte-free in `ip_reass()` (CVE-2020-1983)
+
## [4.2.0] - 2020-03-17
### Added
@@ -22,12 +31,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- New API function `slirp_add_unix`: add a forward rule to a Unix socket.
- New API function `slirp_remove_guestfwd`: remove a forward rule previously
added by `slirp_add_exec`, `slirp_add_unix` or `slirp_add_guestfwd`
- - New SlirpConfig.outbound_addr{,6} fields to bind output socket to a
+ - New `SlirpConfig.outbound_addr{,6}` fields to bind output socket to a
specific address
### Changed
- - socket: do not fallback on host loopback if get_dns_addr() failed
+ - socket: do not fallback on host loopback if `get_dns_addr()` failed
or the address is in slirp network
### Fixed