diff --git a/CHANGES b/CHANGES index 9dd28fdf199e29..1fae1885ccc856 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,35 @@ +24.10.0 +------- + +### Various fixes & improvements + +- feat(releases): Split release commit from shared component (#78538) by @scttcper +- chore(alerts): Add info log when sending subscription update data to Seer (#79049) by @ceorourke +- feat(anomaly detection): add preview chart to new alert form (#78238) by @natemoo-re +- feat(issue-stream): Use stacked primary secondary counts designs (#79070) by @MichaelSun48 +- feat(alerts): Add new feature flag to enable EAP alerts (#78985) by @edwardgou-sentry +- feat(discover): Update EAP dataset and entity key for discover builders (#78967) by @edwardgou-sentry +- fix: add info to post process TypeErrors for debugging (#79099) by @mjq +- ref(ingest): annotate transaction consumer with spans (#79101) by @mjq +- ref(rr6): Replace many useRouter's with useNavigate's (#78804) by @evanpurkhiser +- chore(feedback): Analytics for error rendering feedback item (#78978) by @c298lee +- feat(explore): Linking to spans in traceview from all tables (#78984) by @Abdkhan14 +- fix(eap): Count takes arg (#79066) by @Zylphrex +- feat(quick-start): Add analytics code to the backend to track quick start completion (#79089) by @priscilawebdev +- feat(quick-start): Add new feature flag for the new updates (#79094) by @priscilawebdev +- fix(dashboard): OnDemand widget creation also includes transaction type (#79059) by @narsaynorath +- fix(dashboard): OnDemand extraction for Transaction widgets (#79055) by @narsaynorath +- feat(quick-start): Add analytics code to the frontend to track quick start completion (#79092) by @priscilawebdev +- ref(quick-start): Update 'project to set up' logic to default to the first project (#78460) by @priscilawebdev +- ref(onboarding): Add pnpm to express js install step (#79093) by @priscilawebdev +- feat(dynamic-sampling): add feature flag (#79084) by @constantinius +- fix(loader): Catch errors in `sentryOnLoad` separately (#78993) by @mydea +- ref(feedback): 401 for unauth'd POSTs to projectUserReports (#79069) by @aliu39 +- fix(issue-stream): reduce font size of events and user counts (#79028) by @MichaelSun48 +- fix(issue-stream): Fix bug where replay divider was shown despite no replays (#79068) by @MichaelSun48 + +_Plus 1020 more_ + 24.9.0 ------ diff --git a/setup.cfg b/setup.cfg index 16372c6641425a..fc31b8814ee78d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = sentry -version = 24.10.0.dev0 +version = 24.10.0 description = A realtime logging and aggregation server. long_description = file: README.md long_description_content_type = text/markdown diff --git a/src/sentry/conf/server.py b/src/sentry/conf/server.py index 9bb5ed97b840af..0805be5ba76ba2 100644 --- a/src/sentry/conf/server.py +++ b/src/sentry/conf/server.py @@ -2502,7 +2502,7 @@ def custom_parameter_sort(parameter: dict) -> tuple[str, int]: SENTRY_SELF_HOSTED_ERRORS_ONLY = False # only referenced in getsentry to provide the stable beacon version # updated with scripts/bump-version.sh -SELF_HOSTED_STABLE_VERSION = "24.9.0" +SELF_HOSTED_STABLE_VERSION = "24.10.0" # Whether we should look at X-Forwarded-For header or not # when checking REMOTE_ADDR ip addresses