From cc54667cc178e0c8d875d86f43d453ceb235afec Mon Sep 17 00:00:00 2001 From: getsentry-bot Date: Sun, 15 May 2022 17:08:43 +0000 Subject: [PATCH] release: 22.5.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 0f34291129..cd53dc65ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,36 @@ # Changelog +## 22.5.0 + +### Various fixes & improvements + +- fix(tiger): don't call the explicit tuple function in clickhouse (#2699) by @volokluev +- fix(dlq): Metrics ignored messages should be Sentry Errors (#2698) by @rahul-kumar-saini +- fix: Allow arbitrary AppIDs (#2692) by @evanh +- dlq(metrics): Metrics produce policy + basic validation replaced with DLQ stuff (#2614) by @rahul-kumar-saini +- feat(devserver): Force latest offset in devserver (#2573) by @mitsuhiko +- fix(querylog): fix the kafka config, add test for producer (#2695) by @volokluev +- fix kafka config option (#2694) by @volokluev +- fix(querylog): compress, allow larger messages on the querylog producer (#2682) by @volokluev +- ref: try building the arm64 image using linux builders (#2688) by @asottile-sentry +- fix(tiger): Implement tupleElement function in snuba (#2687) by @volokluev +- fix: Support array as well as tuple in condition (#2686) by @evanh +- feat(arroyo): Upgrade Arroyo for new Parallel Transform Step (#2679) by @rahul-kumar-saini +- feat(subscriptions): Deploy transactions scheduler and executor (#2690) by @lynnagara +- Bring in CLA Lite (#2667) by @chadwhitacre +- feat(subscriptions): Record a metric on subscription creation and deletion (#2689) by @lynnagara +- feat(subscriptions): Combined scheduler and executor (#2666) by @volokluev +- chore(tiger): Raise a different timeout exception from tiger clusters (#2680) by @nikhars +- feat(subscriptions): Remove verifier from Freight (#2684) by @lynnagara +- feat(subscriptions): Debug producer shutdown (#2685) by @lynnagara +- feat(subscriptions): Add logging for skipped subscriptions (#2678) by @lynnagara +- ref(dev-tooling): Enable commit tracking attempt II (#2677) by @MeredithAnya +- feat(subscriptions): Add config to skip stale subscriptions in executor (#2676) by @lynnagara +- Skip old subscriptions (#2675) by @fpacifici +- Add logging (#2674) by @fpacifici + +_Plus 57 more_ + ## 22.4.0 ### Various fixes & improvements diff --git a/LICENSE b/LICENSE index cb1186c5f0..6af55f5273 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: 2025-04-15 +Change Date: 2025-05-15 Change License: Apache License, Version 2.0 diff --git a/docs/source/conf.py b/docs/source/conf.py index 06fe71de4f..9e1eba9318 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 = "22.5.0.dev0" +release = "22.5.0" # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 9feb597335..1dc96d13e1 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import find_packages, setup -VERSION = "22.5.0.dev0" +VERSION = "22.5.0" def get_requirements() -> Sequence[str]: