Skip to content

Commit 8714c2a

Browse files
author
getsentry-bot
committed
Merge branch 'releases/25.3.0'
2 parents ab0587d + 7f6a65b commit 8714c2a

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.3.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 (#86283, #86327, #86280, #86196, #86188, #86189, #86109, #86026, #85981, #85976, #85931, #85742)
26+
27+
### Various fixes & improvements
28+
29+
- Revert "chore(sentry apps): add SLO context manager for send alert event (issue alerts) (#86356)" (fa6491f2) by @getsentry-bot
30+
- fix(autofix): Fix running autofix after all issue summaries (#87134) by @jennmueng
31+
- fix(data-consent): Fix non touch customers seeing msa prompt (#87133) by @jennmueng
32+
- fix(eap-spans): count_op should use `score.total` (#87132) by @DominikB2014
33+
- chore(sentry apps): Add context manager for comment webhook SLOs (#86739) by @Christinarlong
34+
- feat(devenv): Skip `devenv sync` call when we have FE changes and env var is set (#87112) by @wedamija
35+
- feat(insights): make score easier to query (#87129) by @DominikB2014
36+
- chore(issue-details): Fix a few things about issue guide (#87122) by @leeandher
37+
- feat(issue-views): Improve drag handle and safari interactions (#87119) by @MichaelSun48
38+
- :recycle: ref(aci): remove alert rule from metric alert chart building logic (#87103) by @iamrajjoshi
39+
- fix(jira): Add a 'key_id' block list for JIRA installed webhook endpoint (#87086) by @Christinarlong
40+
- fix(event_manager): Resolve TypeError while recording first insight span (#87123) by @jan-auer
41+
- chore(sentry apps): add SLO context manager for send alert event (issue alerts) (#86356) by @Christinarlong
42+
- ref(feedback): add evidence test coverage and send alerts if source is none (#87121) by @aliu39
43+
- feat(releases): Change "version" to "release" in table (#87088) by @billyvg
44+
- feat(releases): Change release bubbles series color to match bubbles (#87109) by @billyvg
45+
- test(react19): Wait for text in billingPlans.spec.tex (#87120) by @scttcper
46+
- ref(tsc): convert projectPlugins details to FC (#87035) by @michellewzhang
47+
- chore(issues): Opt more modules into stronger typing (#87117) by @mrduncan
48+
- feat(ui): Move checkInTimeline underscan to the left (#87096) by @evanpurkhiser
49+
- fix(aci): ANY_SHORT_CIRCUIT early exit (#87114) by @cathteng
50+
- test(react19): Adjust widgetViewerModal for react 19 (#87110) by @scttcper
51+
- chore(uptime): Commit test helpers for getsentry (#87115) by @wedamija
52+
- feat(insights): add most related issues to backend (#87033) by @DominikB2014
53+
54+
_Plus 1390 more_
55+
156
25.2.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.3.0.dev0
3+
version = 25.3.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
@@ -2574,7 +2574,7 @@ def custom_parameter_sort(parameter: dict) -> tuple[str, int]:
25742574
SENTRY_SELF_HOSTED_ERRORS_ONLY = False
25752575
# only referenced in getsentry to provide the stable beacon version
25762576
# updated with scripts/bump-version.sh
2577-
SELF_HOSTED_STABLE_VERSION = "25.2.0"
2577+
SELF_HOSTED_STABLE_VERSION = "25.3.0"
25782578

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

0 commit comments

Comments
 (0)