From d7b4d2a8dcd5fb1cc7643d659ba491d71b86b6f3 Mon Sep 17 00:00:00 2001 From: Mike Goldsmith Date: Wed, 4 Oct 2023 15:35:07 +0100 Subject: [PATCH] rel: Prepare v0.0.20-alpha release (#267) ## Which problem is this PR solving? Prepares the v0.0.20-alpha release. ## Short description of the changes - Add changelog entry - Update agent version **Note**: The release includes references to the following PRs that are not merged yet: - #259 - #266 I've also used the @ notation for contributor names to see if GitHub automatically links them. ## How to verify that this has the expected result A new release of the agent can be published. --- CHANGELOG.md | 25 +++++++++++++++++++++++++ main.go | 2 +- 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 60967a03..6702715b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,30 @@ # Honeycomb Network Agent changelog +## [0.0.20-alpha] - 2023-10-04 + +### Enhancements + +- feat: Set error field if HTTP status >= 400 (#248) | @robbkidd +- feat: Only keep HTTP headers we want to keep (#254) | @MikeGoldsmith +- feat: Add service k8s metadata to events (#257) | @MikeGoldsmith +- feat: Don't add k8s attributes when source/destination IP matches agent IP (#260) | @MikeGoldsmith +- feat: Add config option to set additional additional on all events (#259) | @MikeGoldsmith + +### Fixes + +- fix: Skip key validation if endpoint is different (#265) | @JamieDanielson +- fix: Don't send durations when they are not from actual capture times (#258) | @robbkidd + +### Maintenance + +- maint: Add RequestId and Packet Count to metatelemetry (#262) | @JamieDanielson +- maint: Bump go.opentelemetry.io/otel from 1.18.0 to 1.19.0 (#261) | @Dependabot +- maint: Reduce docker image size (#266) | @MikeGoldsmith +- docs: Update greetings example service for easier testing (#252) | @JamieDanielson +- docs: Add design section to readme (#243) | @MikeGoldsmith +- docs: Add supported k8s platforms to README (#256) | @MikeGoldsmith +- docs: Fix make targets in developing instructions (#250) | @MikeGoldsmith + ## [0.0.19-alpha] - 2023-09-27 ### Fixes diff --git a/main.go b/main.go index 1eb8bfd9..e786b140 100644 --- a/main.go +++ b/main.go @@ -18,7 +18,7 @@ import ( "k8s.io/client-go/rest" ) -const Version string = "0.0.19-alpha" +const Version string = "0.0.20-alpha" func main() { config := config.NewConfig()