Skip to content

Commit 7fa854d

Browse files
authored
Release 5.9.1 (#1707)
1 parent 9d235ff commit 7fa854d

File tree

4 files changed

+15
-10
lines changed

4 files changed

+15
-10
lines changed

.github/changelog/1705-from-description

Lines changed: 0 additions & 4 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ 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+
## [5.9.1] - 2025-05-15
9+
### Fixed
10+
- Fixed a bug where Reaction blocks without modified titles did not get displayed correctly. [#1705]
11+
812
## [5.9.0] - 2025-05-14
913
### Added
1014
- ActivityPub embeds now support audios, videos, and up to 4 images. [#1645]
@@ -37,7 +41,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3741
- Use `Audio` and `Video` type for Attachments, instead of the very generic `Document` type. [#1486]
3842

3943
### Deprecated
40-
- Deprecated `rest_activitypub_outbox_query` filter in favor of `activitypub_rest_outbox_query`.
44+
- Deprecated `rest_activitypub_outbox_query` filter in favor of `activitypub_rest_outbox_query`.
4145
Deprecated `activitypub_outbox_post` action in favor of `activitypub_rest_outbox_post`. [#1628]
4246

4347
### Fixed
@@ -1212,6 +1216,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
12121216
### Added
12131217
- initial
12141218

1219+
[5.9.1]: https://github.com/Automattic/wordpress-activitypub/compare/5.9.0...5.9.1
12151220
[5.9.0]: https://github.com/Automattic/wordpress-activitypub/compare/5.8.0...5.9.0
12161221
[5.8.0]: https://github.com/Automattic/wordpress-activitypub/compare/5.7.0...5.8.0
12171222
[5.7.0]: https://github.com/Automattic/wordpress-activitypub/compare/5.6.1...5.7.0

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/Automattic/wordpress-activitypub
55
* Description: The ActivityPub protocol is a decentralized social networking protocol based upon the ActivityStreams 2.0 data format.
6-
* Version: 5.9.0
6+
* Version: 5.9.1
77
* Author: Matthias Pfefferle & Automattic
88
* Author URI: https://automattic.com/
99
* License: MIT
@@ -19,7 +19,7 @@
1919

2020
use WP_CLI;
2121

22-
\define( 'ACTIVITYPUB_PLUGIN_VERSION', '5.9.0' );
22+
\define( 'ACTIVITYPUB_PLUGIN_VERSION', '5.9.1' );
2323

2424
// Plugin related constants.
2525
\define( 'ACTIVITYPUB_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );

readme.txt

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: automattic, pfefferle, mattwiebe, obenland, akirk, jeherve, mediaf
33
Tags: OStatus, fediverse, activitypub, activitystream
44
Requires at least: 6.4
55
Tested up to: 6.8
6-
Stable tag: 5.9.0
6+
Stable tag: 5.9.1
77
Requires PHP: 7.2
88
License: MIT
99
License URI: http://opensource.org/licenses/MIT
@@ -128,6 +128,10 @@ For reasons of data protection, it is not possible to see the followers of other
128128

129129
== Changelog ==
130130

131+
### 5.9.1 - 2025-05-15
132+
#### Fixed
133+
- Fixed a bug where Reaction blocks without modified titles did not get displayed correctly.
134+
131135
### 5.9.0 - 2025-05-14
132136
#### Added
133137
- ActivityPub embeds now support audios, videos, and up to 4 images.
@@ -415,9 +419,9 @@ See full Changelog on [GitHub](https://github.com/Automattic/wordpress-activityp
415419

416420
== Upgrade Notice ==
417421

418-
= 5.9.0 =
422+
= 5.9.1 =
419423

420-
Experience our new onboarding flow and improved help docs—making it easier than ever to connect your site to the Fediverse!
424+
Fixes cases where the Reactions block doesn't get rendered correctly.
421425

422426
== Installation ==
423427

0 commit comments

Comments
 (0)