Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## {{ UNRELEASED_VERSION }} - [{{ UNRELEASED_DATE }}]({{ UNRELEASED_LINK }})

* Updated to [@lando/php@1.12.0](https://github.com/lando/php/releases/tag/v1.12.0) for mod_headers/mod_expires and xdebug log fix

## v1.12.0 - [February 22, 2026](https://github.com/lando/pantheon/releases/tag/v1.12.0)

* Added `-vv`/`--verbose` and `-vvv`/`--debug` flag passthrough to all Terminus commands in `lando pull` and `lando push` [#215](https://github.com/lando/pantheon/issues/215)
Expand Down
2 changes: 1 addition & 1 deletion examples/drupal10/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ lando exec database -- "mysql -V" | grep 10.4.

# Should have the transaction isolation level set to READ-COMMITTED
cd drupal10
lando mysql -e "SELECT @@transaction_isolation;" | grep READ-COMMITTED
lando mysql -e "SELECT @@tx_isolation;" | grep READ-COMMITTED

# Should use a varnish http_resp_hdr_len setting of 25k
cd drupal10
Expand Down
2 changes: 1 addition & 1 deletion examples/drupal11/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ lando exec database -- "mysql -V" | grep 10.6.

# Should have the transaction isolation level set to READ-COMMITTED
cd drupal11
lando mysql -e "SELECT @@transaction_isolation;" | grep READ-COMMITTED
lando mysql -e "SELECT @@tx_isolation;" | grep READ-COMMITTED

# Should use a varnish http_resp_hdr_len setting of 25k
cd drupal11
Expand Down
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
},
"dependencies": {
"@lando/mariadb": "^1.7.0",
"@lando/php": "^1.11.1",
"@lando/php": "^1.12.0",
"@lando/redis": "^1.2.3",
"@lando/solr": "^1.3.3",
"@lando/varnish": "^1.3.1",
Expand Down
Loading