Skip to content

Commit

Permalink
Add a CHANGELOG entry
Browse files Browse the repository at this point in the history
  • Loading branch information
phacops committed Jul 31, 2024
1 parent 3a36b60 commit 3951aaa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
**Internal**:

- Add `EnvelopeStack` and `SQLiteEnvelopeStack` to manage envelopes on disk. ([#3855](https://github.com/getsentry/relay/pull/3855))
- Add `client_sample_rate` to spans, pulled from the trace context ([#3872](https://github.com/getsentry/relay/pull/3872)).
- Add `client_sample_rate` to spans, pulled from the trace context. ([#3872](https://github.com/getsentry/relay/pull/3872))
- Collect SDK information in profile chunks. ([#3882](https://github.com/getsentry/relay/pull/3882))


## 24.7.1
Expand Down
3 changes: 2 additions & 1 deletion relay-profiling/src/sample/v2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ pub struct ProfileMetadata {
pub platform: String,
pub release: String,

pub client_sdk: ClientSdk,
#[serde(skip_serializing_if = "Option::is_none")]
pub client_sdk: Option<ClientSdk>,

/// Hard-coded string containing "2" to indicate the format version.
pub version: Version,
Expand Down

0 comments on commit 3951aaa

Please sign in to comment.