Skip to content

Commit 1f7abb7

Browse files
authored
Release 4.7.3 (#1192)
* Release 4.7.3 * Fix migration versions * Fix docs versions
1 parent 9ed81d6 commit 1f7abb7

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
* Improved content negotiation and AUTHORIZED_FETCH support for third-party plugins
1313

14+
## [4.7.3] - 2025-01-21
15+
1416
### Fixed
1517

1618
* Flush rewrite rules after NodeInfo update.
@@ -1231,8 +1233,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
12311233

12321234
* initial
12331235

1234-
[Unreleased]: https://github.com/Automattic/wordpress-activitypub/compare/4.7.2...trunk
1236+
[Unreleased]: https://github.com/Automattic/wordpress-activitypub/compare/4.7.3...trunk
12351237
<!-- Add new release below and update "Unreleased" link -->
1238+
[4.7.3]: https://github.com/Automattic/wordpress-activitypub/compare/4.7.2...4.7.3
12361239
[4.7.2]: https://github.com/Automattic/wordpress-activitypub/compare/4.7.1...4.7.2
12371240
[4.7.1]: https://github.com/Automattic/wordpress-activitypub/compare/4.7.0...4.7.1
12381241
[4.7.0]: https://github.com/Automattic/wordpress-activitypub/compare/4.6.0...4.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: 4.7.2
6+
* Version: 4.7.3
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', '4.7.2' );
22+
\define( 'ACTIVITYPUB_PLUGIN_VERSION', '4.7.3' );
2323

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

includes/class-migration.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ public static function maybe_migrate() {
167167
if ( \version_compare( $version_from_db, '4.7.2', '<' ) ) {
168168
self::migrate_to_4_7_2();
169169
}
170-
if ( \version_compare( $version_from_db, 'unreleased', '<' ) ) {
170+
if ( \version_compare( $version_from_db, '4.7.3', '<' ) ) {
171171
add_action( 'init', 'flush_rewrite_rules', 20 );
172172
}
173173

@@ -178,7 +178,7 @@ public static function maybe_migrate() {
178178
* The release script will automatically replace it with the actual version number.
179179
* Example:
180180
*
181-
* if ( version_compare( $version, 'unreleased', '<' ) ) {
181+
* if ( \version_compare( $version_from_db, 'unreleased', '<' ) ) {
182182
* // Update routine.
183183
* }
184184
*/

readme.txt

Lines changed: 4 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: OStatus, fediverse, activitypub, activitystream
44
Requires at least: 5.5
55
Tested up to: 6.7
6-
Stable tag: 4.7.2
6+
Stable tag: 4.7.3
77
Requires PHP: 7.2
88
License: MIT
99
License URI: http://opensource.org/licenses/MIT
@@ -135,6 +135,9 @@ For reasons of data protection, it is not possible to see the followers of other
135135
= Unreleased =
136136

137137
* Changed: Improved content negotiation and AUTHORIZED_FETCH support for third-party plugins
138+
139+
= 4.7.3 =
140+
138141
* Fixed: Flush rewrite rules after NodeInfo update.
139142

140143
= 4.7.2 =

0 commit comments

Comments
 (0)