-------------------
- The release merges the fuselage integration refactor. You no longer have to
import bits of fuselage to use it, you can use touchdown serializers and you
can use it against your local machine. This means you can generate a
``local_settings.py`` for your Django dev environment with AWS resource
details in it!
A simple example is just::
from touchdown.core import serializers
provisioner = workspace.add_fuselage_bundle(
target=workspace.add_local(),
)
provisioner.add_file(
name="/home/john/hello",
contents=serializers.Const("HELLO!!"),
)
Thanks to mitchellrj for this feature.
- Print our resource ids after resource creation. This is particularly useful
for AMI creation and copying.
- Better SSH connection retrying when tunneling.