From 7ed52838f457a0ce20235892a35b56523ed0afee Mon Sep 17 00:00:00 2001 From: Floatingghost Date: Sun, 5 Jan 2025 16:22:38 +0000 Subject: [PATCH 1/3] fix test --- test/pleroma/web/mastodon_api/views/status_view_test.exs | 1 + 1 file changed, 1 insertion(+) diff --git a/test/pleroma/web/mastodon_api/views/status_view_test.exs b/test/pleroma/web/mastodon_api/views/status_view_test.exs index 6421df132..6315a4806 100644 --- a/test/pleroma/web/mastodon_api/views/status_view_test.exs +++ b/test/pleroma/web/mastodon_api/views/status_view_test.exs @@ -588,6 +588,7 @@ test "attachments" do end test "put the url advertised in the Activity in to the url attribute" do + Pleroma.Config.put([:instance, :limit_to_local_content], false) id = "https://wedistribute.org/wp-json/pterotype/v1/object/85810" [activity] = Activity.search(nil, id) From ae40ccb8caf330456f1709065fe25ec452857fcc Mon Sep 17 00:00:00 2001 From: Floatingghost Date: Sun, 5 Jan 2025 16:23:09 +0000 Subject: [PATCH 2/3] add changelog entry --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e463b33b6..1ca19e9c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ 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/). -## UNRELEASED +## 2025.01 ## Added - New config option `:instance, :cleanup_attachments_delay` From 55fc410f80db23feaf3fd0f7025233382d7c83a4 Mon Sep 17 00:00:00 2001 From: Floatingghost Date: Sun, 5 Jan 2025 16:25:42 +0000 Subject: [PATCH 3/3] bump version number --- mix.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mix.exs b/mix.exs index 982876fcb..cd2485a20 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Pleroma.Mixfile do def project do [ app: :pleroma, - version: version("3.13.3"), + version: version("3.14.0"), elixir: "~> 1.14", elixirc_paths: elixirc_paths(Mix.env()), compilers: Mix.compilers(),