Releases: ChrisTimperley/dockerblade
Releases · ChrisTimperley/dockerblade
v0.6.2
v0.6.1
v0.6.1 (2024-05-23)
- silence stdout/stderr when copying files via
copy_to_hostandcopy_from_host
v0.6.0
v0.6.0 (2024-05-20)
- switched from Pipenv to Poetry
- updated linting config to use Ruff and MyPy 1.1.0
- fixed a bug that prevented
time_limitandkill_afterfrom being used by subprocess.check_output
v0.5.7
v0.5.6
v0.5.5
v0.5.5 (2020-07-08)
- updated default
urlforDockerDaemonto be the value of the
DOCKER_HOSTenvironment variable, if present. If theDOCKER_HOST
environment variable is not present,unix://var/run/docker.sock
will be used instead.
v0.5.4
v0.5.4 (2020-06-29)
- added
commandparameter toprovisionmethod ofDockerDaemon.
v0.5.3
v0.5.3 (2020-06-29)
- added
nameattribute toContainerclass. - added
ports,user,name,environment, andentrypointparameters to
provisionmethod ofDockerDaemon. - bug fix: added
py.typedtoMANIFEST.into fix PEP 561 support. - added
__enter__and__exit__toContainer.
v0.5.2
v0.5.2 (2020-06-09)
- improved performance of
copy_to_host,copy_from_host, andreadmethods
inFileSystem. - added
network_modeparameter toprovisionmethod ofDockerDaemon. - added
network_modeproperty toContainer.
v0.5.1
v0.5.1 (2020-06-01)
- bug fix: lack of defensive copying in Shell constructor can lead to
crashes due to use of mappingproxy type.