diff --git a/.github/changelog/2581-from-description b/.github/changelog/2581-from-description deleted file mode 100644 index 8cd9ea38bd..0000000000 --- a/.github/changelog/2581-from-description +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: fixed - -Mastodon importer now unpacks nested archives instead of getting confused by the extra folder. diff --git a/.github/changelog/2584-from-description b/.github/changelog/2584-from-description deleted file mode 100644 index 41a864e4e3..0000000000 --- a/.github/changelog/2584-from-description +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: fixed - -Fix admin styling for quote comments to match likes and reposts diff --git a/.github/changelog/2585-from-description b/.github/changelog/2585-from-description deleted file mode 100644 index c32f3307e9..0000000000 --- a/.github/changelog/2585-from-description +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: fixed - -Route public replies to all actors to ensure conversation continuity. diff --git a/CHANGELOG.md b/CHANGELOG.md index c01ea8f96e..a68f5ccb8c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [7.7.1] - 2025-12-04 +### Fixed +- Fix admin styling for quote comments to match likes and reposts [#2584] +- Mastodon importer now unpacks nested archives instead of getting confused by the extra folder. [#2581] +- Add individually specified recipients to public activities in shared inbox. [#2585] + ## [7.7.0] - 2025-12-03 ### Added - Add documentation guide for using ActivityPub blocks in classic themes with Block Template Parts [#2577] @@ -1567,6 +1573,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - initial +[7.7.1]: https://github.com/Automattic/wordpress-activitypub/compare/7.7.0...7.7.1 [7.7.0]: https://github.com/Automattic/wordpress-activitypub/compare/7.6.1...7.7.0 [7.6.1]: https://github.com/Automattic/wordpress-activitypub/compare/7.6.0...7.6.1 [7.6.0]: https://github.com/Automattic/wordpress-activitypub/compare/7.5.0...7.6.0 diff --git a/activitypub.php b/activitypub.php index a0187bb24c..4e90d7109c 100644 --- a/activitypub.php +++ b/activitypub.php @@ -3,7 +3,7 @@ * Plugin Name: ActivityPub * Plugin URI: https://github.com/Automattic/wordpress-activitypub * Description: The ActivityPub protocol is a decentralized social networking protocol based upon the ActivityStreams 2.0 data format. - * Version: 7.7.0 + * Version: 7.7.1 * Author: Matthias Pfefferle & Automattic * Author URI: https://automattic.com/ * License: MIT @@ -17,7 +17,7 @@ namespace Activitypub; -\define( 'ACTIVITYPUB_PLUGIN_VERSION', '7.7.0' ); +\define( 'ACTIVITYPUB_PLUGIN_VERSION', '7.7.1' ); // Plugin related constants. \define( 'ACTIVITYPUB_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); diff --git a/readme.txt b/readme.txt index 2b6d20a027..4f9270c1ea 100644 --- a/readme.txt +++ b/readme.txt @@ -3,7 +3,7 @@ Contributors: automattic, pfefferle, mattwiebe, obenland, akirk, jeherve, mediaf Tags: fediverse, activitypub, indieweb, activitystream, social web Requires at least: 6.5 Tested up to: 6.9 -Stable tag: 7.7.0 +Stable tag: 7.7.1 Requires PHP: 7.2 License: MIT License URI: http://opensource.org/licenses/MIT @@ -110,6 +110,12 @@ For reasons of data protection, it is not possible to see the followers of other == Changelog == +### 7.7.1 - 2025-12-04 +#### Fixed +- Fix admin styling for quote comments to match likes and reposts +- Mastodon importer now unpacks nested archives instead of getting confused by the extra folder. +- Add individually specified recipients to public activities in shared inbox. + ### 7.7.0 - 2025-12-03 #### Added - Add documentation guide for using ActivityPub blocks in classic themes with Block Template Parts