Skip to content

Releases: into-docker/clj-docker-client

1.0.3

26 Feb 09:10
Compare
Choose a tag to compare

New features:

  • Add support for mTLS
  • Allow reading of streams when a exception is thrown #37

Thanks @xsc for adding the necessary features to unixsocket-http 😄

1.0.2

12 Dec 18:13
Compare
Choose a tag to compare

MInor release

  • Support v1.41 docker API
  • Update dependencies
  • Fix docs

1.0.1

16 May 13:15
Compare
Choose a tag to compare

Minor release improving key destructuring in docker swagger YAMLs and improving compatibily with https://github.com/borkdude/babashka

1.0.0!

16 May 07:10
Compare
Choose a tag to compare

1.0.0 Finally 🎉

Changes:

  • Add GraalVM native config - @xsc
  • Update deps to latest

1.0.0-RC2

27 Apr 10:48
Compare
Choose a tag to compare
1.0.0-RC2 Pre-release
Pre-release

Move all resources to clj_docker_client namespaced dir to avoid potential resource classpath collisions.

1.0.0-RC1

25 Apr 15:27
Compare
Choose a tag to compare
1.0.0-RC1 Pre-release
Pre-release

1.0.0 Here we come! 🎉

All changes are non breaking.

Major changes:

0.5.3

04 Apr 11:47
Compare
Choose a tag to compare

Add ability to optionally throw exceptions for exceptional response statues (>= 400).

Update dev deps.

0.5.2

23 Mar 18:22
Compare
Choose a tag to compare

Automatic connection pooling is disabled now. All invokes use a new connection. Thanks @TimoKramer

connect is now deprecated. Connection options should be passed to invoke directly.

Closes #20

0.5.1

11 Feb 04:21
Compare
Choose a tag to compare

Fixes:

  • Headers are correctly parsed now for Requests. Thanks @bharendt

0.5.0

11 Feb 17:01
Compare
Choose a tag to compare

New:

  • Ability to support bidirectional streams (#17)
  • Support configurable timeouts for daemon connections (#19 )
  • All API calls are prefixed with the version for more explictness

Breaking changes:

  • invoke now takes a param :as as one of :stream, :socket or :data instead of :as-stream?.