From 85e0ee5e9f77d2c3477bb8b496f7f452616ae05c Mon Sep 17 00:00:00 2001 From: Jason Harley Date: Thu, 7 Mar 2024 13:18:20 -0500 Subject: [PATCH 1/4] rel: 3.1.0 --- CHANGELOG.md | 12 ++++++++++++ lib/honeycomb/beeline/version.rb | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a86e3dc..ecd5999 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # beeline-ruby changelog +## 3.1.0 2024-03-07 + +### Enhancements + +- feat: support classic ingest keys (#238) | Robb Kidd + +### Maintenance + +- maint: add labels to release.yml for auto-generated grouping (#239) | Jamie Danielson +- maint: update codeowners to pipeline-team (#237) | Jamie Danielson +- maint: update codeowners to pipeline (#236) | Jamie Danielson + ## 3.0.1 2023-10-12 ### Fixed diff --git a/lib/honeycomb/beeline/version.rb b/lib/honeycomb/beeline/version.rb index 51450f3..f3cc705 100644 --- a/lib/honeycomb/beeline/version.rb +++ b/lib/honeycomb/beeline/version.rb @@ -3,7 +3,7 @@ module Honeycomb module Beeline NAME = "honeycomb-beeline" - VERSION = "3.0.1" + VERSION = "3.1.0" USER_AGENT_SUFFIX = "#{NAME}/#{VERSION}" end end From 51e1ae2b49983eb1d8731546cb352f5bcc568bcd Mon Sep 17 00:00:00 2001 From: Jason Harley Date: Thu, 7 Mar 2024 13:29:34 -0500 Subject: [PATCH 2/4] Add note about min. libhoney version --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ecd5999..0417180 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ ### Enhancements +⚠️ Minimum libhoney version is now 2.3.0 ⚠️ + - feat: support classic ingest keys (#238) | Robb Kidd ### Maintenance From 6e7aa045fbaa56dcec5d91c9f6b9996b8014a97d Mon Sep 17 00:00:00 2001 From: Jason Harley Date: Thu, 7 Mar 2024 13:30:35 -0500 Subject: [PATCH 3/4] move note up section --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0417180..bf8ae60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,10 @@ ## 3.1.0 2024-03-07 -### Enhancements - ⚠️ Minimum libhoney version is now 2.3.0 ⚠️ +### Enhancements + - feat: support classic ingest keys (#238) | Robb Kidd ### Maintenance From 51a8003404b5c3c65925df2b59d7509f7ef57c36 Mon Sep 17 00:00:00 2001 From: Jason Harley Date: Thu, 7 Mar 2024 14:26:05 -0500 Subject: [PATCH 4/4] Update CHANGELOG.md Co-authored-by: Robb Kidd --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index bf8ae60..652bd16 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ ⚠️ Minimum libhoney version is now 2.3.0 ⚠️ +Previously the minimum libhoney was 1.14.2. Backwards-incompatible changes in [libhoney 2.0.0](https://github.com/honeycombio/libhoney-rb/releases/tag/v2.0.0): + +* Removal of the deprecated Array input for http proxy configuration. + * If you are using the Beeline in services that must send web traffic through an out-going proxy, see [libhoney 1.x proxy_config deprecation warning](https://github.com/honeycombio/libhoney-rb/blob/v1.21.0/lib/libhoney/client.rb#L273-L276) for recommended configuration. +* Drop support for Ruby versions 2.2 and 2.3. + * Beeline Ruby already requires a minimum Ruby 2.5. + ### Enhancements - feat: support classic ingest keys (#238) | Robb Kidd