Skip to content

Commit 3726ded

Browse files
committed
version bump
1 parent 8983629 commit 3726ded

File tree

4 files changed

+50
-4
lines changed

4 files changed

+50
-4
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,27 @@ 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+
## [2.5.0] - 2024-07-01
9+
10+
### Added
11+
12+
* WebFinger cors header
13+
* WebFinger Content-Type
14+
* The Fediverse creator of a post to OpenGraph
15+
16+
### Changed
17+
18+
* Try to lookup local users first for Enable Mastodon Apps
19+
* Send also Announces for deletes
20+
* Load time by adding `count_total=false` to `WP_User_Query`
21+
22+
### Fixed
23+
24+
* Several WebFinger issues
25+
* Redirect issue for Application user
26+
* Accessibilty issues with missing screen-reader-text on User overview page
27+
28+
829
## [2.4.0] - 2024-06-05
930

1031
### Added
@@ -778,6 +799,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
778799

779800
* initial
780801

802+
[2.5.0]: https://github.com/Automattic/wordpress-activitypub/compare/2.4.0...2.5.0
781803
[2.4.0]: https://github.com/Automattic/wordpress-activitypub/compare/2.3.1...2.4.0
782804
[2.3.1]: https://github.com/Automattic/wordpress-activitypub/compare/2.3.0...2.3.1
783805
[2.3.0]: https://github.com/Automattic/wordpress-activitypub/compare/2.2.0...2.3.0

README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
**Tags:** OStatus, fediverse, activitypub, activitystream
44
**Requires at least:** 5.5
55
**Tested up to:** 6.5
6-
**Stable tag:** 2.4.0
6+
**Stable tag:** 2.5.0
77
**Requires PHP:** 5.6
88
**License:** MIT
99
**License URI:** http://opensource.org/licenses/MIT
@@ -133,6 +133,18 @@ For reasons of data protection, it is not possible to see the followers of other
133133

134134
## Changelog ##
135135

136+
### 2.5.0 ###
137+
138+
* Added: WebFinger cors header
139+
* Added: WebFinger Content-Type
140+
* Added: The Fediverse creator of a post to OpenGraph
141+
* Improved: Try to lookup local users first for Enable Mastodon Apps
142+
* Improved: Send also Announces for deletes
143+
* Improved: Load time by adding `count_total=false` to `WP_User_Query`
144+
* Fixed: Several WebFinger issues
145+
* Fixed: Redirect issue for Application user
146+
* Fixed: Accessibilty issues with missing screen-reader-text on User overview page
147+
136148
### 2.4.0 ###
137149

138150
* Added: A core/embed block filter to transform iframes to links

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/pfefferle/wordpress-activitypub/
55
* Description: The ActivityPub protocol is a decentralized social networking protocol based upon the ActivityStreams 2.0 data format.
6-
* Version: 2.4.0
6+
* Version: 2.5.0
77
* Author: Matthias Pfefferle & Automattic
88
* Author URI: https://automattic.com/
99
* License: MIT
@@ -21,7 +21,7 @@
2121
require_once __DIR__ . '/includes/compat.php';
2222
require_once __DIR__ . '/includes/functions.php';
2323

24-
\define( 'ACTIVITYPUB_PLUGIN_VERSION', '2.4.0' );
24+
\define( 'ACTIVITYPUB_PLUGIN_VERSION', '2.5.0' );
2525

2626
/**
2727
* Initialize the plugin constants.

readme.txt

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: automattic, pfefferle, mediaformat, mattwiebe, akirk, jeherve, nur
33
Tags: OStatus, fediverse, activitypub, activitystream
44
Requires at least: 5.5
55
Tested up to: 6.5
6-
Stable tag: 2.4.0
6+
Stable tag: 2.5.0
77
Requires PHP: 5.6
88
License: MIT
99
License URI: http://opensource.org/licenses/MIT
@@ -133,6 +133,18 @@ For reasons of data protection, it is not possible to see the followers of other
133133

134134
== Changelog ==
135135

136+
= 2.5.0 =
137+
138+
* Added: WebFinger cors header
139+
* Added: WebFinger Content-Type
140+
* Added: The Fediverse creator of a post to OpenGraph
141+
* Improved: Try to lookup local users first for Enable Mastodon Apps
142+
* Improved: Send also Announces for deletes
143+
* Improved: Load time by adding `count_total=false` to `WP_User_Query`
144+
* Fixed: Several WebFinger issues
145+
* Fixed: Redirect issue for Application user
146+
* Fixed: Accessibilty issues with missing screen-reader-text on User overview page
147+
136148
= 2.4.0 =
137149

138150
* Added: A core/embed block filter to transform iframes to links

0 commit comments

Comments
 (0)