Skip to content

Commit 545eed3

Browse files
authored
chore(grouping): Remove newstyle:2019-05-08 grouping config (#96040)
This removes the unused `newstyle:2019-05-08` grouping config, along with its associated snapshots, now that all of its options have been incorporated into the base config.
1 parent 6e0ef03 commit 545eed3

File tree

381 files changed

+2
-35670
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

381 files changed

+2
-35670
lines changed

src/sentry/grouping/enhancer/enhancement-configs/[email protected]

Lines changed: 0 additions & 68 deletions
This file was deleted.

src/sentry/grouping/strategies/configurations.py

Lines changed: 2 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -69,34 +69,10 @@ def register_strategy_config(id: str, **kwargs) -> type[StrategyConfiguration]:
6969
return strategy_class
7070

7171

72-
# Simple newstyle grouping
73-
#
74-
# This is a grouping strategy that applies very simple rules and will
75-
# become the new default at one point. Optimized for native and
76-
# javascript but works for all platforms.
77-
register_strategy_config(
78-
id="newstyle:2019-05-08",
79-
risk=RISK_LEVEL_HIGH,
80-
changelog="""
81-
* Uses source code information all platforms with reliable sources
82-
for grouping (JavaScript, Python, PHP and Ruby) and function
83-
names and filenames otherwise.
84-
* Fallback grouping applies clean-up logic on exception messages
85-
(numbers, uuids, email addresses and others are removed)
86-
* JavaScript stacktraces are better deduplicated across browser
87-
versions yielding a higher chance of these grouping together.
88-
* JavaScript stacktraces involving source maps are likely to group
89-
better.
90-
* C/C++ and other native stacktraces are more reliably grouped.
91-
""",
92-
initial_context={},
93-
enhancements_base="common:2019-03-23",
94-
)
95-
96-
# This is the grouping strategy used for new projects.
9772
register_strategy_config(
9873
id="newstyle:2023-01-11",
99-
base="newstyle:2019-05-08",
74+
# There's no `base` argument here because this config is based on `BASE_STRATEGY`. To base a
75+
# config on a previous config, include its `id` value as the value for `base` here.
10076
risk=RISK_LEVEL_HIGH,
10177
changelog="""
10278
* Better rules for when to take context lines into account for

0 commit comments

Comments
 (0)