Skip to content

Commit d5132d3

Browse files
committed
version bump
1 parent fd12d6d commit d5132d3

File tree

4 files changed

+91
-4
lines changed

4 files changed

+91
-4
lines changed

CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,40 @@ 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.4.0] - 2024-06-05
9+
10+
### Added
11+
12+
* A core/embed block filter to transform iframes to links
13+
* Basic support of incoming `Announce`s
14+
* Improve attachment handling
15+
* Notifications: Introduce general class and use it for new follows
16+
* Always fall back to `get_by_username` if one of the above fail
17+
* Notification support for Jetpack
18+
* EMA: Support for fetching external statuses without replies
19+
* EMA: Remote context
20+
* EMA: Allow searching for URLs
21+
* EMA: Ensuring numeric ids is now done in EMA directly
22+
* Podcast support
23+
* Follower count to "At a Glance" dashboard widget
24+
25+
### Changed
26+
27+
* Use `Note` as default Object-Type, instead of `Article`
28+
* Improve `AUTHORIZED_FETCH`
29+
* Only send Mentions to comments in the direct hierarchy
30+
* Improve transformer
31+
* Improve Lemmy compatibility
32+
* Updated JS dependencies
33+
34+
### Fixed
35+
36+
* EMA: Add missing static keyword and try to lookup if the id is 0
37+
* Blog-wide account when WordPress is in subdirectory
38+
* Funkwhale URLs
39+
* Prevent infinite loops in `get_comment_ancestors`
40+
* Better Content-Negotiation handling
41+
842
## [2.3.1] - 2024-04-29
943

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

745779
* initial
746780

781+
[2.4.0]: https://github.com/Automattic/wordpress-activitypub/compare/2.3.1...2.4.0
747782
[2.3.1]: https://github.com/Automattic/wordpress-activitypub/compare/2.3.0...2.3.1
748783
[2.3.0]: https://github.com/Automattic/wordpress-activitypub/compare/2.2.0...2.3.0
749784
[2.2.0]: https://github.com/Automattic/wordpress-activitypub/compare/2.1.1...2.2.0

README.md

Lines changed: 27 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.3.1
6+
**Stable tag:** 2.4.0
77
**Requires PHP:** 5.6
88
**License:** MIT
99
**License URI:** http://opensource.org/licenses/MIT
@@ -133,6 +133,32 @@ For reasons of data protection, it is not possible to see the followers of other
133133

134134
## Changelog ##
135135

136+
### 2.4.0 ###
137+
138+
* Added: A core/embed block filter to transform iframes to links
139+
* Added: Basic support of incoming `Announce`s
140+
* Added: Improve attachment handling
141+
* Added: Notifications: Introduce general class and use it for new follows
142+
* Added: Always fall back to `get_by_username` if one of the above fail
143+
* Added: Notification support for Jetpack
144+
* Added: EMA: Support for fetching external statuses without replies
145+
* Added: EMA: Remote context
146+
* Added: EMA: Allow searching for URLs
147+
* Added: EMA: Ensuring numeric ids is now done in EMA directly
148+
* Added: Podcast support
149+
* Added: Follower count to "At a Glance" dashboard widget
150+
* Improved: Use `Note` as default Object-Type, instead of `Article`
151+
* Improved: Improve `AUTHORIZED_FETCH`
152+
* Improved: Only send Mentions to comments in the direct hierarchy
153+
* Improved: Improve transformer
154+
* Improved: Improve Lemmy compatibility
155+
* Improved: Updated JS dependencies
156+
* Fixed: EMA: Add missing static keyword and try to lookup if the id is 0
157+
* Fixed: Blog-wide account when WordPress is in subdirectory
158+
* Fixed: Funkwhale URLs
159+
* Fixed: Prevent infinite loops in `get_comment_ancestors`
160+
* Fixed: Better Content-Negotiation handling
161+
136162
### 2.3.1 ###
137163

138164
* Added: Enable Mastodon Apps: Add remote outbox fetching

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.3.1
6+
* Version: 2.4.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.3.1' );
24+
\define( 'ACTIVITYPUB_PLUGIN_VERSION', '2.4.0' );
2525

2626
/**
2727
* Initialize the plugin constants.

readme.txt

Lines changed: 27 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.3.1
6+
Stable tag: 2.4.0
77
Requires PHP: 5.6
88
License: MIT
99
License URI: http://opensource.org/licenses/MIT
@@ -133,6 +133,32 @@ For reasons of data protection, it is not possible to see the followers of other
133133

134134
== Changelog ==
135135

136+
= 2.4.0 =
137+
138+
* Added: A core/embed block filter to transform iframes to links
139+
* Added: Basic support of incoming `Announce`s
140+
* Added: Improve attachment handling
141+
* Added: Notifications: Introduce general class and use it for new follows
142+
* Added: Always fall back to `get_by_username` if one of the above fail
143+
* Added: Notification support for Jetpack
144+
* Added: EMA: Support for fetching external statuses without replies
145+
* Added: EMA: Remote context
146+
* Added: EMA: Allow searching for URLs
147+
* Added: EMA: Ensuring numeric ids is now done in EMA directly
148+
* Added: Podcast support
149+
* Added: Follower count to "At a Glance" dashboard widget
150+
* Improved: Use `Note` as default Object-Type, instead of `Article`
151+
* Improved: Improve `AUTHORIZED_FETCH`
152+
* Improved: Only send Mentions to comments in the direct hierarchy
153+
* Improved: Improve transformer
154+
* Improved: Improve Lemmy compatibility
155+
* Improved: Updated JS dependencies
156+
* Fixed: EMA: Add missing static keyword and try to lookup if the id is 0
157+
* Fixed: Blog-wide account when WordPress is in subdirectory
158+
* Fixed: Funkwhale URLs
159+
* Fixed: Prevent infinite loops in `get_comment_ancestors`
160+
* Fixed: Better Content-Negotiation handling
161+
136162
= 2.3.1 =
137163

138164
* Added: Enable Mastodon Apps: Add remote outbox fetching

0 commit comments

Comments
 (0)