From 89c30ddef8bcf56f113b1e92b28e4e286ef0b4f0 Mon Sep 17 00:00:00 2001 From: getsentry-bot Date: Tue, 23 Jul 2024 19:03:51 +0000 Subject: [PATCH] release: 24.7.1 --- CHANGES | 39 +++++++++++++++++++++++++++++++++++++++ setup.cfg | 2 +- src/sentry/conf/server.py | 2 +- 3 files changed, 41 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 1e9b7717628ed8..449f138712ddb8 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,42 @@ +24.7.1 +------ + +### Hierarchical grouping deprecation (ongoing) + +This project will move any projects using the mobile grouping configuration as defined here: +https://github.com/getsentry/sentry/blob/44d816f0b9a9450fdf47136313b3a4b955ceab84/src/sentry/grouping/strategies/configurations.py#L160-L188 + +By: @armenzg (#74203) + +### Various fixes & improvements + +- chore(data-secrecy): FF for Data Secrecy (#74749) by @iamrajjoshi +- feat(utils): Add core `CircuitBreaker` functionality (#74560) by @lobsterkatie +- fix(replay): fix new banner check for hydration errors (#74755) by @aliu39 +- fix: split samples by threadid (#74738) by @JonasBa +- Allow AI to be nullable (#74746) by @colin-sentry +- Fix creating crash free session alerts (#74750) by @saponifi3d +- feat(utils): Add helpers for circuit breaker and circuit breaker tests (#74559) by @lobsterkatie +- chore(typing): stricter decorator type checking for leaky bucket (#74687) by @vartec +- feat(uptime): Bump default timeout for onboarding monitors to 10s (#74739) by @wedamija +- chore(similarity): Add seer failure reason to backfill log (#74735) by @jangjodi +- fix(insights): Cache page alert re-rendering (#74737) by @narsaynorath +- chore(saml2): Add flag for Single-Logout (#74736) by @leedongwei +- chore(seer): Add timing metric to requests to Seer (#74688) by @lobsterkatie +- feat(utils): Add stub for rate-limit-based `CircuitBreaker` class (#74557) by @lobsterkatie +- Separates rejecting policy and throttling policy in Sentry tags and spans (#74733) by @xurui-c +- feat(tracing): reparent ssr spans under pageload txn and under browser request span (#74675) by @JonasBa +- ref(toolbar): add feature flag search (#74697) by @michellewzhang +- remove temporary flagpole option (#74597) by @nhsiehgit +- chore(issues): cleanup old issue annotations (#74684) by @oioki +- ref: improve signatures of tsdb (#74725) by @asottile-sentry +- feat(performance): enable long animation frame support for internal t… (#74637) by @KevinL10 +- fix(metrics): Introduce new styles to alias field (#74722) by @priscilawebdev +- feat(dashboards): Add split source field to API response (#74717) by @narsaynorath +- ref: fix Future types for sentry_metrics routing_producer (#74682) by @asottile-sentry + +_Plus 296 more_ + 24.7.0 ------ diff --git a/setup.cfg b/setup.cfg index d2873f71bdec28..32889cac2319d1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = sentry -version = 24.8.0.dev0 +version = 24.7.1 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 1adbd203e9c2ea..91665cb55f6798 100644 --- a/src/sentry/conf/server.py +++ b/src/sentry/conf/server.py @@ -2470,7 +2470,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.7.0" +SELF_HOSTED_STABLE_VERSION = "24.7.1" # Whether we should look at X-Forwarded-For header or not # when checking REMOTE_ADDR ip addresses