Skip to content

Commit 4a4a5d8

Browse files
committed
Merge branch 'develop'
2 parents 9f86031 + 100330d commit 4a4a5d8

File tree

8 files changed

+78
-2
lines changed

8 files changed

+78
-2
lines changed

Diff for: .gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/node_modules
2+
/public/build
23
/public/hot
34
/public/storage
45
/storage/*.key

Diff for: .phpunit.cache/test-results

+1-1
Large diffs are not rendered by default.

Diff for: CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44
----
55

6+
## [v2.20.2] - 2024-09-12
7+
8+
### Added
9+
- Enhancement for response times
10+
611
## [v2.20.1] - 2024-08-27
712

813
### Fixed

Diff for: app/Http/Controllers/Auth/LoginController.php

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ class LoginController extends Controller
3636
public function __construct()
3737
{
3838
$this->middleware('guest')->except('logout');
39+
$this->middleware('auth')->only('logout');
3940
}
4041

4142
/**

Diff for: app/Http/Kernel.php

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ class Kernel extends HttpKernel
2323
\App\Http\Middleware\TrimStrings::class,
2424
\Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull::class,
2525
\Bepsvpt\SecureHeaders\SecureHeadersMiddleware::class,
26+
\Fahlisaputra\Minify\Middleware\MinifyHtml::class,
2627
];
2728

2829
/**

Diff for: composer.json

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"barryvdh/laravel-debugbar": "^3.6",
1616
"bepsvpt/secure-headers": "^7.2",
1717
"dedoc/scramble": "^0.9.0",
18+
"fahlisaputra/laravel-minify": "^1.1",
1819
"grafite/auth": "^1.0",
1920
"grafite/blacksmith": "^1.0",
2021
"grafite/charts": "^2.0",

Diff for: composer.lock

+67-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: phpunit.xml

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
<server name="APP_ENV" value="testing"/>
1414
<server name="BCRYPT_ROUNDS" value="4"/>
1515
<server name="CACHE_DRIVER" value="array"/>
16+
<server name="MINIFY_ENABLED" value="false"/>
1617
<server name="DB_CONNECTION" value="test"/>
1718
<server name="MAIL_MAILER" value="array"/>
1819
<server name="QUEUE_CONNECTION" value="sync"/>

0 commit comments

Comments
 (0)