Skip to content

Commit c9e980a

Browse files
committed
version bump
1 parent 6c90990 commit c9e980a

File tree

4 files changed

+46
-18
lines changed

4 files changed

+46
-18
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,25 @@ 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.3.1] - 2024-04-29
9+
10+
### Added
11+
12+
* Enable Mastodon Apps: Add remote outbox fetching
13+
* Help texts
14+
15+
### Fixed
16+
17+
* Compatibility issues with Discourse
18+
* Do not announce replies
19+
* Also delete interactions with deleted person
20+
* Check Author-URL only if user is enabled for ActivityPub
21+
* Generate comment IDs for federation from home_url
22+
23+
### Removed
24+
25+
* Beta label from the #Hashtag settings
26+
827
## [2.3.0] - 2024-04-16
928

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

726745
* initial
727746

747+
[2.3.1]: https://github.com/Automattic/wordpress-activitypub/compare/2.3.0...2.3.1
728748
[2.3.0]: https://github.com/Automattic/wordpress-activitypub/compare/2.2.0...2.3.0
729749
[2.2.0]: https://github.com/Automattic/wordpress-activitypub/compare/2.1.1...2.2.0
730750
[2.1.1]: https://github.com/Automattic/wordpress-activitypub/compare/2.1.0...2.1.1

README.md

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

134134
## Changelog ##
135135

136+
### 2.3.1 ###
137+
138+
* Added: Enable Mastodon Apps: Add remote outbox fetching
139+
* Added: Help texts
140+
* Fixed: Compatibility issues with Discourse
141+
* Fixed: Do not announce replies
142+
* Fixed: Also delete interactions with deleted person
143+
* Fixed: Check Author-URL only if user is enabled for ActivityPub
144+
* Fixed: Generate comment IDs for federation from home_url
145+
* Removed: Beta label from the #Hashtag settings
146+
136147
### 2.3.0 ###
137148

138149
* Added: Mark links as "unhandled-link" and "status-link", for a better UX in the Mastodon App
@@ -152,13 +163,6 @@ For reasons of data protection, it is not possible to see the followers of other
152163
* Changed: Remote Reply: limit enqueue to when needed
153164
* Changed: Abstract shared Dialog code
154165

155-
156-
### 2.2.0 ###
157-
158-
* Added: Remote-Reply lightbox
159-
* Added: Support `application/ld+json` mime-type with AP profile in WebFinger
160-
* Fixed: Prevent scheduler overload
161-
162166
See full Changelog on [GitHub](https://github.com/Automattic/wordpress-activitypub/blob/master/CHANGELOG.md).
163167

164168
## Upgrade Notice ##

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

2626
/**
2727
* Initialize the plugin constants.

readme.txt

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

134134
== Changelog ==
135135

136+
= 2.3.1 =
137+
138+
* Added: Enable Mastodon Apps: Add remote outbox fetching
139+
* Added: Help texts
140+
* Fixed: Compatibility issues with Discourse
141+
* Fixed: Do not announce replies
142+
* Fixed: Also delete interactions with deleted person
143+
* Fixed: Check Author-URL only if user is enabled for ActivityPub
144+
* Fixed: Generate comment IDs for federation from home_url
145+
* Removed: Beta label from the #Hashtag settings
146+
136147
= 2.3.0 =
137148

138149
* Added: Mark links as "unhandled-link" and "status-link", for a better UX in the Mastodon App
@@ -152,13 +163,6 @@ For reasons of data protection, it is not possible to see the followers of other
152163
* Changed: Remote Reply: limit enqueue to when needed
153164
* Changed: Abstract shared Dialog code
154165

155-
156-
= 2.2.0 =
157-
158-
* Added: Remote-Reply lightbox
159-
* Added: Support `application/ld+json` mime-type with AP profile in WebFinger
160-
* Fixed: Prevent scheduler overload
161-
162166
See full Changelog on [GitHub](https://github.com/Automattic/wordpress-activitypub/blob/master/CHANGELOG.md).
163167

164168
== Upgrade Notice ==

0 commit comments

Comments
 (0)