Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rel: Prepare 2.8.3 release (updated) #1372

Merged
merged 1 commit into from
Oct 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
- fix: Put a limit on the size of sampler keys (#1364) | [Kent Quirk](https://github.com/kentquirk)
- feat: Record original user agent for spans and logs (#1358) | [Mike Goldsmith](https://github.com/MikeGoldsmith)
- feat: Make collector health check timeout configurable (#1371) | [Yingrong Zhao](https://github.com/vinozzZ)
- fix: ConvertNumeric now handles bools (#1336) | [Kent Quirk](https://github.com/kentquirk)

## 2.8.2 2024-09-13

Expand Down
8 changes: 5 additions & 3 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ While [CHANGELOG.md](./CHANGELOG.md) contains detailed documentation and links t

## Version 2.8.3

This is a bug fix release.
It fixes a bug when building sampler key using a very high cardinality field. The fix is to only take the first 100 unique field values.
It also adds support for Refinery to record the original sender user agent in event data under the key `meta.refinery.incoming_user_agent` and adds a configurtion option for the health check timeout.
This is a bug fix release and includes the follow changes+~+:
* Fixes a bug when building sampler key using a very high cardinality field. The fix is to only take the first 100 unique field values.
* Fixes a bug so the `is_alive` and `is_ready` metrics now report either 0 or 1 correctly.

It also adds support for Refinery to record the original sender user agent in event data under the key `meta.refinery.incoming_user_agent` adds a configurtion option for the health check timeout.

## Version 2.8.2

Expand Down
Loading