1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-11-23 09:32:29 +01:00

Compare commits

...

4 Commits

Author SHA1 Message Date
Mackenzie Molloy
04c719b842
Merge 2ae17719a8 into 90ae588721 2024-11-15 13:19:09 +08:00
Matthew Penner
90ae588721
Update CHANGELOG.md
Signed-off-by: Matthew Penner <me@matthewp.io>
2024-11-14 19:26:24 -07:00
Matthew Penner
955dd2796d
chore: update laravel 11.28.1 -> 11.31.0
Signed-off-by: Matthew Penner <me@matthewp.io>
2024-11-14 19:03:51 -07:00
Mackenzie Molloy
2ae17719a8
Cast old() returned value to an Integer 2024-07-18 21:36:53 +01:00
4 changed files with 283 additions and 272 deletions

View File

@ -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

View File

@ -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

File diff suppressed because it is too large Load Diff

View File

@ -54,7 +54,7 @@
<div>
<select name="location_id" class="form-control">
@foreach($locations as $location)
<option value="{{ $location->id }}" {{ (old('location_id', $node->location_id) === $location->id) ? 'selected' : '' }}>{{ $location->long }} ({{ $location->short }})</option>
<option value="{{ $location->id }}" {{ (((int) old('location_id', $node->location_id)) === $location->id) ? 'selected' : '' }}>{{ $location->long }} ({{ $location->short }})</option>
@endforeach
</select>
</div>