Skip to content

Commit 6bcb165

Browse files
authored
Release 7.8.2 (#2677)
1 parent cdb6a05 commit 6bcb165

File tree

17 files changed

+26
-23
lines changed

17 files changed

+26
-23
lines changed

.github/changelog/fix-interactions-missing-post-id

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

.github/changelog/fix-remote-actor-wp-error-handling

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

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ 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+
## [7.8.2] - 2025-12-21
9+
### Fixed
10+
- Fix error when receiving replies to non-existent posts. [#2673]
11+
- Fix fatal error when displaying posts with mentions of invalid remote actors. [#2676]
12+
813
## [7.8.1] - 2025-12-18
914
### Added
1015
- Hide comments from specific post types in the WordPress admin comments list. [#2669]
@@ -1611,6 +1616,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
16111616
### Added
16121617
- initial
16131618

1619+
[7.8.2]: https://github.com/Automattic/wordpress-activitypub/compare/7.8.1...7.8.2
16141620
[7.8.1]: https://github.com/Automattic/wordpress-activitypub/compare/7.8.0...7.8.1
16151621
[7.8.0]: https://github.com/Automattic/wordpress-activitypub/compare/7.7.1...7.8.0
16161622
[7.7.1]: https://github.com/Automattic/wordpress-activitypub/compare/7.7.0...7.7.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: 7.8.1
6+
* Version: 7.8.2
77
* Author: Matthias Pfefferle & Automattic
88
* Author URI: https://automattic.com/
99
* License: MIT
@@ -17,7 +17,7 @@
1717

1818
namespace Activitypub;
1919

20-
\define( 'ACTIVITYPUB_PLUGIN_VERSION', '7.8.1' );
20+
\define( 'ACTIVITYPUB_PLUGIN_VERSION', '7.8.2' );
2121

2222
// Plugin related constants.
2323
\define( 'ACTIVITYPUB_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );

build/extra-fields/block.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/follow-me/block.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/followers/block.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/reactions/block.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/remote-reply/block.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/reply/block.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)