Skip to content

Commit e6c8689

Browse files
committed
version bump
1 parent ae8e2b6 commit e6c8689

File tree

4 files changed

+65
-29
lines changed

4 files changed

+65
-29
lines changed

CHANGELOG.md

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,32 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [3.1.0] - 2024-08-XX
8+
## [3.2.0] - 2024-09-09
9+
10+
### Added
11+
12+
* Support for Seriously Simple Podcasting
13+
* Blog extra fields
14+
* Support "read more" for Activity-Summary
15+
* `Like` and `Announce` (Boost) handler
16+
* Simple Remote-Reply endpoint
17+
* "Stream" Plugin support
18+
* New Fediverse symbol
19+
20+
### Improved
21+
22+
* Replace hashtags, URLs, and mentions in summary with links
23+
* Hide Bookmarklet if site does not support Blocks
24+
25+
### Fixed
26+
27+
* Link detection for extra fields when spaces after the link and fix when two links in the content
28+
* `Undo` for `Likes` and `Announces`
29+
* Show Avatars on `Likes` and `Announces`
30+
* Remove proprietary WebFinger resource
31+
* Wrong followers URL in "to" attribute of posts
32+
33+
## [3.1.0] - 2024-08-07
934

1035
### Added
1136

@@ -860,6 +885,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
860885

861886
* initial
862887

888+
[3.2.0]: https://github.com/Automattic/wordpress-activitypub/compare/3.1.0...3.2.0
863889
[3.1.0]: https://github.com/Automattic/wordpress-activitypub/compare/3.0.0...3.1.0
864890
[3.0.0]: https://github.com/Automattic/wordpress-activitypub/compare/2.6.1...3.0.0
865891
[2.6.1]: https://github.com/Automattic/wordpress-activitypub/compare/2.6.0...2.6.1

README.md

Lines changed: 18 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
**Tags:** OStatus, fediverse, activitypub, activitystream
44
**Requires at least:** 5.5
55
**Tested up to:** 6.6
6-
**Stable tag:** 3.1.0
6+
**Stable tag:** 3.2.0
77
**Requires PHP:** 7.0
88
**License:** MIT
99
**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
134134

135135
## Changelog ##
136136

137+
### 3.2.0 ###
138+
139+
* Added: Support for Seriously Simple Podcasting
140+
* Added: Blog extra fields
141+
* Added: Support "read more" for Activity-Summary
142+
* Added: `Like` and `Announce` (Boost) handler
143+
* Added: Simple Remote-Reply endpoint
144+
* Added: "Stream" Plugin support
145+
* Added: New Fediverse symbol
146+
* Improved: Replace hashtags, urls and mentions in summary with links
147+
* Improved: Hide Bookmarklet if site does not support Blocks
148+
* Fixed: Link detection for extra fields when spaces after the link and fix when two links in the content
149+
* Fixed: `Undo` for `Likes` and `Announces`
150+
* Fixed: Show Avatars on `Likes` and `Announces`
151+
* Fixed: Remove proprietary WebFinger resource
152+
* Fixed: Wrong followers URL in "to" attribute of posts
153+
137154
### 3.1.0 ###
138155

139156
* 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
169186
* Fixed: WebFinger Error Codes (thanks to the FediTest project)
170187
* Fixed: Fatal Error when wp_schedule_single_event third argument is being passed as a string
171188

172-
### 2.5.0 ###
173-
174-
* Added: WebFinger cors header
175-
* Added: WebFinger Content-Type
176-
* Added: The Fediverse creator of a post to OpenGraph
177-
* Improved: Try to lookup local users first for Enable Mastodon Apps
178-
* Improved: Send also Announces for deletes
179-
* Improved: Load time by adding `count_total=false` to `WP_User_Query`
180-
* Fixed: Several WebFinger issues
181-
* Fixed: Redirect issue for Application user
182-
* Fixed: Accessibilty issues with missing screen-reader-text on User overview page
183-
184189
See full Changelog on [GitHub](https://github.com/Automattic/wordpress-activitypub/blob/master/CHANGELOG.md).
185190

186191
## Upgrade Notice ##

activitypub.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: ActivityPub
44
* Plugin URI: https://github.com/pfefferle/wordpress-activitypub/
55
* Description: The ActivityPub protocol is a decentralized social networking protocol based upon the ActivityStreams 2.0 data format.
6-
* Version: 3.1.0
6+
* Version: 3.2.0
77
* Author: Matthias Pfefferle & Automattic
88
* Author URI: https://automattic.com/
99
* License: MIT
@@ -21,7 +21,7 @@
2121
require_once __DIR__ . '/includes/compat.php';
2222
require_once __DIR__ . '/includes/functions.php';
2323

24-
\define( 'ACTIVITYPUB_PLUGIN_VERSION', '3.0.0' );
24+
\define( 'ACTIVITYPUB_PLUGIN_VERSION', '3.2.0' );
2525

2626
/**
2727
* Initialize the plugin constants.

readme.txt

Lines changed: 18 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: automattic, pfefferle, mediaformat, mattwiebe, akirk, jeherve, nur
33
Tags: OStatus, fediverse, activitypub, activitystream
44
Requires at least: 5.5
55
Tested up to: 6.6
6-
Stable tag: 3.1.0
6+
Stable tag: 3.2.0
77
Requires PHP: 7.0
88
License: MIT
99
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
134134

135135
== Changelog ==
136136

137+
= 3.2.0 =
138+
139+
* Added: Support for Seriously Simple Podcasting
140+
* Added: Blog extra fields
141+
* Added: Support "read more" for Activity-Summary
142+
* Added: `Like` and `Announce` (Boost) handler
143+
* Added: Simple Remote-Reply endpoint
144+
* Added: "Stream" Plugin support
145+
* Added: New Fediverse symbol
146+
* Improved: Replace hashtags, urls and mentions in summary with links
147+
* Improved: Hide Bookmarklet if site does not support Blocks
148+
* Fixed: Link detection for extra fields when spaces after the link and fix when two links in the content
149+
* Fixed: `Undo` for `Likes` and `Announces`
150+
* Fixed: Show Avatars on `Likes` and `Announces`
151+
* Fixed: Remove proprietary WebFinger resource
152+
* Fixed: Wrong followers URL in "to" attribute of posts
153+
137154
= 3.1.0 =
138155

139156
* 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
169186
* Fixed: WebFinger Error Codes (thanks to the FediTest project)
170187
* Fixed: Fatal Error when wp_schedule_single_event third argument is being passed as a string
171188

172-
= 2.5.0 =
173-
174-
* Added: WebFinger cors header
175-
* Added: WebFinger Content-Type
176-
* Added: The Fediverse creator of a post to OpenGraph
177-
* Improved: Try to lookup local users first for Enable Mastodon Apps
178-
* Improved: Send also Announces for deletes
179-
* Improved: Load time by adding `count_total=false` to `WP_User_Query`
180-
* Fixed: Several WebFinger issues
181-
* Fixed: Redirect issue for Application user
182-
* Fixed: Accessibilty issues with missing screen-reader-text on User overview page
183-
184189
See full Changelog on [GitHub](https://github.com/Automattic/wordpress-activitypub/blob/master/CHANGELOG.md).
185190

186191
== Upgrade Notice ==

0 commit comments

Comments
 (0)