From d0c276033a753a8422442c7c7e4f07e0908709fa Mon Sep 17 00:00:00 2001 From: getsentry-bot Date: Mon, 15 Aug 2022 17:09:38 +0000 Subject: [PATCH] release: 22.8.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 3a991484847..cb627b71f2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,36 @@ # Changelog +## 22.8.0 + +### Various fixes & improvements + +- feat: Sort raw sql fields and conditions [Experiment] (#2988) by @enochtangg +- Revert "ref(MDC): cleanup dataset factory, formalize factory pattern (#3051)" (#3052) by @volokluev +- ref(MDC): cleanup dataset factory, formalize factory pattern (#3051) by @volokluev +- feat(MDC): Add Storage yaml parsing and schema (#3046) by @rahul-kumar-saini +- config(datasets) - create a PluggableEntity class (#3050) by @onewland +- Generate abstract_column_set from replays schema (#3041) by @cmanallen +- ref: remove future (unused python2 porting library) (#3040) by @asottile-sentry +- cleanup: remove unused query processor PatternReplacer (#3038) by @onewland +- feat(replays): Add urls, user_agent, and replay_start_timestamp fields and processor (#3023) by @cmanallen +- feat(replays): Add urls, user_agent, and replay_start_timestamp migration (#3021) by @cmanallen +- feat(datasets): Add configs directory structure (#3034) by @rahul-kumar-saini +- fix(replacements): Limit size of excluded groups set [INC-190] (#3027) by @untitaker +- fix(inc): Introduce denylist that stops attempting consistent queries per project [INC-190] (#3026) by @untitaker +- Allow us to disable the global rate limiter (#3025) by @fpacifici +- build: Bump confluent sentry-python to 1.9.0 (#3022) by @andriisoldatenko +- config(ds): get rid of existing logic to move to dynamic sampling (#3018) by @onewland +- fix(discover): add missing transaction_source to TRANSACTIONS_COLUMNS (#3020) by @andriisoldatenko +- config(mep): add table rate limit and tuple unaliaser to sets/distributions (#3019) by @onewland +- Remove replays from the skipped migrations group (#3017) by @cmanallen +- feat(rollout): Make transaction query processors same (#3006) by @nikhars +- feat(replays): Enable URL processing in the consumer (#3004) by @cmanallen +- feat(replays): add error_ids column (#3001) by @JoshFerge +- fix(admin): Fix deletion of configs with `/` in them (#3016) by @nikhars +- config(mep): add schedulers/executors to snuba-stable freight (#3015) by @onewland + +_Plus 56 more_ + ## 22.7.0 ### Various fixes & improvements diff --git a/LICENSE b/LICENSE index 1b8b864a1b9..9c15d12d5c4 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-07-15 +Change Date: 2025-08-15 Change License: Apache License, Version 2.0 diff --git a/docs/source/conf.py b/docs/source/conf.py index 3392157359c..2e32c1be2ca 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.8.0.dev0" +release = "22.8.0" # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 1f9f1527a16..660a1853b3a 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import find_packages, setup -VERSION = "22.8.0.dev0" +VERSION = "22.8.0" def get_requirements() -> Sequence[str]: