From 22e1009bde1c51f19daabf59943b215276234721 Mon Sep 17 00:00:00 2001 From: getsentry-bot Date: Thu, 15 Sep 2022 17:09:57 +0000 Subject: [PATCH] release: 22.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 cb627b71f2..9db9179314 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,36 @@ # Changelog +## 22.9.0 + +### Various fixes & improvements + +- feat(slicing): add partition mapping (#3135) by @onewland +- fix(MDC): Validate required fields and that no additional fields are added (#3137) by @rahul-kumar-saini +- fix(MDC): Fix to ensure schema is in the correct place (#3136) by @evanh +- feat(MDC): Validate configs in CI (#3128) by @rahul-kumar-saini +- fix e2e tests for dogfood self-hosted changes (#3134) by @hubertdeng123 +- ref(MDC): Represent migrations in configuration (#3071) by @evanh +- feat(transactions): Add app_start_type migration (#3124) by @philipphofmann +- feat(upgrade): Similar query processors for both error storages (#3105) by @nikhars +- ref(arroyo): Fix arroyo imports (#3132) by @lynnagara +- fix(settings): Remove requirement of CDC and events to be on same cluster (#3126) by @nikhars +- feat(discover): add group_ids to discover (#3104) by @udameli +- ref(MDC): EntityKey enum to class (#3109) by @rahul-kumar-saini +- feat(mdc): Load entity subscriptions from config (#3107) by @enochtangg +- config(redis) set reinitialize_steps from settings (#3125) by @onewland +- ref(MDC): consolidate query processors into one folder (#3098) by @volokluev +- ref(EntityKey): Rename GROUPEDMESSAGES to GROUPEDMESSAGE (#3123) by @rahul-kumar-saini +- feat(MDC): Generic Metrics Dataset loaded from Config (#3108) by @rahul-kumar-saini +- ref: use internal pypi for prebuilt packages (#3100) by @asottile-sentry +- feat: Add initial documentation for Dataset configuration (#3089) by @evanh +- fix(mdc): use entity name for mapping when type is not sufficient (#3110) by @onewland +- feat(migrations): Update ddl changes script with new path to snuba_migrations (#3103) by @lynnagara +- ref(MDC): StorageKey enum to class (#3096) by @rahul-kumar-saini +- feat(mdc) add configuration for generic metrics distributions (#3102) by @onewland +- feat(mdc): Make translators, validators, and mappers registered classes (#3099) by @volokluev + +_Plus 32 more_ + ## 22.8.0 ### Various fixes & improvements diff --git a/LICENSE b/LICENSE index 9c15d12d5c..acb325a522 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-08-15 +Change Date: 2025-09-15 Change License: Apache License, Version 2.0 diff --git a/docs/source/conf.py b/docs/source/conf.py index c828c9499a..bf68ca7058 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.9.0.dev0" +release = "22.9.0" # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 34464304bc..a4d33ab293 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import find_packages, setup -VERSION = "22.9.0.dev0" +VERSION = "22.9.0" def get_requirements() -> Sequence[str]: