From e6c8689b8697b18b3bc4f1f559c153713429b00f Mon Sep 17 00:00:00 2001 From: Matthias Pfefferle Date: Mon, 9 Sep 2024 09:44:35 +0200 Subject: [PATCH] version bump --- CHANGELOG.md | 28 +++++++++++++++++++++++++++- README.md | 31 ++++++++++++++++++------------- activitypub.php | 4 ++-- readme.txt | 31 ++++++++++++++++++------------- 4 files changed, 65 insertions(+), 29 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d465e7a6c..cbd3557b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,32 @@ 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.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [3.1.0] - 2024-08-XX +## [3.2.0] - 2024-09-09 + +### Added + +* Support for Seriously Simple Podcasting +* Blog extra fields +* Support "read more" for Activity-Summary +* `Like` and `Announce` (Boost) handler +* Simple Remote-Reply endpoint +* "Stream" Plugin support +* New Fediverse symbol + +### Improved + +* Replace hashtags, URLs, and mentions in summary with links +* Hide Bookmarklet if site does not support Blocks + +### Fixed + +* Link detection for extra fields when spaces after the link and fix when two links in the content +* `Undo` for `Likes` and `Announces` +* Show Avatars on `Likes` and `Announces` +* Remove proprietary WebFinger resource +* Wrong followers URL in "to" attribute of posts + +## [3.1.0] - 2024-08-07 ### Added @@ -860,6 +885,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * initial +[3.2.0]: https://github.com/Automattic/wordpress-activitypub/compare/3.1.0...3.2.0 [3.1.0]: https://github.com/Automattic/wordpress-activitypub/compare/3.0.0...3.1.0 [3.0.0]: https://github.com/Automattic/wordpress-activitypub/compare/2.6.1...3.0.0 [2.6.1]: https://github.com/Automattic/wordpress-activitypub/compare/2.6.0...2.6.1 diff --git a/README.md b/README.md index 5bb614216..7ad791449 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ **Tags:** OStatus, fediverse, activitypub, activitystream **Requires at least:** 5.5 **Tested up to:** 6.6 -**Stable tag:** 3.1.0 +**Stable tag:** 3.2.0 **Requires PHP:** 7.0 **License:** MIT **License URI:** http://opensource.org/licenses/MIT @@ -134,6 +134,23 @@ For reasons of data protection, it is not possible to see the followers of other ## Changelog ## +### 3.2.0 ### + +* Added: Support for Seriously Simple Podcasting +* Added: Blog extra fields +* Added: Support "read more" for Activity-Summary +* Added: `Like` and `Announce` (Boost) handler +* Added: Simple Remote-Reply endpoint +* Added: "Stream" Plugin support +* Added: New Fediverse symbol +* Improved: Replace hashtags, urls and mentions in summary with links +* Improved: Hide Bookmarklet if site does not support Blocks +* Fixed: Link detection for extra fields when spaces after the link and fix when two links in the content +* Fixed: `Undo` for `Likes` and `Announces` +* Fixed: Show Avatars on `Likes` and `Announces` +* Fixed: Remove proprietary WebFinger resource +* Fixed: Wrong followers URL in "to" attribute of posts + ### 3.1.0 ### * Added: `menu_order` to `ap_extrafield` so that user can decide in with order they will be displayed @@ -169,18 +186,6 @@ For reasons of data protection, it is not possible to see the followers of other * Fixed: WebFinger Error Codes (thanks to the FediTest project) * Fixed: Fatal Error when wp_schedule_single_event third argument is being passed as a string -### 2.5.0 ### - -* Added: WebFinger cors header -* Added: WebFinger Content-Type -* Added: The Fediverse creator of a post to OpenGraph -* Improved: Try to lookup local users first for Enable Mastodon Apps -* Improved: Send also Announces for deletes -* Improved: Load time by adding `count_total=false` to `WP_User_Query` -* Fixed: Several WebFinger issues -* Fixed: Redirect issue for Application user -* Fixed: Accessibilty issues with missing screen-reader-text on User overview page - See full Changelog on [GitHub](https://github.com/Automattic/wordpress-activitypub/blob/master/CHANGELOG.md). ## Upgrade Notice ## diff --git a/activitypub.php b/activitypub.php index a9bb64a28..bc6b197b3 100644 --- a/activitypub.php +++ b/activitypub.php @@ -3,7 +3,7 @@ * Plugin Name: ActivityPub * Plugin URI: https://github.com/pfefferle/wordpress-activitypub/ * Description: The ActivityPub protocol is a decentralized social networking protocol based upon the ActivityStreams 2.0 data format. - * Version: 3.1.0 + * Version: 3.2.0 * Author: Matthias Pfefferle & Automattic * Author URI: https://automattic.com/ * License: MIT @@ -21,7 +21,7 @@ require_once __DIR__ . '/includes/compat.php'; require_once __DIR__ . '/includes/functions.php'; -\define( 'ACTIVITYPUB_PLUGIN_VERSION', '3.0.0' ); +\define( 'ACTIVITYPUB_PLUGIN_VERSION', '3.2.0' ); /** * Initialize the plugin constants. diff --git a/readme.txt b/readme.txt index c96049480..08837cf61 100644 --- a/readme.txt +++ b/readme.txt @@ -3,7 +3,7 @@ Contributors: automattic, pfefferle, mediaformat, mattwiebe, akirk, jeherve, nur Tags: OStatus, fediverse, activitypub, activitystream Requires at least: 5.5 Tested up to: 6.6 -Stable tag: 3.1.0 +Stable tag: 3.2.0 Requires PHP: 7.0 License: MIT License URI: http://opensource.org/licenses/MIT @@ -134,6 +134,23 @@ For reasons of data protection, it is not possible to see the followers of other == Changelog == += 3.2.0 = + +* Added: Support for Seriously Simple Podcasting +* Added: Blog extra fields +* Added: Support "read more" for Activity-Summary +* Added: `Like` and `Announce` (Boost) handler +* Added: Simple Remote-Reply endpoint +* Added: "Stream" Plugin support +* Added: New Fediverse symbol +* Improved: Replace hashtags, urls and mentions in summary with links +* Improved: Hide Bookmarklet if site does not support Blocks +* Fixed: Link detection for extra fields when spaces after the link and fix when two links in the content +* Fixed: `Undo` for `Likes` and `Announces` +* Fixed: Show Avatars on `Likes` and `Announces` +* Fixed: Remove proprietary WebFinger resource +* Fixed: Wrong followers URL in "to" attribute of posts + = 3.1.0 = * Added: `menu_order` to `ap_extrafield` so that user can decide in with order they will be displayed @@ -169,18 +186,6 @@ For reasons of data protection, it is not possible to see the followers of other * Fixed: WebFinger Error Codes (thanks to the FediTest project) * Fixed: Fatal Error when wp_schedule_single_event third argument is being passed as a string -= 2.5.0 = - -* Added: WebFinger cors header -* Added: WebFinger Content-Type -* Added: The Fediverse creator of a post to OpenGraph -* Improved: Try to lookup local users first for Enable Mastodon Apps -* Improved: Send also Announces for deletes -* Improved: Load time by adding `count_total=false` to `WP_User_Query` -* Fixed: Several WebFinger issues -* Fixed: Redirect issue for Application user -* Fixed: Accessibilty issues with missing screen-reader-text on User overview page - See full Changelog on [GitHub](https://github.com/Automattic/wordpress-activitypub/blob/master/CHANGELOG.md). == Upgrade Notice ==