Skip to content

Releases: laravel/homestead

v11.1.2

18 Aug 23:08
faa468e
Compare
Choose a tag to compare
  • Enable apache2 when used as site type
  • Update golang version to 1.15 (#1474)
  • Feature: Add EventStore script (#1472)
  • Update MongoDB for 4.4 / Ubuntu 20.04

v11.0.2

12 Aug 14:43
2440863
Compare
Choose a tag to compare

v11.0.1

22 Jul 19:19
cbe902e
Compare
Choose a tag to compare
  • Partially resolves #1461 issue w/ MariaDB

v11.0.0

21 Jul 16:54
c6ab4dd
Compare
Choose a tag to compare

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

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

21 Jul 17:24
c045198
Compare
Choose a tag to compare
  • 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

20 Jul 17:30
3edc639
Compare
Choose a tag to compare

v10.10.1

01 Jul 00:19
ea76d79
Compare
Choose a tag to compare
  • Fixes Minio issue: #1442

v10.10.0

30 Jun 23:19
7107511
Compare
Choose a tag to compare

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

26 Jun 20:37
6327f2a
Compare
Choose a tag to compare
  • Fix remote MariaDB access

v10.9.1

25 Jun 13:49
657e800
Compare
Choose a tag to compare