Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
pfefferle committed Sep 9, 2024
1 parent ae8e2b6 commit e6c8689
Show file tree
Hide file tree
Showing 4 changed files with 65 additions and 29 deletions.
28 changes: 27 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down
31 changes: 18 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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 ##
Expand Down
4 changes: 2 additions & 2 deletions activitypub.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.
Expand Down
31 changes: 18 additions & 13 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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 ==
Expand Down

0 comments on commit e6c8689

Please sign in to comment.