Update changelog and some final fixes.

This commit is contained in:
James Cole
2025-05-24 06:19:07 +02:00
parent 66be8ee80e
commit 1ec5ee08aa
3 changed files with 23 additions and 6 deletions

View File

@@ -50,11 +50,11 @@ __DIR__ . '/../app/Http',
earlyReturn : true,
strictBooleans : true,
carbon : true,
rectorPreset : false,
phpunitCodeQuality : false,
doctrineCodeQuality: false,
symfonyCodeQuality : false,
symfonyConfigs : false
rectorPreset : true,
phpunitCodeQuality : true,
doctrineCodeQuality: true,
symfonyCodeQuality : true,
symfonyConfigs : true
)
->withComposerBased(

View File

@@ -46,6 +46,7 @@ use Illuminate\Routing\Redirector;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Log;
use Illuminate\Validation\ValidationException;
use Symfony\Component\HttpFoundation\Response as ResponseAlias;
/**
* Class LoginController
@@ -211,7 +212,7 @@ class LoginController extends Controller
$this->loggedOut($request);
return $request->wantsJson()
? new Response('', 204)
? new Response('', ResponseAlias::HTTP_NO_CONTENT)
: redirect('/');
}

View File

@@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
## 6.2.13 - 2025-05-25
### Fixed
- #10114
- #10180
- #10197
- #10203
- #10265
- #10290
- #10302
- #10305
- #10308
- #10320
- #10336
## 6.2.12 - 2025-04-21
### Fixed