Skip to content

Releases: ChrisTimperley/dockerblade

v0.6.2

06 Jun 00:14
Compare
Choose a tag to compare

v0.6.2 (2024-06-05)

  • added __all__ to all submodules to improve discoverability

v0.6.1

24 May 01:57
Compare
Choose a tag to compare

v0.6.1 (2024-05-23)

  • silence stdout/stderr when copying files via copy_to_host and copy_from_host

v0.6.0

24 May 01:23
Compare
Choose a tag to compare

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_limit and kill_after from being used by subprocess.check_output

v0.5.7

12 Oct 15:10
Compare
Choose a tag to compare

v0.5.7 (2021-10-12)

  • relaxed attrs requirement to any version since 19.2.0
  • added environment argument to Shell methods (#81)

v0.5.6

24 Nov 02:07
Compare
Choose a tag to compare

v0.5.6 (2020-11-23)

  • fixed issue when copying symbolically linked files (#73)
  • updated Daemon constructor to support Windows out of the box
  • fixed copy_from_host and copy_to_host in FileSystem to support
    Windows hosts.
  • relaxed dependency versions to improve compatibility.

v0.5.5

08 Jul 21:49
Compare
Choose a tag to compare

v0.5.5 (2020-07-08)

  • updated default url for DockerDaemon to be the value of the
    DOCKER_HOST environment variable, if present. If the DOCKER_HOST
    environment variable is not present, unix://var/run/docker.sock
    will be used instead.

v0.5.4

30 Jun 03:01
Compare
Choose a tag to compare

v0.5.4 (2020-06-29)

  • added command parameter to provision method of DockerDaemon.

v0.5.3

30 Jun 02:05
Compare
Choose a tag to compare

v0.5.3 (2020-06-29)

  • added name attribute to Container class.
  • added ports, user, name, environment, and entrypoint parameters to
    provision method of DockerDaemon.
  • bug fix: added py.typed to MANIFEST.in to fix PEP 561 support.
  • added __enter__ and __exit__ to Container.

v0.5.2

09 Jun 16:26
Compare
Choose a tag to compare

v0.5.2 (2020-06-09)

  • improved performance of copy_to_host, copy_from_host, and read methods
    in FileSystem.
  • added network_mode parameter to provision method of DockerDaemon.
  • added network_mode property to Container.

v0.5.1

01 Jun 21:24
Compare
Choose a tag to compare

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.