Skip to content

Commit 5143faa

Browse files
committed
Update changelog
1 parent 4213775 commit 5143faa

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ This file is a running track of new features and fixes to each version of the pa
33

44
This project follows [Semantic Versioning](http://semver.org) guidelines.
55

6+
## v1.8.1
7+
### Fixed
8+
* Fixes a bug causing mounts to return a 404 error when adding them to a server.
9+
* Fixes a bug causing the Egg Image dropdown to not display properly when creating a new server.
10+
* Fixes a bug causing an error when attemping to create a new server via the API.
11+
612
## v1.8.0
713
**Important:** this version updates the `version` field on generated Eggs to be `PTDL_v2` due to formatting changes. This
814
should be completely seamless for most installations as the Panel is able to convert between the two. Custom solutions

config/sanctum.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?php
22

3-
use Laravel\Sanctum\Sanctum;
43

54
return [
65

@@ -18,7 +17,7 @@
1817
'stateful' => explode(',', env('SANCTUM_STATEFUL_DOMAINS', sprintf(
1918
'%s%s',
2019
'localhost,localhost:3000,127.0.0.1,127.0.0.1:8000,::1',
21-
Sanctum::currentApplicationUrlWithPort()
20+
Laravel\Sanctum\Sanctum::currentApplicationUrlWithPort()
2221
))),
2322

2423
/*

0 commit comments

Comments
 (0)