commit: 36f8b924aea1a0f4cbc63d00224b08e2a2b89a21 parent d92d6132f2acc1d123de4ced869b575e1a8e8785 Author: lain <lain@soykaf.club> Date: Wed, 27 Nov 2024 08:09:51 +0000 Merge branch 'mergeback/2.7.1' into 'develop' mergeback: Version 2.7.1 See merge request pleroma/pleroma!4299Diffstat:
8 files changed, 13 insertions(+), 7 deletions(-)diff --git a/CHANGELOG.md b/CHANGELOG.md@@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## 2.7.1 + +### Changed +- Accept `application/activity+json` for requests to `/.well-known/nodeinfo` + +### Fixed +- Truncate remote user fields, avoids them getting rejected +- Improve the `FollowValidator` to successfully incoming activities with an errant `cc` field. +- Resolved edge case where the API can report you are following a user but the relationship is not fully established. +- The Swoosh email adapter for Mailgun was missing a new dependency on `:multipart` +- Fix Mastodon WebSocket authentication + ## 2.7.0 ### Securitydiff --git a/changelog.d/bugfix-truncate-remote-user-fields.fix b/changelog.d/bugfix-truncate-remote-user-fields.fix@@ -1 +0,0 @@ -Truncate remote user fields, avoids them getting rejecteddiff --git a/changelog.d/follow-validator.fix b/changelog.d/follow-validator.fix@@ -1 +0,0 @@ -Improve the FollowValidator to successfully incoming activities with an errant cc field.diff --git a/changelog.d/following-state.fix b/changelog.d/following-state.fix@@ -1 +0,0 @@ -Resolved edge case where the API can report you are following a user but the relationship is not fully established.diff --git a/changelog.d/mailgun.fix b/changelog.d/mailgun.fix@@ -1 +0,0 @@ -The Swoosh email adapter for Mailgun was missing a new dependency on :multipartdiff --git a/changelog.d/mastodon-websocket.fix b/changelog.d/mastodon-websocket.fix@@ -1 +0,0 @@ -Fix Mastodon WebSocket authenticationdiff --git a/changelog.d/well-known.change b/changelog.d/well-known.change@@ -1 +0,0 @@ -Accept application/activity+json for requests to .well-known/nodeinfodiff --git a/mix.exs b/mix.exs@@ -4,7 +4,7 @@ defmodule Pleroma.Mixfile do def project do [ app: :pleroma, - version: version("2.7.0"), + version: version("2.7.51"), elixir: "~> 1.14", elixirc_paths: elixirc_paths(Mix.env()), compilers: Mix.compilers(),