version bump

This commit is contained in:
Matthias Pfefferle 2024-09-09 09:44:35 +02:00
parent ae8e2b6918
commit e6c8689b86
4 changed files with 65 additions and 29 deletions

View file

@ -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

View file

@ -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 ##

View file

@ -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 @@ use function Activitypub\site_supports_blocks;
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.

View file

@ -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 ==