File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 66
77- Only apply non-destructive PII rules to log bodies by default. ([ #5272 ] ( https://github.com/getsentry/relay/pull/5272 ) )
88- Infer the client ip when set to ` {{auto}} ` for EAP items. ([ #5304 ] ( https://github.com/getsentry/relay/pull/5304 ) )
9+ - Increase the default size limit for attachments to 200MiB. ([ #5310 ] ( https://github.com/getsentry/relay/pull/5310 ) )
910- Add ` sentry.origin ` attribute to OTLP spans. ([ #5294 ] ( https://github.com/getsentry/relay/pull/5294 ) )
1011
1112** Breaking Changes** :
Original file line number Diff line number Diff line change @@ -685,11 +685,11 @@ impl Default for Limits {
685685 max_concurrent_requests : 100 ,
686686 max_concurrent_queries : 5 ,
687687 max_event_size : ByteSize :: mebibytes ( 1 ) ,
688- max_attachment_size : ByteSize :: mebibytes ( 100 ) ,
689- max_attachments_size : ByteSize :: mebibytes ( 100 ) ,
688+ max_attachment_size : ByteSize :: mebibytes ( 200 ) ,
689+ max_attachments_size : ByteSize :: mebibytes ( 200 ) ,
690690 max_client_reports_size : ByteSize :: kibibytes ( 4 ) ,
691691 max_check_in_size : ByteSize :: kibibytes ( 100 ) ,
692- max_envelope_size : ByteSize :: mebibytes ( 100 ) ,
692+ max_envelope_size : ByteSize :: mebibytes ( 200 ) ,
693693 max_session_count : 100 ,
694694 max_span_count : 1000 ,
695695 max_log_count : 1000 ,
You can’t perform that action at this time.
0 commit comments