Update changelog

This commit is contained in:
DaneEveritt 2022-05-30 11:40:21 -04:00
parent 4213775b5c
commit 5143faa4b1
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
2 changed files with 7 additions and 2 deletions

View file

@ -3,6 +3,12 @@ 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.8.1
### Fixed
* Fixes a bug causing mounts to return a 404 error when adding them to a server.
* Fixes a bug causing the Egg Image dropdown to not display properly when creating a new server.
* Fixes a bug causing an error when attemping to create a new server via the API.
## v1.8.0
**Important:** this version updates the `version` field on generated Eggs to be `PTDL_v2` due to formatting changes. This
should be completely seamless for most installations as the Panel is able to convert between the two. Custom solutions

View file

@ -1,6 +1,5 @@
<?php
use Laravel\Sanctum\Sanctum;
return [
@ -18,7 +17,7 @@ return [
'stateful' => explode(',', env('SANCTUM_STATEFUL_DOMAINS', sprintf(
'%s%s',
'localhost,localhost:3000,127.0.0.1,127.0.0.1:8000,::1',
Sanctum::currentApplicationUrlWithPort()
Laravel\Sanctum\Sanctum::currentApplicationUrlWithPort()
))),
/*