Browse Source

Merge pull request #5894 from pixelfed/staging

Staging
daniel 3 months ago
parent
commit
9e34cfe9df
4 changed files with 6 additions and 4 deletions
  1. 3 1
      CHANGELOG.md
  2. 1 1
      app/Http/Controllers/Api/ApiV1Controller.php
  3. 1 1
      config/federation.php
  4. 1 1
      config/pixelfed.php

+ 3 - 1
CHANGELOG.md

@@ -1,6 +1,9 @@
 # Release Notes
 # Release Notes
 
 
 ## [Unreleased](https://github.com/pixelfed/pixelfed/compare/v0.12.3...dev)
 ## [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
 ### Added
 - Add app register email verify resends ([dbd1e17](https://github.com/pixelfed/pixelfed/commit/dbd1e17))
 - 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, 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 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))
 - 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)
 ## [v0.12.4 (2024-11-08)](https://github.com/pixelfed/pixelfed/compare/v0.12.4...dev)
 
 

+ 1 - 1
app/Http/Controllers/Api/ApiV1Controller.php

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

+ 1 - 1
config/federation.php

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

+ 1 - 1
config/pixelfed.php

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