From e1cf9f7a794d838d53d47d5f16535189ac9f611c Mon Sep 17 00:00:00 2001 From: JC5 Date: Mon, 13 Oct 2025 05:25:17 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20Auto=20commit=20for=20release=20?= =?UTF-8?q?'develop'=20on=202025-10-13?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../V1/Controllers/Models/Account/ListController.php | 6 +++--- composer.lock | 12 ++++++------ config/firefly.php | 4 ++-- package-lock.json | 6 +++--- .../Api/Models/Account/ListControllerTest.php | 3 +-- 5 files changed, 15 insertions(+), 16 deletions(-) diff --git a/app/Api/V1/Controllers/Models/Account/ListController.php b/app/Api/V1/Controllers/Models/Account/ListController.php index c63a3a9251..ef295776f6 100644 --- a/app/Api/V1/Controllers/Models/Account/ListController.php +++ b/app/Api/V1/Controllers/Models/Account/ListController.php @@ -74,10 +74,10 @@ class ListController extends Controller { $manager = $this->getManager(); [ - 'limit' => $limit, + 'limit' => $limit, 'offset' => $offset, - 'page' => $page, - ] = $request->attributes->all(); + 'page' => $page, + ] = $request->attributes->all(); $collection = $this->repository->getAttachments($account); $count = $collection->count(); diff --git a/composer.lock b/composer.lock index 0797b98e0e..2c92afce0d 100644 --- a/composer.lock +++ b/composer.lock @@ -10549,16 +10549,16 @@ }, { "name": "driftingly/rector-laravel", - "version": "2.0.7", + "version": "2.1.0", "source": { "type": "git", "url": "https://github.com/driftingly/rector-laravel.git", - "reference": "625dc02cee08d47ecf0ac86de2f02a55026cf34e" + "reference": "efb636a08dfddfa2a3f4527b1dd970a898a075a4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/driftingly/rector-laravel/zipball/625dc02cee08d47ecf0ac86de2f02a55026cf34e", - "reference": "625dc02cee08d47ecf0ac86de2f02a55026cf34e", + "url": "https://api.github.com/repos/driftingly/rector-laravel/zipball/efb636a08dfddfa2a3f4527b1dd970a898a075a4", + "reference": "efb636a08dfddfa2a3f4527b1dd970a898a075a4", "shasum": "" }, "require": { @@ -10578,9 +10578,9 @@ "description": "Rector upgrades rules for Laravel Framework", "support": { "issues": "https://github.com/driftingly/rector-laravel/issues", - "source": "https://github.com/driftingly/rector-laravel/tree/2.0.7" + "source": "https://github.com/driftingly/rector-laravel/tree/2.1.0" }, - "time": "2025-08-19T20:49:47+00:00" + "time": "2025-10-12T21:51:39+00:00" }, { "name": "fakerphp/faker", diff --git a/config/firefly.php b/config/firefly.php index c33eba108d..72ba229f99 100644 --- a/config/firefly.php +++ b/config/firefly.php @@ -78,8 +78,8 @@ return [ 'running_balance_column' => env('USE_RUNNING_BALANCE', false), // see cer.php for exchange rates feature flag. ], - 'version' => 'develop/2025-10-12', - 'build_time' => 1760277899, + 'version' => 'develop/2025-10-13', + 'build_time' => 1760325798, 'api_version' => '2.1.0', // field is no longer used. 'db_version' => 28, // field is no longer used. diff --git a/package-lock.json b/package-lock.json index 4b64ccf86c..c1496a7e4f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -5820,9 +5820,9 @@ } }, "node_modules/envinfo": { - "version": "7.17.0", - "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.17.0.tgz", - "integrity": "sha512-GpfViocsFM7viwClFgxK26OtjMlKN67GCR5v6ASFkotxtpBWd9d+vNy+AH7F2E1TUkMDZ8P/dDPZX71/NG8xnQ==", + "version": "7.18.0", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.18.0.tgz", + "integrity": "sha512-02QGCLRW+Jb8PC270ic02lat+N57iBaWsvHjcJViqp6UVupRB+Vsg7brYPTqEFXvsdTql3KnSczv5ModZFpl8Q==", "dev": true, "license": "MIT", "bin": { diff --git a/tests/integration/Api/Models/Account/ListControllerTest.php b/tests/integration/Api/Models/Account/ListControllerTest.php index 269234e54b..d22823fefb 100644 --- a/tests/integration/Api/Models/Account/ListControllerTest.php +++ b/tests/integration/Api/Models/Account/ListControllerTest.php @@ -28,7 +28,6 @@ namespace Tests\integration\Api\Models\Account; use FireflyIII\Enums\AccountTypeEnum; use FireflyIII\Factory\AttachmentFactory; use FireflyIII\Models\Account; -use FireflyIII\Models\Category; use FireflyIII\User; use Illuminate\Foundation\Testing\RefreshDatabase; use Tests\integration\TestCase; @@ -48,7 +47,7 @@ final class ListControllerTest extends TestCase { parent::setUp(); - $this->user = $this->createAuthenticatedUser(); + $this->user = $this->createAuthenticatedUser(); $this->actingAs($this->user); $this->account = Account::factory()->for($this->user)->withType(AccountTypeEnum::ASSET)->create();