diff --git a/CHANGELOG.md b/CHANGELOG.md index 6702715b..dee5a245 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Honeycomb Network Agent changelog +## [0.0.21-alpha] - 2023-10-10 + +### Enhancements + +- feat: Add opt-in config option for HTTP URL (#268) | @MikeGoldsmith +- feat: remove request URI query params from emitted url.path (#269) | @robbkidd + +### Maintenance + +- maint: Refactor packet processing to allow different event types (#271) | @MikeGoldsmith +- maint: include k8s vars in quickstart and add resource limits to test manifest (#274) | @JamieDanielson +- maint: even smaller image size with no cached APT repo lists (#270) | @robbkidd + ## [0.0.20-alpha] - 2023-10-04 ### Enhancements diff --git a/main.go b/main.go index 0df04e42..9c495ff8 100644 --- a/main.go +++ b/main.go @@ -18,7 +18,7 @@ import ( "k8s.io/client-go/rest" ) -const Version string = "0.0.20-alpha" +const Version string = "0.0.21-alpha" func main() { config := config.NewConfig()