Skip to content

Commit 90f01ce

Browse files
committed
Version bump
1 parent 8708609 commit 90f01ce

File tree

4 files changed

+26
-106
lines changed

4 files changed

+26
-106
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ 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.2 - 2024-10-30
9+
10+
### Fixed
11+
12+
* Do not federate "Local" posts
13+
14+
### Improved
15+
16+
* Help-text for Content-Warning box
17+
818
## [4.0.1] - 2024-10-26
919

1020
### Fixed
@@ -1005,6 +1015,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
10051015

10061016
* initial
10071017

1018+
[4.0.2]: https://github.com/Automattic/wordpress-activitypub/compare/4.0.1...4.0.2
1019+
[4.0.1]: https://github.com/Automattic/wordpress-activitypub/compare/4.0.0...4.0.1
10081020
[4.0.0]: https://github.com/Automattic/wordpress-activitypub/compare/3.3.3...4.0.0
10091021
[3.3.3]: https://github.com/Automattic/wordpress-activitypub/compare/3.3.2...3.3.3
10101022
[3.3.2]: https://github.com/Automattic/wordpress-activitypub/compare/3.3.1...3.3.2

README.md

Lines changed: 6 additions & 52 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.6
6-
**Stable tag:** 4.0.1
6+
**Stable tag:** 4.0.2
77
**Requires PHP:** 7.0
88
**License:** MIT
99
**License URI:** http://opensource.org/licenses/MIT
@@ -152,6 +152,11 @@ For reasons of data protection, it is not possible to see the followers of other
152152

153153
## Changelog ##
154154

155+
### 4.0.2 ###
156+
157+
* Fixed: Do not federate "Local" posts
158+
* Improved: Help-text for Content-Warning box
159+
155160
### 4.0.1 ###
156161

157162
* Fixed: Missing URL-Param handling in REST API
@@ -202,57 +207,6 @@ For reasons of data protection, it is not possible to see the followers of other
202207
* Improved: OpenSSL handling
203208
* Improved: Added missing @ in Follow-Me block
204209

205-
### 3.2.5 ###
206-
207-
* Fixed: Enable Mastodon Apps check
208-
* Fixed: Fediverse replies were not threaded properly
209-
210-
### 3.2.4 ###
211-
212-
* Improved: Inbox validation
213-
214-
### 3.2.3 ###
215-
216-
* Fixed: NodeInfo endpoint
217-
* Fixed: (Temporarily) Remove HTML from `summary`, because it seems that Mastodon has issues with it
218-
* Improved: Accessibility for Reply-Context
219-
* Improved: Use `Article` Object-Type as default
220-
221-
### 3.2.2 ###
222-
223-
* Fixed: Extra-Fields check
224-
225-
### 3.2.1 ###
226-
227-
* Fixed: Use `Excerpt` for Podcast Episodes
228-
229-
### 3.2.0 ###
230-
231-
* Added: Support for Seriously Simple Podcasting
232-
* Added: Blog extra fields
233-
* Added: Support "read more" for Activity-Summary
234-
* Added: `Like` and `Announce` (Boost) handler
235-
* Added: Simple Remote-Reply endpoint
236-
* Added: "Stream" Plugin support
237-
* Added: New Fediverse symbol
238-
* Improved: Replace hashtags, urls and mentions in summary with links
239-
* Improved: Hide Bookmarklet if site does not support Blocks
240-
* Fixed: Link detection for extra fields when spaces after the link and fix when two links in the content
241-
* Fixed: `Undo` for `Likes` and `Announces`
242-
* Fixed: Show Avatars on `Likes` and `Announces`
243-
* Fixed: Remove proprietary WebFinger resource
244-
* Fixed: Wrong followers URL in "to" attribute of posts
245-
246-
### 3.1.0 ###
247-
248-
* Added: `menu_order` to `ap_extrafield` so that user can decide in with order they will be displayed
249-
* Added: Line brakes to user biography
250-
* Added: Blueprint
251-
* Fixed: Changed missing `activitypub_user_description` to `activitypub_description`
252-
* Fixed: Undefined `get_sample_permalink`
253-
* Fixed: Only send Update for previously-published posts
254-
* Improved: Simplified WebFinger code
255-
256210
See full Changelog on [GitHub](https://github.com/Automattic/wordpress-activitypub/blob/trunk/CHANGELOG.md).
257211

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

25-
\define( 'ACTIVITYPUB_PLUGIN_VERSION', '4.0.1' );
25+
\define( 'ACTIVITYPUB_PLUGIN_VERSION', '4.0.2' );
2626

2727
/**
2828
* Initialize the plugin constants.

readme.txt

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

151151
== Changelog ==
152152

153+
= 4.0.2 =
154+
155+
* Fixed: Do not federate "Local" posts
156+
* Improved: Help-text for Content-Warning box
157+
153158
= 4.0.1 =
154159

155160
* Fixed: Missing URL-Param handling in REST API
@@ -200,57 +205,6 @@ For reasons of data protection, it is not possible to see the followers of other
200205
* Improved: OpenSSL handling
201206
* Improved: Added missing @ in Follow-Me block
202207

203-
= 3.2.5 =
204-
205-
* Fixed: Enable Mastodon Apps check
206-
* Fixed: Fediverse replies were not threaded properly
207-
208-
= 3.2.4 =
209-
210-
* Improved: Inbox validation
211-
212-
= 3.2.3 =
213-
214-
* Fixed: NodeInfo endpoint
215-
* Fixed: (Temporarily) Remove HTML from `summary`, because it seems that Mastodon has issues with it
216-
* Improved: Accessibility for Reply-Context
217-
* Improved: Use `Article` Object-Type as default
218-
219-
= 3.2.2 =
220-
221-
* Fixed: Extra-Fields check
222-
223-
= 3.2.1 =
224-
225-
* Fixed: Use `Excerpt` for Podcast Episodes
226-
227-
= 3.2.0 =
228-
229-
* Added: Support for Seriously Simple Podcasting
230-
* Added: Blog extra fields
231-
* Added: Support "read more" for Activity-Summary
232-
* Added: `Like` and `Announce` (Boost) handler
233-
* Added: Simple Remote-Reply endpoint
234-
* Added: "Stream" Plugin support
235-
* Added: New Fediverse symbol
236-
* Improved: Replace hashtags, urls and mentions in summary with links
237-
* Improved: Hide Bookmarklet if site does not support Blocks
238-
* Fixed: Link detection for extra fields when spaces after the link and fix when two links in the content
239-
* Fixed: `Undo` for `Likes` and `Announces`
240-
* Fixed: Show Avatars on `Likes` and `Announces`
241-
* Fixed: Remove proprietary WebFinger resource
242-
* Fixed: Wrong followers URL in "to" attribute of posts
243-
244-
= 3.1.0 =
245-
246-
* Added: `menu_order` to `ap_extrafield` so that user can decide in with order they will be displayed
247-
* Added: Line brakes to user biography
248-
* Added: Blueprint
249-
* Fixed: Changed missing `activitypub_user_description` to `activitypub_description`
250-
* Fixed: Undefined `get_sample_permalink`
251-
* Fixed: Only send Update for previously-published posts
252-
* Improved: Simplified WebFinger code
253-
254208
See full Changelog on [GitHub](https://github.com/Automattic/wordpress-activitypub/blob/trunk/CHANGELOG.md).
255209

256210
== Upgrade Notice ==

0 commit comments

Comments
 (0)