Skip to content

Commit e026e6c

Browse files
authored
Release 7.8.1 (#2670)
1 parent 753481a commit e026e6c

File tree

12 files changed

+26
-21
lines changed

12 files changed

+26
-21
lines changed

.github/changelog/add-get-non-public-post-types

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

.github/changelog/fix-disable-create-posts-option

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

.github/changelog/fix-prevent-ap-post-notifications

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+
## [7.8.1] - 2025-12-18
9+
### Added
10+
- Hide comments from specific post types in the WordPress admin comments list. [#2669]
11+
12+
### Fixed
13+
- Prevent comment email notifications for ap_post. [#2667]
14+
- Prevent post creation when Reader is deactivated. [#2666]
15+
816
## [7.8.0] - 2025-12-17
917
### Added
1018
- Add blocklist subscriptions for automatic weekly synchronization of remote blocklists. [#2590]
@@ -1603,6 +1611,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
16031611
### Added
16041612
- initial
16051613

1614+
[7.8.1]: https://github.com/Automattic/wordpress-activitypub/compare/7.8.0...7.8.1
16061615
[7.8.0]: https://github.com/Automattic/wordpress-activitypub/compare/7.7.1...7.8.0
16071616
[7.7.1]: https://github.com/Automattic/wordpress-activitypub/compare/7.7.0...7.7.1
16081617
[7.7.0]: https://github.com/Automattic/wordpress-activitypub/compare/7.6.1...7.7.0

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.0
6+
* Version: 7.8.1
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.0' );
20+
\define( 'ACTIVITYPUB_PLUGIN_VERSION', '7.8.1' );
2121

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

readme.txt

Lines changed: 9 additions & 1 deletion
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, activitystream, social web
44
Requires at least: 6.5
55
Tested up to: 6.9
6-
Stable tag: 7.8.0
6+
Stable tag: 7.8.1
77
Requires PHP: 7.2
88
License: MIT
99
License URI: http://opensource.org/licenses/MIT
@@ -110,6 +110,14 @@ For reasons of data protection, it is not possible to see the followers of other
110110

111111
== Changelog ==
112112

113+
### 7.8.1 - 2025-12-18
114+
#### Added
115+
- Hide comments from specific post types in the WordPress admin comments list.
116+
117+
#### Fixed
118+
- Prevent comment email notifications for ap_post.
119+
- Prevent post creation when Reader is deactivated.
120+
113121
### 7.8.0 - 2025-12-17
114122
#### Added
115123
- Add blocklist subscriptions for automatic weekly synchronization of remote blocklists.

src/extra-fields/block.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://schemas.wp.org/trunk/block.json",
33
"name": "activitypub/extra-fields",
44
"apiVersion": 3,
5-
"version": "1.0.0",
5+
"version": "7.8.1",
66
"title": "Fediverse Extra Fields",
77
"category": "widgets",
88
"description": "Display extra fields from ActivityPub user profiles",

src/follow-me/block.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://schemas.wp.org/trunk/block.json",
33
"name": "activitypub/follow-me",
44
"apiVersion": 3,
5-
"version": "2.2.0",
5+
"version": "7.8.1",
66
"title": "Follow me on the Fediverse",
77
"category": "widgets",
88
"description": "Display your Fediverse profile so that visitors can follow you.",

src/followers/block.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://schemas.wp.org/trunk/block.json",
33
"name": "activitypub/followers",
44
"apiVersion": 3,
5-
"version": "2.0.1",
5+
"version": "7.8.1",
66
"title": "Fediverse Followers",
77
"category": "widgets",
88
"description": "Display your followers from the Fediverse on your website.",

src/reactions/block.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://schemas.wp.org/trunk/block.json",
33
"name": "activitypub/reactions",
44
"apiVersion": 3,
5-
"version": "3.0.3",
5+
"version": "7.8.1",
66
"title": "Fediverse Reactions",
77
"category": "widgets",
88
"icon": "heart",

0 commit comments

Comments
 (0)