Skip to content

Commit

Permalink
ref(metric-extraction): Match glob rule condition case sensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
Dav1dde committed Oct 9, 2024
1 parent 0f88b37 commit dfe835a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
- Add the dynamic sampling rate to standalone spans as a measurement so that it can be stored, queried, and used for extrapolation. ([#4063](https://github.com/getsentry/relay/pull/4063))
- Use custom wildcard matching instead of regular expressions. ([#4073](https://github.com/getsentry/relay/pull/4073))
- Allowlist the SentryUptimeBot user-agent. ([#4068](https://github.com/getsentry/relay/pull/4068))
- Match metric extra glob rules case sensitive. ([#4126](https://github.com/getsentry/relay/pull/4126))
- Feature flags of graduated features are now hard-coded in Relay so they can be removed from Sentry. ([#4076](https://github.com/getsentry/relay/pull/4076), [#4080](https://github.com/getsentry/relay/pull/4080))

## 24.9.0
Expand Down
4 changes: 2 additions & 2 deletions relay-protocol/src/condition.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
//!
//! The root type is [`RuleCondition`].

use relay_pattern::{CaseInsensitive, TypedPatterns};
use relay_pattern::TypedPatterns;
use serde::{Deserialize, Serialize};
use serde_json::Value;

Expand Down Expand Up @@ -163,7 +163,7 @@ pub struct GlobCondition {
/// A list of glob patterns to check.
///
/// Note that this cannot be a single value, it must be a list of values.
pub value: TypedPatterns<CaseInsensitive>,
pub value: TypedPatterns,
}

impl GlobCondition {
Expand Down

0 comments on commit dfe835a

Please sign in to comment.