Skip to content

Commit 717ec0c

Browse files
committed
Version bump
1 parent b81e286 commit 717ec0c

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

.github/changelog/1915-from-description

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

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ 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.0.1] - 2025-07-10
9+
### Fixed
10+
- When deleting interactions for cleaned up actors, we use the actor's URL again to retrieve their information instead of our internal ID. [#1915]
11+
812
## [7.0.0] - 2025-07-09
913
### Added
1014
- Added basic support for handling remote rejections of follow requests. [#1865]
@@ -1317,6 +1321,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
13171321
### Added
13181322
- initial
13191323

1324+
[7.0.1]: https://github.com/Automattic/wordpress-activitypub/compare/7.0.0...7.0.1
13201325
[7.0.0]: https://github.com/Automattic/wordpress-activitypub/compare/6.0.2...7.0.0
13211326
[6.0.2]: https://github.com/Automattic/wordpress-activitypub/compare/6.0.1...6.0.2
13221327
[6.0.1]: https://github.com/Automattic/wordpress-activitypub/compare/6.0.0...6.0.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.0.0
6+
* Version: 7.0.1
77
* Author: Matthias Pfefferle & Automattic
88
* Author URI: https://automattic.com/
99
* License: MIT
@@ -19,7 +19,7 @@
1919

2020
use WP_CLI;
2121

22-
\define( 'ACTIVITYPUB_PLUGIN_VERSION', '7.0.0' );
22+
\define( 'ACTIVITYPUB_PLUGIN_VERSION', '7.0.1' );
2323

2424
// Plugin related constants.
2525
\define( 'ACTIVITYPUB_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );

readme.txt

Lines changed: 5 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.0.0
6+
Stable tag: 7.0.1
77
Requires PHP: 7.2
88
License: MIT
99
License URI: http://opensource.org/licenses/MIT
@@ -110,6 +110,10 @@ For reasons of data protection, it is not possible to see the followers of other
110110

111111
== Changelog ==
112112

113+
### 7.0.1 - 2025-07-10
114+
#### Fixed
115+
- When deleting interactions for cleaned up actors, we use the actor's URL again to retrieve their information instead of our internal ID.
116+
113117
### 7.0.0 - 2025-07-09
114118
#### Added
115119
- Added basic support for handling remote rejections of follow requests.

0 commit comments

Comments
 (0)