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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## {{ UNRELEASED_VERSION }} - [{{ UNRELEASED_DATE }}]({{ UNRELEASED_LINK }})

* Updated to [@lando/nginx@1.6.0](https://github.com/lando/nginx/releases/tag/v1.6.0)
* Removed `--ansi` flag from composer tooling command to prevent escape codes in redirected output

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

Expand Down
2 changes: 1 addition & 1 deletion builders/wordpress.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ const getDatabaseType = options => {
const toolingDefaults = {
'composer': {
service: 'appserver',
cmd: 'composer --ansi',
cmd: 'composer',
},
'db-import <file>': {
service: ':host',
Expand Down
3 changes: 3 additions & 0 deletions examples/wordpress-defaults/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@ lando mysql -u root -e "show variables;" | grep innodb_lock_wait_timeout | grep

# Should use composer 2 by default
lando exec appserver -- /bin/sh -c 'NO_COLOR=1 composer -V' | grep "Composer version 2."

# Should not include ANSI escape codes when output is redirected
lando composer --version > /tmp/composer-output.txt 2>&1 && ! grep -P '\x1b\[' /tmp/composer-output.txt
```

## Destroy tests
Expand Down
Loading