-
Notifications
You must be signed in to change notification settings - Fork 94
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(inbound-filters): Create new legacy browser filters #2950
Conversation
@getsentry/ingest let me know your thoughts on this pr! was going off of previous PRs that added new filters since this isn't my area of expertise. One question I have: Is it safe to merge this before any of the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks good to me, @roggenkemper would you mind adding some tests? There should be some you can copy-paste in legacy_browsers.rs
.
That should be safe AFAIK. |
Co-authored-by: Joris Bayer <[email protected]>
this pr adds in new legacy browser filters. These new filters will be more up to date than the existing ones, and would allow for easier updates to the filters if needed. right now, the filters are defined as both a browser and a version ("safari_pre_6"). now the filters will just be for a browser, and we will have easier control over what versions to filter- we no longer have to make a new filter, we can just update what values get filtered. this can both be a short term and longer term fix to the problem with legacy browsers. It will allow us to move over to new filters in the short term, while supporting updates in the long term if needed (since the generic filters project doesn't have a timeline right now).
closes getsentry/sentry#63053