Skip to content

Commit 7f5ee1d

Browse files
authored
Release 5.6.1 (#1542)
1 parent 9ae732f commit 7f5ee1d

File tree

6 files changed

+16
-15
lines changed

6 files changed

+16
-15
lines changed

.github/changelog/1537-from-description

-4
This file was deleted.

.github/changelog/1539-from-description

-4
This file was deleted.

.github/changelog/1540-from-description

-4
This file was deleted.

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ 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.6.1] - 2025-04-02
9+
### Fixed
10+
- "Post Interactions" settings will now be saved to the options table. [#1540]
11+
- So not show `movedTo` attribute instead of setting it to `false` if empty. [#1539]
12+
- Use specified date format for `updated` field in Outbox-Activites. [#1537]
13+
814
## [5.6.0] - 2025-04-01
915
### Added
1016
- Added a Mastodon importer to move your Mastodon posts to your WordPress site. [#1502]
@@ -1113,6 +1119,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11131119
### Added
11141120
- initial
11151121

1122+
[5.6.1]: https://github.com/Automattic/wordpress-activitypub/compare/5.6.0...5.6.1
11161123
[5.6.0]: https://github.com/Automattic/wordpress-activitypub/compare/5.5.0...5.6.0
11171124
[5.5.0]: https://github.com/Automattic/wordpress-activitypub/compare/5.4.1...5.5.0
11181125
[5.4.1]: https://github.com/Automattic/wordpress-activitypub/compare/5.4.0...5.4.1

activitypub.php

+2-2
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.6.0
6+
* Version: 5.6.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.6.0' );
22+
\define( 'ACTIVITYPUB_PLUGIN_VERSION', '5.6.1' );
2323

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

readme.txt

+7-1
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.7
6-
Stable tag: 5.6.0
6+
Stable tag: 5.6.1
77
Requires PHP: 7.2
88
License: MIT
99
License URI: http://opensource.org/licenses/MIT
@@ -129,6 +129,12 @@ For reasons of data protection, it is not possible to see the followers of other
129129

130130
== Changelog ==
131131

132+
### 5.6.1 - 2025-04-02
133+
#### Fixed
134+
- "Post Interactions" settings will now be saved to the options table.
135+
- So not show `movedTo` attribute instead of setting it to `false` if empty.
136+
- Use specified date format for `updated` field in Outbox-Activites.
137+
132138
### 5.6.0 - 2025-04-01
133139
#### Added
134140
- Added a Mastodon importer to move your Mastodon posts to your WordPress site.

0 commit comments

Comments
 (0)