Skip to content

v1.6.0

Compare
Choose a tag to compare
@github-actions github-actions released this 22 Jul 23:39
· 21 commits to main since this release
v1.6.0
865f048

Whats Changed

The kind key is deprecated and should now be used as the command key in place of command. For example:

"commands": [
    {"command": ("migrate"), "kind": "management"},
    {"command": ("touch", "/var/www/site/wsgi.py"), "kind": "system"},

    # the above will still work but should be rewritten as:

    {"management": ("migrate"),}
    {"system": ("touch", "/var/www/site/wsgi.py")},
]

Full Changelog: v1.5.1...v1.6.0