File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 12
12
- Fix breadcrumb serialization error message to be an object ([ #2584 ] ( https://github.com/getsentry/sentry-ruby/pull/2584 ) )
13
13
- Fixes [ #2478 ] ( https://github.com/getsentry/sentry-ruby/issues/2478 )
14
14
15
+ ### Internal
16
+
17
+ - Remove ` user_segment ` from DSC ([ #2586 ] ( https://github.com/getsentry/sentry-ruby/pull/2586 ) )
18
+
15
19
## 5.23.0
16
20
17
21
### Features
Original file line number Diff line number Diff line change @@ -124,8 +124,7 @@ def populate_head_baggage
124
124
"trace_id" => trace_id ,
125
125
"environment" => configuration . environment ,
126
126
"release" => configuration . release ,
127
- "public_key" => configuration . dsn &.public_key ,
128
- "user_segment" => @scope . user && @scope . user [ "segment" ]
127
+ "public_key" => configuration . dsn &.public_key
129
128
}
130
129
131
130
items . compact!
Original file line number Diff line number Diff line change @@ -342,9 +342,6 @@ def populate_head_baggage
342
342
343
343
items [ "transaction" ] = name unless source_low_quality?
344
344
345
- user = @hub . current_scope &.user
346
- items [ "user_segment" ] = user [ "segment" ] if user && user [ "segment" ]
347
-
348
345
items . compact!
349
346
@baggage = Baggage . new ( items , mutable : false )
350
347
end
You can’t perform that action at this time.
0 commit comments