Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .github/changelog/1576-from-description

This file was deleted.

4 changes: 0 additions & 4 deletions .github/changelog/1577-from-description

This file was deleted.

4 changes: 0 additions & 4 deletions .github/changelog/1581-from-description

This file was deleted.

4 changes: 0 additions & 4 deletions .github/changelog/1582-from-description

This file was deleted.

4 changes: 0 additions & 4 deletions .github/changelog/1583-from-description

This file was deleted.

4 changes: 0 additions & 4 deletions .github/changelog/1584-from-description

This file was deleted.

4 changes: 0 additions & 4 deletions .github/changelog/1585-from-description

This file was deleted.

4 changes: 0 additions & 4 deletions .github/changelog/1586-from-description

This file was deleted.

4 changes: 0 additions & 4 deletions .github/changelog/1590-from-description

This file was deleted.

4 changes: 0 additions & 4 deletions .github/changelog/1591-from-description

This file was deleted.

4 changes: 0 additions & 4 deletions .github/changelog/1594-from-description

This file was deleted.

4 changes: 0 additions & 4 deletions .github/changelog/1595-from-description

This file was deleted.

4 changes: 0 additions & 4 deletions .github/changelog/1598-from-description

This file was deleted.

4 changes: 0 additions & 4 deletions .github/changelog/1603-from-description

This file was deleted.

4 changes: 0 additions & 4 deletions .github/changelog/1604-from-description

This file was deleted.

23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,28 @@ 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).

## [5.8.0] - 2025-04-24
### Added
- An option to receive notification emails when an Actor was mentioned in the Fediverse. [#1577]
- Enable direct linking to Help Tabs. [#1598]
- Fallback embed support for Fediverse content that lacks native oEmbed responses. [#1576]
- Support for all media types in the Mastodon Importer. [#1585]

### Changed
- Added WordPress disallowed list filtering to block unwanted ActivityPub interactions. [#1590]
- Mastodon imports now support blocks, with automatic reply embedding for conversations. [#1591]
- Tested and compatible with the latest version of WordPress. [#1584]
- Updated design of new follower notification email and added meta information. [#1581]
- Update DM email notification to include an embed display of the DM. [#1582]
- Updated notification settings to be user-specific for more personalization. [#1586]

### Fixed
- Add support for Multisite Language Switcher [#1604]
- Better check for an empty `headers` array key in the Signature class. [#1594]
- Include user context in Global-Inbox actions. [#1603]
- No more PHP warning when Mastodon Apps run out of posts to process. [#1583]
- Reply links and popup modals are now properly translated for logged-out visitors. [#1595]

## [5.7.0] - 2025-04-11
### Added
- Advanced Settings tab, with special settings for advanced users. [#1449]
Expand Down Expand Up @@ -1144,6 +1166,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- initial

[5.8.0]: https://github.com/Automattic/wordpress-activitypub/compare/5.7.0...5.8.0
[5.7.0]: https://github.com/Automattic/wordpress-activitypub/compare/5.6.1...5.7.0
[5.6.1]: https://github.com/Automattic/wordpress-activitypub/compare/5.6.0...5.6.1
[5.6.0]: https://github.com/Automattic/wordpress-activitypub/compare/5.5.0...5.6.0
Expand Down
4 changes: 2 additions & 2 deletions activitypub.php
Original file line number Diff line number Diff line change
Expand Up @@ -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: 5.7.0
* Version: 5.8.0
* Author: Matthias Pfefferle & Automattic
* Author URI: https://automattic.com/
* License: MIT
Expand All @@ -19,7 +19,7 @@

use WP_CLI;

\define( 'ACTIVITYPUB_PLUGIN_VERSION', '5.7.0' );
\define( 'ACTIVITYPUB_PLUGIN_VERSION', '5.8.0' );

// Plugin related constants.
\define( 'ACTIVITYPUB_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
Expand Down
2 changes: 1 addition & 1 deletion includes/class-migration.php
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ public static function maybe_migrate() {
if ( \version_compare( $version_from_db, '5.7.0', '<' ) ) {
self::delete_mastodon_api_orphaned_extra_fields();
}
if ( \version_compare( $version_from_db, 'unreleased', '<' ) ) {
if ( \version_compare( $version_from_db, '5.8.0', '<' ) ) {
self::update_notification_options();
}

Expand Down
26 changes: 24 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: automattic, pfefferle, mattwiebe, obenland, akirk, jeherve, mediaf
Tags: OStatus, fediverse, activitypub, activitystream
Requires at least: 6.4
Tested up to: 6.8
Stable tag: 5.7.0
Stable tag: 5.8.0
Requires PHP: 7.2
License: MIT
License URI: http://opensource.org/licenses/MIT
Expand Down Expand Up @@ -129,6 +129,28 @@ For reasons of data protection, it is not possible to see the followers of other

== Changelog ==

### 5.8.0 - 2025-04-24
#### Added
- An option to receive notification emails when an Actor was mentioned in the Fediverse.
- Enable direct linking to Help Tabs.
- Fallback embed support for Fediverse content that lacks native oEmbed responses.
- Support for all media types in the Mastodon Importer.

#### Changed
- Added WordPress disallowed list filtering to block unwanted ActivityPub interactions.
- Mastodon imports now support blocks, with automatic reply embedding for conversations.
- Tested and compatible with the latest version of WordPress.
- Updated design of new follower notification email and added meta information.
- Update DM email notification to include an embed display of the DM.
- Updated notification settings to be user-specific for more personalization.

#### Fixed
- Add support for Multisite Language Switcher
- Better check for an empty `headers` array key in the Signature class.
- Include user context in Global-Inbox actions.
- No more PHP warning when Mastodon Apps run out of posts to process.
- Reply links and popup modals are now properly translated for logged-out visitors.

### 5.7.0 - 2025-04-11
#### Added
- Advanced Settings tab, with special settings for advanced users.
Expand All @@ -147,7 +169,7 @@ For reasons of data protection, it is not possible to see the followers of other

#### Fixed
- Ensure that an `Activity` has an `Actor` before adding it to the Outbox.
- Fixed some some bugs and added additional informations on the Debug tab of the Site-Health page.
- Fixed some bugs and added additional information on the Debug tab of the Site-Health page.
- Follow-up to the reply block changes that makes sure Mastodon embeds are displayed in the editor.
- Outbox endpoint bug where non-numeric usernames caused errors when querying Outbox data.
- Show Site Health error if site uses old "Almost Pretty Permalinks" structure.
Expand Down
Loading