Releases: getsentry/sentry-rust
Releases · getsentry/sentry-rust
0.31.6
0.31.5
Various fixes & improvements
- chore(deps): bump rustls (#592) by @utkarshgupta137
0.31.4
Various fixes & improvements
- Apply scope metadata to transactions (#590) by @loewenheim
0.31.3
0.31.2
Various fixes & improvements
- feat(crons): Add monitor check-in types to sentry-types (#577) by @evanpurkhiser
0.31.1
Features:
- Add a new
(tower-)axum-matched-pathfeature to use theMatchedPathas transaction name, along with attaching the request metadata to the transaction.
Fixes:
- Fix rate-limiting/filtering of raw envelopes.
Thank you:
Features, fixes and improvements in this release have been contributed by:
0.31.0
Breaking Changes:
- Aligned profiling-related protocol types.
Features:
- Added a
ProfilesSamplerto theClientOptions.
Fixes:
- Fix building
ureqtransport without thenative-tlsfeature. - Fixed serialization of raw
Envelopes, and added a newfrom_bytes_rawconstructor.
Thank you:
Features, fixes and improvements in this release have been contributed by:
0.30.0
Breaking Changes:
- The minimum supported Rust version was bumped to 1.66.0 due to CI workflow misconfiguration.
Fixes:
- Switch to checked version of
from_secs_f64intimestamp_to_datetimefunction to prevent panics (#554) by @olksdr
Internal:
- Disable unnecessary default regex features for
sentry-backtrace(#552) by @xfix - Use correct Rust toolchain for MSRV jobs (#555) by @kamilogorek
0.29.3
Features:
debug_imagesis now a default feature. (#545- Added a
from_path_rawfunction toEnvelopethat reads an envelope from a file without parsing anything. (#549) - Added a
datamethod toperformance::Spanthat gives access to the span's attached data. (#548)
Fixes:
- Envelopes will be discarded rather than blocking if the transport channel fills up. (#546)
0.29.2
Various fixes & improvements
- fix: Prefer
match_patternovermatch_namein actix (#539) by @wuerges - feat(profiling): Add profile context to transaction. (#538) by @viglia
- Re-disable scheduled jobs on forks (#537) by @MarijnS95
- fix: Avoid Deadlock popping ScopeGuards out of order (#536) by @Swatinem
- sentry-core: make TraceContext publicly readable (#534) by @tommilligan
- sentry-core: make TransactionContext.trace_id readable (#533) by @tommilligan
- docs: fix outdated
native-tls/rustlsinfo in README (#535) by @seritools - features: Make
tower-httpenable thetowerfeature (#532) by @Turbo87