Skip to content

Commit c6ee47d

Browse files
committed
release: 25.2.0
1 parent b20e50e commit c6ee47d

File tree

3 files changed

+57
-2
lines changed

3 files changed

+57
-2
lines changed

CHANGES

+55
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,58 @@
1+
25.2.0
2+
------
3+
4+
### Automate Code Mappings & In-App Stack Trace Rules for Java projects (ongoing)
5+
6+
Currently, we ask developers to set up their Java code mappings manually (because the SDK cannot determine it):
7+
https://docs.sentry.io/platforms/java/source-context/#setting-up-code-mappings
8+
9+
Unfortunately, many stack traces do not contain in-app frames, thus, many Sentry features are not available (e.g. SCM linking, suspect commit).
10+
11+
This tracks using the code mappings derivation system to automatically add the code mappings and stack trace rules to mark in-app frames as such.
12+
13+
This will automatically enable the following Sentry features :
14+
- Suspect Commits
15+
- GitHub pull request comments
16+
- Auto-assignments (if Codeowners imported)
17+
- Stack trace linking
18+
- Code coverage (if the customer also has an account)
19+
20+
This will only be available to customers with the GitHub integration installed.
21+
22+
You can read more about the system here:
23+
https://blog.sentry.io/code-mappings-and-why-they-matter/
24+
25+
By: @armenzg (#85174, #85065)
26+
27+
### Various fixes & improvements
28+
29+
- Revert "feat(autofix): Add Autofix status to sidebar button (#85287)" (b20e50ed) by @getsentry-bot
30+
- fix(autofix): Fix flash on initial run (#85299) by @roaga
31+
- feat(autofix): Add Autofix status to sidebar button (#85287) by @roaga
32+
- fix(issues): Left align commit authors (#85291) by @scttcper
33+
- :sparkles: feat(aci): add support for sentry apps for issue alerts in NOA (#85218) by @iamrajjoshi
34+
- feat(crons): Implement an all checks page for crons (#85202) by @leeandher
35+
- fix(apidocs): fix typo in user feedback api (#85280) by @michellewzhang
36+
- ref(dashboards): Namespaced `Widget` components (#85238) by @gggritso
37+
- ref(uptime): Remove config_topic from UptimeRegionConfig (#85155) by @evanpurkhiser
38+
- ref(seer grouping): Add ability to ignore useless filenames (#85277) by @lobsterkatie
39+
- fix(auto_source_config): Handle when the frame is None (#85235) by @armenzg
40+
- feat(issues): Disable delete on missing permission (#85278) by @scttcper
41+
- fix(widget-builder): Visualize field overflows on long field names (#85271) by @nikkikapadia
42+
- feat(nav): Update rest of alert links to use new pathname builder (#85257) by @malwilley
43+
- fix(profiling): Prevent landing page from scrolling on context menu (#85273) by @Zylphrex
44+
- ref: remove default margin from Alert in sentry (#85128) by @michellewzhang
45+
- feat(taskworker) Add metrics for RPC durations (#85194) by @markstory
46+
- feat(nav): Update alert links from explore/insights/crons (#85254) by @malwilley
47+
- feat(nav): Update replay onboarding to use drawer (#85267) by @malwilley
48+
- ref(crons): Rename parallel field -> batched_parallel (#85261) by @evanpurkhiser
49+
- Reapply "ref(crons): Remove parallel mode (batched-parallel replaced it)" (#85262) by @evanpurkhiser
50+
- ref(widget-builder): Extract selection components (#85248) by @narsaynorath
51+
- chore(apis): Publish GroupExternalIssue endpoint (#85184) by @Christinarlong
52+
- ref: get_group_{body,title,description} to not need request (#85263) by @asottile-sentry
53+
54+
_Plus 1429 more_
55+
156
25.1.0
257
------
358

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = sentry
3-
version = 25.2.0.dev0
3+
version = 25.2.0
44
description = A realtime logging and aggregation server.
55
long_description = file: README.md
66
long_description_content_type = text/markdown

src/sentry/conf/server.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2540,7 +2540,7 @@ def custom_parameter_sort(parameter: dict) -> tuple[str, int]:
25402540
SENTRY_SELF_HOSTED_ERRORS_ONLY = False
25412541
# only referenced in getsentry to provide the stable beacon version
25422542
# updated with scripts/bump-version.sh
2543-
SELF_HOSTED_STABLE_VERSION = "25.1.0"
2543+
SELF_HOSTED_STABLE_VERSION = "25.2.0"
25442544

25452545
# Whether we should look at X-Forwarded-For header or not
25462546
# when checking REMOTE_ADDR ip addresses

0 commit comments

Comments
 (0)