diff --git a/CHANGELOG.md b/CHANGELOG.md index ef3b724eef..92e3ca18d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,32 @@ # Changelog +## 23.12.1 + +### Various fixes & improvements + +- perm(cardinality-analyzer): Replace team-ingestion-pipeline with team-ingest (#5240) by @Dav1dde +- ref(profiling): add profiles to admin and web (#5234) by @MeredithAnya +- feat(replays): Add react_component_name column (#5232) by @cmanallen +- feat(cardinality): Add clickhouse host and port parameters (#5237) by @nikhars +- feat(replays): Add react_component_name column migration (#5231) by @cmanallen +- chore(deps): bump @sentry/react from 7.56.0 to 7.88.0 in /snuba/admin (#5224) by @dependabot +- Optimize ConsumerState (#5236) by @Swatinem +- fix(rust): Handle rebalancing ourselves, remove usage of pre/post-rebalance callbacks (#5229) by @untitaker +- Unify Timeout/Deadline operations (#5230) by @Swatinem +- feat(rust): Port arroyo.consumer.latency metric (#5214) by @loewenheim +- feat(metrics) Add a MQL endpoint to Snuba API (#5193) by @evanh +- fix(rust): Fix consumer deadlock on strategy panic (#5216) by @lynnagara +- ref(migrations): add experimental readiness state to policies (#5206) by @MeredithAnya +- Use jemalloc unconditionally (#5228) by @Swatinem +- feat(replays): Add rust-based message processor (#5215) by @cmanallen +- Use jemalloc in Docker image (#5227) by @Swatinem +- fix(rust): Fix `self.consumer_offsets` (#5220) by @lynnagara +- build(rust): Update maturin and add to requirements.txt (#5218) by @lynnagara +- feat(metrics-summaries): Deploy metrics-summaries consumer automatically (#5221) by @phacops +- feat(metrics-summaries): Enable metrics-summaries for SaaS (#5219) by @phacops +- feat(rust): Port run_task_in_threads test (#5213) by @loewenheim +- meta: Bump new development version (b18bf981) + ## 23.12.0 ### Various fixes & improvements diff --git a/docs/source/conf.py b/docs/source/conf.py index 2025734c13..17110a9072 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.1.0.dev0" +release = "23.12.1" # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index b5171843e6..46f39398f3 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import find_packages, setup -VERSION = "24.1.0.dev0" +VERSION = "23.12.1" def get_requirements() -> Sequence[str]: