From 2c44fd5441edfae738ec9e3474a292bf1e82306b Mon Sep 17 00:00:00 2001 From: Mike Goldsmith Date: Thu, 24 Aug 2023 19:19:33 +0100 Subject: [PATCH] rel: Prepare v0.0.6-alpha release (#125) ## Which problem is this PR solving? - Closes #118 Includes changelog entries for the following open PRs: - #124 - #123 - #103 ## Short description of the changes - Add changelog entry - Update version in main.go Co-authored-by: Jamie Danielson --- CHANGELOG.md | 16 ++++++++++++++++ main.go | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b99ac0e1..9fea8345 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Honeycomb eBPF Agent changelog +## [0.0.6-alpha] - 2023-08-24 + +### Enhancements + +- Clean up pcap handles and allow alternative sources #103 | @MikeGoldsmith + +### Fixes + +- Improve request / response handling (#117) | @MikeGoldsmith +- Remove map entry after finding match (#124) | @MikeGoldsmith +- Remove fields for http body and headers (#113) | @JamieDanielson + +### Maintenance + +- Fix typo in request counter (#123) | @MikeGoldsmith + ## [0.0.5-alpha] - 2023-08-22 ### Fixes diff --git a/main.go b/main.go index 4ab58751..8cb25135 100644 --- a/main.go +++ b/main.go @@ -21,7 +21,7 @@ import ( semconv "go.opentelemetry.io/otel/semconv/v1.20.0" ) -const Version string = "0.0.5-alpha" +const Version string = "0.0.6-alpha" const defaultDataset = "hny-ebpf-agent" const defaultEndpoint = "https://api.honeycomb.io"