Releases: totten/loco
Releases · totten/loco
v0.8.2
v0.8.1
Fix regression in export command
v0.8.0
PHP 8.4 support:
- Fix some warnings on PHP 8.4
- Update several dependencies to fix other issues in PHP 8.4
- Raise minimum to PHP 7.3
v0.7.2
Allow toggling ramdisk support by setting an environment variable.
A good idiom for enabling ramdisks has looked like this:
default_environment:
- RAMDISK=600
volume:
ramdisk: $RAMDISKYou can optionally tune the ramdisk size at start (eg env RAMDISK=1000 loco run). However, you couldn't opt-out. This revision allows an opt-out (RAMDISK=off).
v0.7.1
v0.7.0
Release v0.6.3
- Fix warnings from Symfony Dispatcher
- Update Github actions
Release v0.6.2
The general theme of v0.6.2 is to improve support for background execution.
- Add
loco startcommand to launch services in background. - Update
loco stopcommand to wait for services to go offline. - Update
loco cleancommand to implicitly stop services (before destroying their data). - Add
log_file:option to redirect console output. - Update
loco startto apply a defaultlog_file:for background execution.
Release v0.6.1
- Within subshell, consistently use the same config file (#10)
Release v0.6.0
- Improve support for inline function calls (#8). The functionality remains experimental, but it should be a bit more useful.
environment: - SIBLING=$(dirname "$FILE")/sibling.txt
- Improve test coverage. Add php82 to test matrix.