diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c8ee30f07..62a24a1726 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,36 @@ # Changelog +## 23.11.1 + +### Various fixes & improvements + +- fix(validation): EntityContainsColumnValidator wasn't actually enabled (#4399) by @rahul-kumar-saini +- ref: bump sentry-arroyo to 2.14.21 (#5079) by @getsentry-bot +- feat(rust): Add building blocks for DLQ (#5072) by @lynnagara +- fix: Remove unnecessary locking in metrics (#5077) by @untitaker +- ref(rust): Ensure none keys are properly stripped from broker config (#5075) by @lynnagara +- ref: Temporarily remove querylog rust consumer from gocd deployment (#5073) by @lynnagara +- fix(rust): Kafka headers improvements (#5063) by @lynnagara +- fix(rust): Clear all backpressure state between assignments (#5055) by @untitaker +- ref: Bump sentry-kafka-schemas to 0.1.35 (#5062) by @lynnagara +- Revert "feat: Experiment using statsdproxy for aggregation (#4734)" (201e07b0) by @getsentry-bot +- Relicense under FSL-1.0-Apache-2.0 (#5058) by @chadwhitacre +- add raw tags hash column to sets dist table (#5059) by @enochtangg +- ci: Reduce Sentry test concurrency (#5061) by @lynnagara +- fix(rust): Rename run_once metric (#5056) by @untitaker +- feat(rust): Buffered messages option 3 (#5053) by @lynnagara +- feat: Experiment using statsdproxy for aggregation (#4734) by @lynnagara +- fix(rust): Rename metrics namespace, and implement one metric from python (#5036) by @untitaker +- skip flake test_optimized_partition_tracker unit test (#5052) by @enochtangg +- fix(generic-metrics): Add raw tags hash to gauges dist table (#5049) by @enochtangg +- Add support for join queries to the subscription system (#5006) by @wedamija +- ref: bump sentry-arroyo to 2.14.20 (#5047) by @getsentry-bot +- Spawn only one Tokio Runtime (#5039) by @Swatinem +- Avoid double locking (#5048) by @Swatinem +- ref(rust): Add --python-max-queue-depth option (#5030) by @untitaker + +_Plus 11 more_ + ## 23.11.0 ### Various fixes & improvements diff --git a/docs/source/conf.py b/docs/source/conf.py index 2c9446b5c1..00806b3430 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 = "23.12.0.dev0" +release = "23.11.1" # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 602500f901..81794d5463 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import find_packages, setup -VERSION = "23.12.0.dev0" +VERSION = "23.11.1" def get_requirements() -> Sequence[str]: