diff --git a/CHANGELOG.md b/CHANGELOG.md index 85e24cf3b8..f951cf381d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,36 @@ # Changelog +## 24.12.2 + +### Various fixes & improvements + +- ref(uptime): use new v2 table in storage (#6761) by @JoshFerge +- ref(uptime): use region instead of region_slug (#6762) by @JoshFerge +- ref(uptime): rebuild uptime storage table (#6758) by @JoshFerge +- chore(eap): write script to send scrubbed data into a gcs bucket (#6698) by @davidtsuk +- fix(scripts): Grab everything in the path (#6750) by @phacops +- feat(profiling): process environment value for profile_chunks and add the column to the storage definition (#6738) by @viglia +- ci: Switch e2e test to self-hosted repo (#6746) by @BYK +- feat(ourlogs): Add a kafka consumer (#6743) by @colin-sentry +- Revert "deps: replace python-jose with pyjwt (#6739)" (96d5c2bd) by @getsentry-bot +- fix(uptime): add snapshot test for corrected typo (#6744) by @JoshFerge +- feat(sudo): allow dropping of replica in sudo tool (#6742) by @volokluev +- chore(codeowners): add crons team to uptime files (#6741) by @JoshFerge +- deps: replace python-jose with pyjwt (#6739) by @mdtro +- fix(uptime): align rust consumer with clickhouse schema (#6740) by @JoshFerge +- feat(devservices): Support no workers option for containerized version of snuba (#6737) by @hubertdeng123 +- feat(devservices): Add devservices ci validation job (#6716) by @hubertdeng123 +- chore(uptime): move uptime storage to partial (#6736) by @JoshFerge +- feat(profiling): add environment column to the profile_chunks table (#6722) by @viglia +- feat(EAP): Trace Item resolvers (#6732) by @volokluev +- feat(ourlogs): Simplify the buckets for logs (#6735) by @colin-sentry +- Revert "chore(eap-spans): Take advantage of parallel reads (#6579)" (f8900d8c) by @getsentry-bot +- Implement filter offset for attribute values API (#6667) by @xurui-c +- fix(eap): use TDigestWeighted instead of TDigest for perncetile confidence calculation (#6734) by @shellmayr +- fix(storage): correctly name storage key (#6733) by @JoshFerge + +_Plus 28 more_ + ## 24.12.1 ### Various fixes & improvements diff --git a/docs/source/conf.py b/docs/source/conf.py index 52780b7553..137470463a 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -7,7 +7,7 @@ copyright = "2021, Sentry Team and Contributors" author = "Sentry Team and Contributors" -release = "25.1.0.dev0" +release = "24.12.2" # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 3bfc5e1289..1eb6f33ad2 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import find_packages, setup -VERSION = "25.1.0.dev0" +VERSION = "24.12.2" def get_requirements() -> Sequence[str]: