Skip to content

Releases: WeareJH/wf2

The one that checks if `env.php` is up to date

30 Sep 17:14
Compare
Choose a tag to compare

Features:

  1. Enable a new concept called Conditional tasks. Where any command can now return a new Task variant that will only execute if all conditions are met. This enables things such as prompts etc to be encoded in a declarative style.
  2. Added a comparison between env.php & env.dist.php and offer to override (using the new conditional tasks support)

The one where `traefik` got pinned to 1.7

17 Sep 10:31
Compare
Choose a tag to compare

The one that adds the 'update-images' command

16 Sep 17:00
Compare
Choose a tag to compare

A common problem with the docker abstraction is that underlying images become out of date.

This release adds a new command to automate the process of updating your images. It's recipe specific so will only update images actually in use.

Update all images

Note: this can cause up to 12 images to be updated - so be prepared to wait a while.

wf2 update-images

Update individual images

if you know which image needs to be updated, you can provide params to the update-images to limit which services will have their image updated.

wf2 update-images php db varnish

---

16 Sep 16:28
Compare
Choose a tag to compare
---
v0.14.0

release: 0.14.0

The one that allows larger uploads

26 Aug 15:48
Compare
Choose a tag to compare

increase nginx body size to 20M @dcabrejas cfc7858

The one that allows you to override environment variables

19 Aug 11:54
3a86531
Compare
Choose a tag to compare

Added the ability to override environment variables that are shared between all containers.

Note: for now, only existing environment variables can be overriden. A full list can be seen here: https://github.com/WeareJH/wf2/blob/c2d31237f7236733685befd5fe1f7b91e4783c2b/wf2_core/src/recipes/m2/m2_runtime_env.rs#L11-L50

eg:

domains: [ ukmeds.m2 ]
env:
  BLACKFIRE_CLIENT_TOKEN: "123456"

The one that stops you pushing anything into `app/`

31 Jul 17:14
Compare
Choose a tag to compare

fix: check paths for 'push' don't begin app/ - fixes #47 11e544b...df455f0

v0.11.1

06 Jul 08:38
Compare
Choose a tag to compare
publish 0.11.1

The one with the new `push` command

06 Jul 08:00
Compare
Choose a tag to compare

3a41e98...d5eddd6

This will work on single files or entire directories, it also takes multiple paths

eg:

# entire folder - warning: it will `rm -rf` this in the container first
wf2 push vendor/wearejh

# single file
wf2 push vendor/wearejh/some/file.php

# mix of files folders
wf2 push vendor/wearejh/some/file.php some/dir anotherthing.sql

The one where the `pull` command preserves directory structure

01 Jul 20:03
Compare
Choose a tag to compare

fix: When pulling a subfolder, path is lost - fixes #33 4a09752