mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-23 09:32:29 +01:00
Compare commits
4 Commits
dd2027383f
...
d2a5ff31ee
Author | SHA1 | Date | |
---|---|---|---|
|
d2a5ff31ee | ||
|
90ae588721 | ||
|
955dd2796d | ||
|
d319502904 |
10
CHANGELOG.md
10
CHANGELOG.md
@ -3,6 +3,16 @@ This file is a running track of new features and fixes to each version of the pa
|
||||
|
||||
This project follows [Semantic Versioning](http://semver.org) guidelines.
|
||||
|
||||
## v1.11.10
|
||||
|
||||
### BREAKING
|
||||
|
||||
* Minimum PHP verion is now 8.2 due to Laravel upgrade!
|
||||
|
||||
### Fixed
|
||||
|
||||
* Update Laravel to address [CVE-2024-52301](https://github.com/advisories/GHSA-gv7v-rgg6-548h)
|
||||
|
||||
## v1.11.9
|
||||
|
||||
### Fixed
|
||||
|
@ -28,7 +28,7 @@
|
||||
"guzzlehttp/guzzle": "~7.9.2",
|
||||
"hashids/hashids": "~5.0.2",
|
||||
"laracasts/utilities": "~3.2.3",
|
||||
"laravel/framework": "~11.28.1",
|
||||
"laravel/framework": "~11.31.0",
|
||||
"laravel/helpers": "~1.7.0",
|
||||
"laravel/sanctum": "~4.0.3",
|
||||
"laravel/tinker": "~2.10.0",
|
||||
|
541
composer.lock
generated
541
composer.lock
generated
File diff suppressed because it is too large
Load Diff
@ -6,9 +6,9 @@
|
||||
<div class="col-xs-12">
|
||||
<div class="nav-tabs-custom nav-tabs-floating">
|
||||
<ul class="nav nav-tabs">
|
||||
<li @if($activeTab === 'basic')class="active"@endif><a href="{{ route('admin.settings') }}">General</a></li>
|
||||
<li @if($activeTab === 'mail')class="active"@endif><a href="{{ route('admin.settings.mail') }}">Mail</a></li>
|
||||
<li @if($activeTab === 'advanced')class="active"@endif><a href="{{ route('admin.settings.advanced') }}">Advanced</a></li>
|
||||
<li @class(['active' => $activeTab === 'basic'])><a href="{{ route('admin.settings') }}">General</a></li>
|
||||
<li @class(['active' => $activeTab === 'mail'])><a href="{{ route('admin.settings.mail') }}">Mail</a></li>
|
||||
<li @class(['active' => $activeTab === 'advanced'])><a href="{{ route('admin.settings.advanced') }}">Advanced</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user