Dont require an IP address for hostnames; closes #1728
This commit is contained in:
parent
05d859c985
commit
41cbdb8d59
|
@ -6,6 +6,7 @@ This project follows [Semantic Versioning](http://semver.org) guidelines.
|
||||||
## v0.7.17 (Derelict Dermodactylus)
|
## v0.7.17 (Derelict Dermodactylus)
|
||||||
### Fixed
|
### Fixed
|
||||||
* Fixes database passwords not being generated with the proper requirements for some MySQL setups.
|
* Fixes database passwords not being generated with the proper requirements for some MySQL setups.
|
||||||
|
* Hostnames that are not FQDNs/IP addresses can now be used for connecting to a MySQL host.
|
||||||
|
|
||||||
## v0.7.16 (Derelict Dermodactylus)
|
## v0.7.16 (Derelict Dermodactylus)
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
|
@ -72,7 +72,7 @@ class DatabaseHost extends Model implements CleansAttributes, ValidableContract
|
||||||
*/
|
*/
|
||||||
protected static $dataIntegrityRules = [
|
protected static $dataIntegrityRules = [
|
||||||
'name' => 'string|max:255',
|
'name' => 'string|max:255',
|
||||||
'host' => 'ip|unique:database_hosts,host',
|
'host' => 'unique:database_hosts,host',
|
||||||
'port' => 'numeric|between:1,65535',
|
'port' => 'numeric|between:1,65535',
|
||||||
'username' => 'string|max:32',
|
'username' => 'string|max:32',
|
||||||
'password' => 'nullable|string',
|
'password' => 'nullable|string',
|
||||||
|
|
Loading…
Reference in New Issue