diff options
author | Haelwenn <contact+git.pleroma.social@hacktivis.me> | 2021-08-29 18:51:50 +0000 |
---|---|---|
committer | Haelwenn <contact+git.pleroma.social@hacktivis.me> | 2021-08-29 18:51:50 +0000 |
commit | 2e695dbe3b81860988e3cac2bf18cb63c57148d2 (patch) | |
tree | e1c31c9ca49c14860af2adaaf4f20ac99ec330f5 | |
parent | 689a59f41f265c08f1aae9784b05747811956775 (diff) | |
parent | 28a17c2dc70f33734aceeb499f38cb804489788f (diff) | |
download | pleroma-2e695dbe3b81860988e3cac2bf18cb63c57148d2.tar.gz pleroma-2e695dbe3b81860988e3cac2bf18cb63c57148d2.zip |
Merge branch 'chores/2.4.1-develop' into 'develop'
Mergeback: 2.4.1
Closes #2758
See merge request pleroma/pleroma!3520
-rw-r--r-- | CHANGELOG.md | 22 | ||||
-rw-r--r-- | mix.exs | 2 |
2 files changed, 20 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index ae6b7506b..003350658 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,11 +15,27 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ### Removed -## Unreleased-patch +## 2.4.1 - 2021-08-29 + +### Changed +- Make `mix pleroma.database set_text_search_config` run concurrently and indefinitely + +### Added +- AdminAPI: Missing configuration description for StealEmojiPolicy + +### Fixed +- MastodonAPI: Stream out Create activities +- MRF ObjectAgePolicy: Fix pattern matching on "published" +- TwitterAPI: Make `change_password` and `change_email` require params on body instead of query +- Subscription(Bell) Notifications: Don't create from Pipeline Ingested replies +- AdminAPI: Fix rendering reports containing a `nil` object - Mastodon API: Activity Search fallbacks on status fetching after a DB Timeout/Error -- Make activity search properly use GIN indexes +- Mastodon API: Fix crash in Streamer related to reblogging +- AdminAPI: List available frontends when `static/frontends` folder is missing +- Make activity search properly use language-aware GIN indexes +- AdminAPI: Fix suggestions for MRF Policies -## 2.4.0 - 2021-08-xx +## 2.4.0 - 2021-08-08 ### Changed @@ -4,7 +4,7 @@ defmodule Pleroma.Mixfile do def project do [ app: :pleroma, - version: version("2.4.50"), + version: version("2.4.51"), elixir: "~> 1.9", elixirc_paths: elixirc_paths(Mix.env()), compilers: [:phoenix, :gettext] ++ Mix.compilers(), |