Commit 12b1511 1 parent 9f2fec8 commit 12b1511 Copy full SHA for 12b1511
File tree 3 files changed +12
-0
lines changed
3 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## Unreleased
4
+
5
+ ** Bug Fixes** :
6
+
7
+ - Filter out exceptions originating in Safari extensions. ([ #2408 ] ( https://github.com/getsentry/relay/pull/2408 ) )
8
+
3
9
## 23.8.0
4
10
5
11
** Features** :
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## Unreleased
4
+
5
+ - Filter out exceptions originating in Safari extensions. ([ #2408 ] ( https://github.com/getsentry/relay/pull/2408 ) )
6
+
3
7
## 0.8.29
4
8
5
9
- Add rudimentary Mypy setup. ([ #2384 ] ( https://github.com/getsentry/relay/pull/2384 ) )
Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ static EXTENSION_EXC_SOURCES: Lazy<Regex> = Lazy::new(|| {
59
59
^chrome(-extension)?://| # Chrome extensions
60
60
^moz-extension://| # Firefox extensions
61
61
^safari(-web)?-extension://| # Safari extensions
62
+ webkit-masked-url| # Safari extensions
62
63
127\.0\.0\.1:4001/isrunning| # Cacaoweb
63
64
webappstoolbarba\.texthelp\.com/| # Other
64
65
metrics\.itunes\.apple\.com\.edgesuite\.net/|
@@ -217,6 +218,7 @@ mod tests {
217
218
"webappstoolbarba.texthelp.com/" ,
218
219
"http://metrics.itunes.apple.com.edgesuite.net/itunespreview/itunes/browser:firefo" ,
219
220
"https://fscr.kaspersky-labs.com/B-9B72-7B7/main.js" ,
221
+ "webkit-masked-url:" ,
220
222
] ;
221
223
222
224
for source_name in & sources {
You can’t perform that action at this time.
0 commit comments