Skip to content

Commit

Permalink
Merge branch 'main' into feature-testing-php_versions
Browse files Browse the repository at this point in the history
  • Loading branch information
reynoldsalec committed Apr 18, 2024
2 parents 660ffff + 287a3ba commit d8b9459
Show file tree
Hide file tree
Showing 7 changed files with 377 additions and 303 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## v1.3.0 - [April 18, 2024](https://github.com/lando/acquia/releases/tag/v1.3.0)

* Updated mariadb plugin to [v1.3.0](https://github.com/lando/mariadb/releases/tag/v1.3.0). See [#51](https://github.com/lando/mariadb/issues/51).
* Updated default PHP to 8.2
* Updated Drush 8 to 8.4.10

## v1.2.0 - [March 15, 2024](https://github.com/lando/acquia/releases/tag/v1.2.0)

* Updated mariadb plugin to [v1.2.0](https://github.com/lando/mariadb/releases/tag/v1.2.0).

## v1.1.1 - [March 7, 2024](https://github.com/lando/acquia/releases/tag/v1.1.1)

### Fixes
Expand All @@ -11,7 +21,7 @@
* Updated deps.

## v1.0.0 - [December 7, 2023](https://github.com/lando/acquia/releases/tag/v1.0.0)

* Dialed fully for `lando update`

## v0.10.0 - [October 5, 2023](https://github.com/lando/acquia/releases/tag/v0.10.0)
Expand Down
2 changes: 1 addition & 1 deletion builders/acquia-base.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const utils = require('../lib/utils.js');
const warnings = require('../lib/warnings.js');

// "Constants"
const DRUSH8 = '8.4.8';
const DRUSH8 = '8.4.10';
const DRUSH7 = '7.4.0';

// Tooling defaults
Expand Down
4 changes: 2 additions & 2 deletions builders/acquia.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ module.exports = {
composer_version: '2',
confSrc: path.resolve(__dirname, '..', 'config'),
defaultFiles: {},
drush: '8.4.8',
drush: '8.4.10',
inbox: true,
php: '7.4',
php: '8.2',
services: {appserver: {
build: [],
overrides: {volumes: [], environment: {}},
Expand Down
2 changes: 1 addition & 1 deletion docs/.vitepress/config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@ function sidebar() {
},
{text: 'Guides', link: '/guides', activeMatch: '/guides'},
];
};
};
6 changes: 4 additions & 2 deletions docs/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ config:
cache: true
composer_version: '2'
inbox: true
php: '7.4'
php: '8.2'
xdebug: false
```
Expand Down Expand Up @@ -56,7 +56,9 @@ By default, Lando will spin up an approximation of the Acquia stack:
* Apache webserver `2.4`
* MySQL database server `5.7`
* Memcache `1.6`
* PHP `7.3`, `7.4`
* PHP `8.2`

Where acquia provides multiple options, we'll choose the current default. PHP is a good example.

Not current supported but coming soon:

Expand Down
Loading

0 comments on commit d8b9459

Please sign in to comment.