Skip to content

Commit b0ae474

Browse files
authored
Release 7.6.1 (#2449)
1 parent 724e3f3 commit b0ae474

File tree

6 files changed

+16
-15
lines changed

6 files changed

+16
-15
lines changed

.github/changelog/2446-from-description

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

.github/changelog/2447-from-description

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

.github/changelog/2448-from-description

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

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ 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.6.1] - 2025-11-12
9+
### Fixed
10+
- Fixed compatibility with Pixelfed and similar platforms by treating activities without recipients as public, ensuring boosts and reposts work correctly. [#2448]
11+
- Improved delete handling for remote replies by streamlining tombstone detection and simplifying object deletion for more reliable and consistent behavior. [#2446]
12+
- Made inbox cleanup more reliable and ensuring deduplication only affects the specific activity being removed. [#2447]
13+
814
## [7.6.0] - 2025-11-11
915
### Added
1016
- Add bidirectional transforms between reply and embed blocks for improved user experience. [#2244]
@@ -1523,6 +1529,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
15231529
### Added
15241530
- initial
15251531

1532+
[7.6.1]: https://github.com/Automattic/wordpress-activitypub/compare/7.6.0...7.6.1
15261533
[7.6.0]: https://github.com/Automattic/wordpress-activitypub/compare/7.5.0...7.6.0
15271534
[7.5.0]: https://github.com/Automattic/wordpress-activitypub/compare/7.4.0...7.5.0
15281535
[7.4.0]: https://github.com/Automattic/wordpress-activitypub/compare/7.3.0...7.4.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.6.0
6+
* Version: 7.6.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.6.0' );
20+
\define( 'ACTIVITYPUB_PLUGIN_VERSION', '7.6.1' );
2121

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

readme.txt

Lines changed: 7 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.8
6-
Stable tag: 7.6.0
6+
Stable tag: 7.6.1
77
Requires PHP: 7.2
88
License: MIT
99
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
110110

111111
== Changelog ==
112112

113+
### 7.6.1 - 2025-11-12
114+
#### Fixed
115+
- Fixed compatibility with Pixelfed and similar platforms by treating activities without recipients as public, ensuring boosts and reposts work correctly.
116+
- Improved delete handling for remote replies by streamlining tombstone detection and simplifying object deletion for more reliable and consistent behavior.
117+
- Made inbox cleanup more reliable and ensuring deduplication only affects the specific activity being removed.
118+
113119
### 7.6.0 - 2025-11-11
114120
#### Added
115121
- Add bidirectional transforms between reply and embed blocks for improved user experience.

0 commit comments

Comments
 (0)