diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2022-12-12 13:21:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-12 13:21:17 +0100 |
commit | 2a3cd59dd06411a79fb7500970db1b98f0d87695 (patch) | |
tree | 074cfcb2203b2bea4612c790719dcec67d86631e /debian | |
parent | Bump phonenumbers from 8.13.1 to 8.13.2 (#14660) (diff) | |
download | synapse-2a3cd59dd06411a79fb7500970db1b98f0d87695.tar.xz |
Add optional ICU support for user search (#14464)
Fixes #13655 This change uses ICU (International Components for Unicode) to improve boundary detection in user search. This change also adds a new dependency on libicu-dev and pkg-config for the Debian packages, which are available in all supported distros.
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 7 | ||||
-rw-r--r-- | debian/control | 2 |
2 files changed, 9 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index 163b7210bf..5d3c4f7d6b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +matrix-synapse-py3 (1.74.0~rc1) UNRELEASED; urgency=medium + + * New dependency on libicu-dev to provide improved results for user + search. + + -- Synapse Packaging team <packages@matrix.org> Tue, 06 Dec 2022 15:28:10 +0000 + matrix-synapse-py3 (1.73.0) stable; urgency=medium * New Synapse release 1.73.0. diff --git a/debian/control b/debian/control index 86f5a66d02..bc628cec08 100644 --- a/debian/control +++ b/debian/control @@ -8,6 +8,8 @@ Build-Depends: dh-virtualenv (>= 1.1), libsystemd-dev, libpq-dev, + libicu-dev, + pkg-config, lsb-release, python3-dev, python3, |