mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-20 16:40:10 +00:00
Update changelog and some final fixes.
This commit is contained in:
@@ -50,11 +50,11 @@ __DIR__ . '/../app/Http',
|
|||||||
earlyReturn : true,
|
earlyReturn : true,
|
||||||
strictBooleans : true,
|
strictBooleans : true,
|
||||||
carbon : true,
|
carbon : true,
|
||||||
rectorPreset : false,
|
rectorPreset : true,
|
||||||
phpunitCodeQuality : false,
|
phpunitCodeQuality : true,
|
||||||
doctrineCodeQuality: false,
|
doctrineCodeQuality: true,
|
||||||
symfonyCodeQuality : false,
|
symfonyCodeQuality : true,
|
||||||
symfonyConfigs : false
|
symfonyConfigs : true
|
||||||
|
|
||||||
)
|
)
|
||||||
->withComposerBased(
|
->withComposerBased(
|
||||||
|
|||||||
@@ -46,6 +46,7 @@ use Illuminate\Routing\Redirector;
|
|||||||
use Illuminate\Support\Facades\DB;
|
use Illuminate\Support\Facades\DB;
|
||||||
use Illuminate\Support\Facades\Log;
|
use Illuminate\Support\Facades\Log;
|
||||||
use Illuminate\Validation\ValidationException;
|
use Illuminate\Validation\ValidationException;
|
||||||
|
use Symfony\Component\HttpFoundation\Response as ResponseAlias;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class LoginController
|
* Class LoginController
|
||||||
@@ -211,7 +212,7 @@ class LoginController extends Controller
|
|||||||
$this->loggedOut($request);
|
$this->loggedOut($request);
|
||||||
|
|
||||||
return $request->wantsJson()
|
return $request->wantsJson()
|
||||||
? new Response('', 204)
|
? new Response('', ResponseAlias::HTTP_NO_CONTENT)
|
||||||
: redirect('/');
|
: redirect('/');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
16
changelog.md
16
changelog.md
@@ -3,6 +3,22 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
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
|
## 6.2.12 - 2025-04-21
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|||||||
Reference in New Issue
Block a user