From 2427e044fc5502aa41d1f455cf6cf14a69d5f237 Mon Sep 17 00:00:00 2001 From: getsentry-bot Date: Tue, 19 Sep 2023 18:38:24 +0000 Subject: [PATCH] release: 23.9.0 --- CHANGELOG.md | 31 +++++++++++++++++++++++++++++++ LICENSE | 2 +- docs/source/conf.py | 2 +- setup.py | 2 +- 4 files changed, 34 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e6e63e49865..a3a542293da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,36 @@ # Changelog +## 23.9.0 + +### Various fixes & improvements + +- feat(rust): Add processor metrics for Rust consumer (#4737) by @lynnagara +- feat: metrics.increment() no longer supports option (#4738) by @lynnagara +- ref: bump sentry-kafka-schemas to 0.1.27 (#4739) by @getsentry-bot +- Update snuba-sdk version to latest 2.0.1 (#4735) by @enochtangg +- make sure possible API changes are tested against sentry (#4736) by @volokluev +- test: Run different Sentry tests depending on files changed (#4727) by @lynnagara +- fix(ci): no more sentry shards (#4725) by @joshuarli +- fix(CI): Unblock deploys as they hard check for sentry matrix'd tests (#4724) by @rahul-kumar-saini +- fix(on-call): Negative org ID in Tenant IDs crashes Querylog consumer (#4722) by @rahul-kumar-saini +- ref: bump sentry-kafka-schemas to 0.1.26 (#4721) by @getsentry-bot +- test: No need to run Sentry CI in a matrix (#4720) by @lynnagara +- Use snuba-admin spec for ST and SaaS (#4716) by @dbanda +- feat(rust-arroyo): Processor calls consumer.poll() with timeout of 1 second (#4719) by @lynnagara +- experiment(on-call): Profile bytes scanned potentially incorrect (#4714) by @rahul-kumar-saini +- feat(reduce): Avoid clone and ensure all messages are processed in join (#4718) by @lynnagara +- improvement(visibility): make the replacer log project_ids for slow replacements (#4717) by @onewland +- feat(profiling): Add a functions processor in Rust (#4705) by @phacops +- fix(spans): Handle bad group and group_raw values (#4715) by @phacops +- feat(profiling): Add a profiles processor in Rust (#4698) by @phacops +- Remove canary deploys in non-US regions (#4696) by @mattgauntseo-sentry +- feat(spans): write tags to sentry_tags col (#4706) by @dbanda +- sort lists before compare (#4711) by @dbanda +- fix(rust-arroyo): Fix timeout in RunTaskInThreads::join() (#4704) by @lynnagara +- ref(rust): Rewrite check_for_results to use better way of joining process pool (#4703) by @untitaker + +_Plus 78 more_ + ## 23.8.0 ### Various fixes & improvements diff --git a/LICENSE b/LICENSE index 5cac0ad6f3d..331750698c2 100644 --- a/LICENSE +++ b/LICENSE @@ -16,7 +16,7 @@ Additional Use Grant: You may make use of the Licensed Work, provided that you d error-reporting or application monitoring features of the Licensed Work. -Change Date: 2026-08-15 +Change Date: 2026-09-19 Change License: Apache License, Version 2.0 diff --git a/docs/source/conf.py b/docs/source/conf.py index 692335d2078..b344d9d68aa 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.9.0.dev0" +release = "23.9.0" # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index ea86ac28411..4328b818b8d 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import find_packages, setup -VERSION = "23.9.0.dev0" +VERSION = "23.9.0" def get_requirements() -> Sequence[str]: