Releases: laravel/homestead
v11.1.2
v11.0.2
- Bugfix: Unable to locate package python-django. (#1466) @juangiordana
- fixed creating MariaDB database (#1475) @petrparolek
v11.0.1
v11.0.0
New Features 🆕
Enable or Disable Services
Homestead starts several services by default however if your configuration overrides one of these defaults you can specify which services you would like to enable or disable during provisioning. For example if you only needed PostgreSQL 12 your services:
configuration in Homestead.yaml
might look like:
services:
- enabled:
- "postgresql@12-main"
- disabled:
- "mysql"
This configuration would ensure postgresql@12-main
service would be enabled and mysql
would be disabled from starting at boot. The specified services will also be started or stopped based on their location in enabled
and disabled
sections.
New Default Versions
- Ubuntu 20.04
- MySQL 8 (
mysql8
feature script removed) - Node 14
General Notes
- MariaDB, MongoDB do not currently support Ubuntu 20.04 🚨 (as of 07/21/20)
- MySQL, MariaDB, PostgreSQL databases will only be created if the respective services are running.
- Apache is now installed and disabled by default which should result in faster provisioning for site type
apache
. - SSL certificates are now installed at
/etc/ssl/certs
instead of/etc/nginx/ssl
Wildcard SSL
Homestead configures a self-signed SSL certificate for each site defined in the sites:
section of your Homestead.yaml
file. If you would like to generate a wildcard SSL certificate for a site you may add a wildcard
option to that site's configuration. By default the site will use the wild card certificate instead of the specific domain certificate.
- map: foo.domain.test
to: /home/vagrant/domain
wildcard: "yes"
If the use_wildcard
option is set to no
, the wildcard certificate will be generated but will not be used:
- map: foo.domain.test
to: /home/vagrant/domain
wildcard: "yes"
use_wildcard: "no"
Note: LMM Database snapshots are not currently availiable in version 11.x.
v10.12.0
- Refactor wildcard usage resolves #1458 & add services feature
New Features 🆕
Enable or Disable Services
Homestead starts several services by default however if your configuration overrides one of these defaults you can specify which services you would like to enable or disable during provisioning. For example if you only needed PostgreSQL 12 your services:
configuration in Homestead.yaml
might look like:
services:
- enabled:
- "postgresql@12-main"
- disabled:
- "mysql"
This configuration would ensure postgresql@12-main
service would be enabled and mysql
would be disabled from starting at boot. The specified services will also be started or stopped based on their location in enabled
and disabled
sections.
Wildcard SSL
Homestead configures a self-signed SSL certificate for each site defined in the sites:
section of your Homestead.yaml
file. If you would like to generate a wildcard SSL certificate for a site you may add a wildcard
option to that site's configuration. By default the site will use the wild card certificate instead of the specific domain certificate.
- map: foo.domain.test
to: /home/vagrant/domain
wildcard: "yes"
If the use_wildcard
option is set to no
, the wildcard certificate will be generated but will not be used:
- map: foo.domain.test
to: /home/vagrant/domain
wildcard: "yes"
use_wildcard: "no"
v10.11.0
- Add support for Hyper-V specific configuration
- Update golang version to 1.14.5 (#1452) @ricardoseriani
- remove backticks, on provisioning the bash interprete the line (#1449) @sgc-fireball @richard Hülsberg
- Update golang version to 1.14.6 (#1454) @ricardoseriani
v10.10.1
v10.10.0
- Removed extra "echo" that was making it into the config (#1443) @dprevite
- Update symfony2.sh (#1441) @sdespont
- Fixed localized paths for serve commands (#1440) @Braunson
- Change version constraint to not show beta builds. @svpernova09
The most notable change is you will no longer be prompted to update to a pre-release beta box. I've been doing these for several years and finally figured this out. Stay in school kids and never stop learning.
v10.9.2
- Fix remote MariaDB access