Skip to content

Commit 499bcad

Browse files
authored
Release 6.0.2 (#1801)
1 parent d796e5e commit 499bcad

File tree

7 files changed

+24
-21
lines changed

7 files changed

+24
-21
lines changed

.github/changelog/1794-from-description

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

.github/changelog/1795-from-description

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

.github/changelog/1798-from-description

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

.github/changelog/1799-from-description

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

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,19 @@ 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.2] - 2025-06-11
9+
### Changed
10+
- Reactions button color is now a little more theme agnostic. [#1795]
11+
12+
### Fixed
13+
- "Account Aliases" setting in user profiles get saved correctly again and no longer return empty. [#1798]
14+
- Blocks updated in 6.0.0 are back to not showing up in feeds and federated posts. [#1794]
15+
- Webfinger data from Pleroma instances no longer creates unexpected mention markup. [#1799]
16+
817
## [6.0.1] - 2025-06-09
918
### Fixed
1019
- 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.
20+
- Avoids the button block breaking for users that don't have the `unfiltered_html` capability.
1221
Blog users now get their correct post count displayed in the Editor and the front-end. [#1777]
1322
- Improved follower migration: scheduler now more reliable and won't stop too early. [#1778]
1423
- Update the Stream Connector integration to align with the new database schema. [#1787]
@@ -1260,6 +1269,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
12601269
### Added
12611270
- initial
12621271

1272+
[6.0.2]: https://github.com/Automattic/wordpress-activitypub/compare/6.0.1...6.0.2
12631273
[6.0.1]: https://github.com/Automattic/wordpress-activitypub/compare/6.0.0...6.0.1
12641274
[6.0.0]: https://github.com/Automattic/wordpress-activitypub/compare/5.9.2...6.0.0
12651275
[5.9.2]: https://github.com/Automattic/wordpress-activitypub/compare/5.9.1...5.9.2

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

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

readme.txt

Lines changed: 11 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.1
6+
Stable tag: 6.0.2
77
Requires PHP: 7.2
88
License: MIT
99
License URI: http://opensource.org/licenses/MIT
@@ -110,10 +110,19 @@ For reasons of data protection, it is not possible to see the followers of other
110110

111111
== Changelog ==
112112

113+
### 6.0.2 - 2025-06-11
114+
#### Changed
115+
- Reactions button color is now a little more theme agnostic.
116+
117+
#### Fixed
118+
- "Account Aliases" setting in user profiles get saved correctly again and no longer return empty.
119+
- Blocks updated in 6.0.0 are back to not showing up in feeds and federated posts.
120+
- Webfinger data from Pleroma instances no longer creates unexpected mention markup.
121+
113122
### 6.0.1 - 2025-06-09
114123
#### Fixed
115124
- 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.
125+
- Avoids the button block breaking for users that don't have the `unfiltered_html` capability.
117126
Blog users now get their correct post count displayed in the Editor and the front-end.
118127
- Improved follower migration: scheduler now more reliable and won't stop too early.
119128
- Update the Stream Connector integration to align with the new database schema.

0 commit comments

Comments
 (0)