Skip to content

Commit c8c4963

Browse files
committed
version bump
1 parent 36610f5 commit c8c4963

File tree

4 files changed

+46
-4
lines changed

4 files changed

+46
-4
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,24 @@ 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+
## [3.2.4] - 2024-09-16
9+
10+
### Improved
11+
12+
* Inbox validation
13+
14+
## [3.2.3] - 2024-09-15
15+
16+
### Fixed
17+
18+
* NodeInfo endpoint
19+
* (Temporarily) Remove HTML from `summary`, because it seems that Mastodon has issues with it
20+
21+
### Improved
22+
23+
* Accessibility for Reply-Context
24+
* Use `Article` Object-Type as default
25+
826
## [3.2.2] - 2024-09-09
927

1028
### Fixed
@@ -897,6 +915,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
897915

898916
* initial
899917

918+
[3.2.4]: https://github.com/Automattic/wordpress-activitypub/compare/3.2.3...3.2.4
919+
[3.2.3]: https://github.com/Automattic/wordpress-activitypub/compare/3.2.2...3.2.3
900920
[3.2.2]: https://github.com/Automattic/wordpress-activitypub/compare/3.2.1...3.2.2
901921
[3.2.1]: https://github.com/Automattic/wordpress-activitypub/compare/3.2.0...3.2.1
902922
[3.2.0]: https://github.com/Automattic/wordpress-activitypub/compare/3.1.0...3.2.0

README.md

Lines changed: 12 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.6
6-
**Stable tag:** 3.2.2
6+
**Stable tag:** 3.2.4
77
**Requires PHP:** 7.0
88
**License:** MIT
99
**License URI:** http://opensource.org/licenses/MIT
@@ -142,6 +142,17 @@ For reasons of data protection, it is not possible to see the followers of other
142142

143143
## Changelog ##
144144

145+
### 3.2.4 ###
146+
147+
* Improved: Inbox validation
148+
149+
### 3.2.3 ###
150+
151+
* Fixed: NodeInfo endpoint
152+
* Fixed: (Temporarily) Remove HTML from `summary`, because it seems that Mastodon has issues with it
153+
* Improved: Accessibility for Reply-Context
154+
* Improved: Use `Article` Object-Type as default
155+
145156
### 3.2.2 ###
146157

147158
* Fixed: Extra-Fields check

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: 3.2.2
6+
* Version: 3.2.4
77
* Author: Matthias Pfefferle & Automattic
88
* Author URI: https://automattic.com/
99
* License: MIT
@@ -23,7 +23,7 @@
2323
require_once __DIR__ . '/includes/compat.php';
2424
require_once __DIR__ . '/includes/functions.php';
2525

26-
\define( 'ACTIVITYPUB_PLUGIN_VERSION', '3.2.2' );
26+
\define( 'ACTIVITYPUB_PLUGIN_VERSION', '3.2.4' );
2727

2828
/**
2929
* Initialize the plugin constants.

readme.txt

Lines changed: 12 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.6
6-
Stable tag: 3.2.2
6+
Stable tag: 3.2.4
77
Requires PHP: 7.0
88
License: MIT
99
License URI: http://opensource.org/licenses/MIT
@@ -140,6 +140,17 @@ For reasons of data protection, it is not possible to see the followers of other
140140

141141
== Changelog ==
142142

143+
= 3.2.4 =
144+
145+
* Improved: Inbox validation
146+
147+
= 3.2.3 =
148+
149+
* Fixed: NodeInfo endpoint
150+
* Fixed: (Temporarily) Remove HTML from `summary`, because it seems that Mastodon has issues with it
151+
* Improved: Accessibility for Reply-Context
152+
* Improved: Use `Article` Object-Type as default
153+
143154
= 3.2.2 =
144155

145156
* Fixed: Extra-Fields check

0 commit comments

Comments
 (0)