Releases: totten/loco
Releases · totten/loco
v0.8.0
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: $RAMDISK
You 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 start
command to launch services in background. - Update
loco stop
command to wait for services to go offline. - Update
loco clean
command to implicitly stop services (before destroying their data). - Add
log_file:
option to redirect console output. - Update
loco start
to 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.
Release v0.5.4
Fix PHP warning. Update build processes.
Release v0.5.3
Do not participate in Symfony's SHELL_VERBOSITY