Skip to content

Releases: totten/loco

v0.8.2

22 Mar 09:41

Choose a tag to compare

Add experimental options default_io_mode and io_mode (which affect loco start)

v0.8.1

14 Jan 23:11
10f372a

Choose a tag to compare

Fix regression in export command

v0.8.0

01 Aug 05:21
6e87d2e

Choose a tag to compare

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

29 Feb 17:52

Choose a tag to compare

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

08 Feb 10:08
e6bf88c

Choose a tag to compare

  • loco start- Close pipes explicitly (#15)

v0.7.0

08 Feb 08:52
41340ae

Choose a tag to compare

  • loco info - Add command for viewing effective service definitions (#14)
  • loco start - Enforce daemonization (#13)

Release v0.6.3

08 Feb 07:32

Choose a tag to compare

  • Fix warnings from Symfony Dispatcher
  • Update Github actions

Release v0.6.2

30 Jan 22:38
b4b5796

Choose a tag to compare

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 default log_file: for background execution.

Release v0.6.1

30 Jan 04:00
f6553bb

Choose a tag to compare

  • Within subshell, consistently use the same config file (#10)

Release v0.6.0

29 Jan 22:17
b5b5706

Choose a tag to compare

  • 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.