Merge pull request #5894 from pixelfed/staging

Staging
pull/5914/head^2 v0.12.5
daniel 2 weeks ago committed by GitHub
commit 9e34cfe9df
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,6 +1,9 @@
# Release Notes
## [Unreleased](https://github.com/pixelfed/pixelfed/compare/v0.12.3...dev)
- ([](https://github.com/pixelfed/pixelfed/commit/))
## [v0.12.5 (2024-03-23)](https://github.com/pixelfed/pixelfed/compare/v0.12.5...dev)
### Added
- Add app register email verify resends ([dbd1e17](https://github.com/pixelfed/pixelfed/commit/dbd1e17))
@ -63,7 +66,6 @@
- Update Inbox handler, add Reject Follow support ([fbe76e37f](https://github.com/pixelfed/pixelfed/commit/fbe76e37f))
- Update Inbox handler, improve Undo Follow logic ([5525369fe](https://github.com/pixelfed/pixelfed/commit/5525369fe))
- Update ApiV1Controller, send UndoFollow when cancelling a follow request on remote accounts ([2cf301181](https://github.com/pixelfed/pixelfed/commit/2cf301181))
- ([](https://github.com/pixelfed/pixelfed/commit/))
## [v0.12.4 (2024-11-08)](https://github.com/pixelfed/pixelfed/compare/v0.12.4...dev)

@ -1537,7 +1537,7 @@ class ApiV1Controller extends Controller
$user = $request->user();
$res = FollowRequest::whereFollowingId($user->profile->id)
$res = FollowRequest::whereFollowingId($user->profile_id)
->limit($request->input('limit', 40))
->pluck('follower_id')
->map(function ($id) {

@ -19,7 +19,7 @@ return [
'remoteFollow' => env('AP_REMOTE_FOLLOW', true),
'delivery' => [
'timeout' => env('ACTIVITYPUB_DELIVERY_TIMEOUT', 30.0),
'timeout' => env('ACTIVITYPUB_DELIVERY_TIMEOUT', 30),
'concurrency' => env('ACTIVITYPUB_DELIVERY_CONCURRENCY', 10),
'logger' => [
'enabled' => env('AP_LOGGER_ENABLED', false),

@ -23,7 +23,7 @@ return [
| This value is the version of your Pixelfed instance.
|
*/
'version' => '0.12.4',
'version' => '0.12.5',
/*
|--------------------------------------------------------------------------

Loading…
Cancel
Save