Skip to content

Commit 7ee966e

Browse files
committed
version bump
1 parent 3986415 commit 7ee966e

File tree

4 files changed

+60
-3
lines changed

4 files changed

+60
-3
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,30 @@ 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+
## [4.0.0] - 2024-10-23
9+
10+
### Added
11+
12+
* Fire an action before a follower is removed
13+
* Make Intent-URL filterable
14+
* `title` attribute to link headers for better readability
15+
* Post "visibility" feature
16+
* Attribution-Domains support
17+
18+
### Improved
19+
20+
* Inbox validation
21+
* WordPress-Post-Type - Detection
22+
* Only validate POST params and do not fall back to GET params
23+
* ID handling for a better compatibility with caching plugins
24+
25+
### Fixed
26+
27+
* The "Shared Inbox" endpoint
28+
* Ensure that sticky_posts is an array
29+
* URLs and Hashtags in profiles were not converted
30+
* A lot of small improvements and fixes
31+
832
## [3.3.3] - 2024-10-09
933

1034
### Fixed
@@ -969,6 +993,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
969993

970994
* initial
971995

996+
[4.0.0]: https://github.com/Automattic/wordpress-activitypub/compare/3.3.3...4.0.0
972997
[3.3.3]: https://github.com/Automattic/wordpress-activitypub/compare/3.3.2...3.3.3
973998
[3.3.2]: https://github.com/Automattic/wordpress-activitypub/compare/3.3.1...3.3.2
974999
[3.3.1]: https://github.com/Automattic/wordpress-activitypub/compare/3.3.0...3.3.1

README.md

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

151151
## Changelog ##
152152

153+
### 4.0.0 ###
154+
155+
Added: Fire an action before a follower is removed
156+
Added: Make Intent-URL filterable
157+
Added: `title` attribute to link headers for better readability
158+
Added: Post "visibility" feature
159+
Added: Attribution-Domains support
160+
Improved: Inbox validation
161+
Improved: WordPress-Post-Type - Detection
162+
Improved: Only validate POST params and do not fall back to GET params
163+
Improved: ID handling for a better compatibility with caching plugins
164+
Fixed: The "Shared Inbox" endpoint
165+
Fixed: Ensure that sticky_posts is an array
166+
Fixed: URLs and Hashtags in profiles were not converted
167+
Fixed: A lot of small improvements and fixes
168+
153169
### 3.3.3 ###
154170

155171
* Fixed: Sanitization callback

activitypub.php

Lines changed: 1 addition & 1 deletion
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.3.3
6+
* Version: 4.0.0
77
* Author: Matthias Pfefferle & Automattic
88
* Author URI: https://automattic.com/
99
* License: MIT

readme.txt

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

149149
== Changelog ==
150150

151+
= 4.0.0 =
152+
153+
Added: Fire an action before a follower is removed
154+
Added: Make Intent-URL filterable
155+
Added: `title` attribute to link headers for better readability
156+
Added: Post "visibility" feature
157+
Added: Attribution-Domains support
158+
Improved: Inbox validation
159+
Improved: WordPress-Post-Type - Detection
160+
Improved: Only validate POST params and do not fall back to GET params
161+
Improved: ID handling for a better compatibility with caching plugins
162+
Fixed: The "Shared Inbox" endpoint
163+
Fixed: Ensure that sticky_posts is an array
164+
Fixed: URLs and Hashtags in profiles were not converted
165+
Fixed: A lot of small improvements and fixes
166+
151167
= 3.3.3 =
152168

153169
* Fixed: Sanitization callback

0 commit comments

Comments
 (0)