Skip to content

Commit e595bf2

Browse files
authored
chore(inbound-filters): Update chrome inbound filter (#4381)
this pr updates the chrome inbound filter to filter a higher version. goal when we added these filters last year was to update them periodically. as of now, chrome is the only one we think we should update. one of the resources we used last year to determine which versions to filter was NextJS supported browsers and the Chrome version has been updated there, so we want to make the change for the filter
1 parent 7993960 commit e595bf2

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66

77
- Fix serialized name of `cache.hit` and `cache.key` span tags. ([#4408](https://github.com/getsentry/relay/pull/4408))
88

9+
**Features**:
10+
11+
- Update Chrome inbound filter. ([#4381](https://github.com/getsentry/relay/pull/4381))
12+
913
## 24.12.0
1014

1115
**Bug Fixes**:

relay-filter/src/legacy_browsers.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ fn matches(user_agent: &str, browsers: &BTreeSet<LegacyBrowser>) -> bool {
4141
LegacyBrowser::Android => filter_browser(family, &user_agent, "Android", |x| x < 4),
4242
LegacyBrowser::Safari => filter_browser(family, &user_agent, "Safari", |x| x < 12),
4343
LegacyBrowser::Edge => filter_browser(family, &user_agent, "Edge", |x| x < 79),
44-
LegacyBrowser::Chrome => filter_browser(family, &user_agent, "Chrome", |x| x < 63),
44+
LegacyBrowser::Chrome => filter_browser(family, &user_agent, "Chrome", |x| x < 64),
4545
LegacyBrowser::Firefox => filter_browser(family, &user_agent, "Firefox", |x| x < 67),
4646
LegacyBrowser::Unknown(_) => {
4747
// unknown browsers should not be filtered

0 commit comments

Comments
 (0)