diff --git a/CHANGELOG.md b/CHANGELOG.md index b20e80ed1d..6f3fa97afd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,36 @@ # Changelog +## 24.9.0 + +### Various fixes & improvements + +- Update migrations list command to show migrations that no longer exist in the codebase (#6299) by @davidtsuk +- metric(consumer): Add a metric to track the size of individual spans (#6300) by @ayirr7 +- feat(rpc): Update tags list rpc (#6301) by @Zylphrex +- feat(eap): add virtual column support (#6292) by @volokluev +- tweak(eap): Allow more memory usage for eap spans (#6298) by @volokluev +- ref(doc): add documentation for the ReadinessState enum (#6295) by @viglia +- feat(eap): Start ingesting data into sample_weight_2 column (#6290) by @colin-sentry +- Update docker entrypoint to run heaptrack (#6273) by @ayirr7 +- fix(eap): Switch to sampling_weight_2 in entity (#6287) by @colin-sentry +- bug(query): Run entity validators in composite query pipeline (#6285) by @enochtangg +- feat(eap): make mapContains work with EAP dataset (#6284) by @colin-sentry +- feat(job-runner): create a new `snuba jobs` command (#6281) by @xurui-c +- feat(eap): Shard meta tables by trace ID (#6286) by @colin-sentry +- fix(eap): Make span_id be returned as a string correctly (#6283) by @colin-sentry +- feat(job-runner): scaffolding for job manifest testing (#6282) by @onewland +- bug(admin): Fix invalid query error alerting in snuba admin (#6280) by @enochtangg +- Fixing Snuba Admin trace UI error. (#6278) by @nachivrn +- feat(eap): Add a processor that allows you to do mapKeys on attr_str (#6277) by @colin-sentry +- cleanup(capman): remove legacy table rate limits (#6274) by @volokluev +- Fixing Snuba Admin trace UI error. (#6276) by @nachivrn +- hackweek(snuba-admin): MQL query tool (#6235) by @enochtangg +- feat(eap): Endpoint to get the tags available for a project (#6270) by @colin-sentry +- feat(sudo): issue slack notifications when sudo mode is used (#6271) by @volokluev +- chore(eap): Add entities and storages for EAP span meta tables (#6269) by @colin-sentry + +_Plus 60 more_ + ## 24.8.0 ### Various fixes & improvements diff --git a/docs/source/conf.py b/docs/source/conf.py index 993e13ed5e..be9c625c30 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 = "24.9.0.dev0" +release = "24.9.0" # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 245e9bb196..c45faef3f9 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import find_packages, setup -VERSION = "24.9.0.dev0" +VERSION = "24.9.0" def get_requirements() -> Sequence[str]: