Skip to content

Commit 16f5746

Browse files
authored
Release 6.0.1 (#1789)
1 parent 2e2093d commit 16f5746

File tree

8 files changed

+22
-22
lines changed

8 files changed

+22
-22
lines changed

.github/changelog/1777-from-description

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

.github/changelog/1778-from-description

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

.github/changelog/1781-from-description

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

.github/changelog/1787-from-description

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

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ 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+
## [6.0.1] - 2025-06-09
9+
### Fixed
10+
- Added fallback for follower list during migration to new database schema. [#1781]
11+
- Avoids the button block breaking for users that don't have the `unfiltered_html` capability.
12+
Blog users now get their correct post count displayed in the Editor and the front-end. [#1777]
13+
- Improved follower migration: scheduler now more reliable and won't stop too early. [#1778]
14+
- Update the Stream Connector integration to align with the new database schema. [#1787]
15+
816
## [6.0.0] - 2025-06-05
917
### Added
1018
- Enhanced markup of the "follow me" block, for a better Webmention and IndieWeb support. [#1771]
@@ -1252,6 +1260,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
12521260
### Added
12531261
- initial
12541262

1263+
[6.0.1]: https://github.com/Automattic/wordpress-activitypub/compare/6.0.0...6.0.1
12551264
[6.0.0]: https://github.com/Automattic/wordpress-activitypub/compare/5.9.2...6.0.0
12561265
[5.9.2]: https://github.com/Automattic/wordpress-activitypub/compare/5.9.1...5.9.2
12571266
[5.9.1]: https://github.com/Automattic/wordpress-activitypub/compare/5.9.0...5.9.1

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

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

includes/class-migration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ public static function maybe_migrate() {
185185
\wp_schedule_single_event( \time(), 'activitypub_upgrade', array( 'update_actor_json_storage' ) );
186186
}
187187

188-
if ( \version_compare( $version_from_db, 'unreleased', '<' ) ) {
188+
if ( \version_compare( $version_from_db, '6.0.1', '<' ) ) {
189189
self::migrate_followers_to_ap_actor_cpt();
190190
\wp_schedule_single_event( \time(), 'activitypub_upgrade', array( 'update_actor_json_storage' ) );
191191
}

readme.txt

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: automattic, pfefferle, mattwiebe, obenland, akirk, jeherve, mediaf
33
Tags: fediverse, activitypub, indieweb, activity pub, activitystream, social web
44
Requires at least: 6.5
55
Tested up to: 6.8
6-
Stable tag: 6.0.0
6+
Stable tag: 6.0.1
77
Requires PHP: 7.2
88
License: MIT
99
License URI: http://opensource.org/licenses/MIT
@@ -110,7 +110,15 @@ For reasons of data protection, it is not possible to see the followers of other
110110

111111
== Changelog ==
112112

113-
### 6.0.0 - 2025-06-06
113+
### 6.0.1 - 2025-06-09
114+
#### Fixed
115+
- Added fallback for follower list during migration to new database schema.
116+
- Avoids the button block breaking for users that don't have the `unfiltered_html` capability.
117+
Blog users now get their correct post count displayed in the Editor and the front-end.
118+
- Improved follower migration: scheduler now more reliable and won't stop too early.
119+
- Update the Stream Connector integration to align with the new database schema.
120+
121+
### 6.0.0 - 2025-06-05
114122
#### Added
115123
- Enhanced markup of the "follow me" block, for a better Webmention and IndieWeb support.
116124
- The actor of the replied-to post is now included in cc or to based on the post's visibility.

0 commit comments

Comments
 (0)