Skip to content

Commit 2e4c375

Browse files
committed
release: 23.2.0
1 parent c128190 commit 2e4c375

File tree

4 files changed

+34
-3
lines changed

4 files changed

+34
-3
lines changed

CHANGELOG.md

+31
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,36 @@
11
# Changelog
22

3+
## 23.2.0
4+
5+
### Various fixes & improvements
6+
7+
- fix: Reject improperly typed tag conditions as invalid queries (#3727) by @evanh
8+
- ref(batch-writer): Remove unused terminate() method (#3744) by @lynnagara
9+
- allow strings in select statements on system queries (#3745) by @volokluev
10+
- ref: InsertBatchWriter and ReplacementBatchWriter don't subclass ProcessingStrategy (#3743) by @lynnagara
11+
- add support for enum column type (#3729) by @enochtangg
12+
- change search_issues migrations to non-blocking (#3739) by @barkbarkimashark
13+
- fix: Rename consumer group tag (#3740) by @lynnagara
14+
- fix ui bug where we dont properly refresh table after running (#3733) by @dbanda
15+
- change log error to warn (#3734) by @dbanda
16+
- ref: bump timeout slightly (#3738) by @asottile-sentry
17+
- ref: force ipv4 localhost (#3736) by @asottile-sentry
18+
- add generic metric consumers to freight (#3737) by @enochtangg
19+
- fix(admin): allow querying dist nodes too (#3731) by @dbanda
20+
- Revert "feat(admin): allow querylog to be queried by more threads (#3718)" (#3732) by @volokluev
21+
- migrations: add custom search issues role (#3724) by @dbanda
22+
- docs(clickhouse): describe basic Sentry CH usage (#3701) by @onewland
23+
- ref(migrations): Make ADMIN_ALLOWED_MIGRATION_GROUPS a set (#3720) by @MeredithAnya
24+
- feat(admin): allow querylog to be queried by more threads (#3718) by @volokluev
25+
- feat(replays): add replay_id to transactions table (#3721) by @JoshFerge
26+
- feat(replays): add replay_id to errors table (#3722) by @JoshFerge
27+
- Remove experimental flag from replays (#3726) by @cmanallen
28+
- fix: Fix typing of multistorage consumer (#3719) by @lynnagara
29+
- ref(consumer): Build strategy factory function in multistorage consumer (#3714) by @ayirr7
30+
- fix(cli): Allow more options for datasets and entities (#3715) by @nikhars
31+
32+
_Plus 64 more_
33+
334
## 23.1.1
435

536
### Various fixes & improvements

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Additional Use Grant: You may make use of the Licensed Work, provided that you d
1616
error-reporting or application monitoring features of the
1717
Licensed Work.
1818

19-
Change Date: 2026-01-26
19+
Change Date: 2026-02-15
2020

2121
Change License: Apache License, Version 2.0
2222

docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
copyright = "2021, Sentry Team and Contributors"
88
author = "Sentry Team and Contributors"
99

10-
release = "23.2.0.dev0"
10+
release = "23.2.0"
1111

1212

1313
# -- General configuration ---------------------------------------------------

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from setuptools import find_packages, setup
44

5-
VERSION = "23.2.0.dev0"
5+
VERSION = "23.2.0"
66

77

88
def get_requirements() -> Sequence[str]:

0 commit comments

Comments
 (0)