Clj Docker Client Versions Save

An idiomatic, data-driven, REPL friendly Clojure Docker client

1.0.3

3 years ago

New features:

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

1.0.2

3 years ago

MInor release

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

1.0.1

4 years ago

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

1.0.0

4 years ago

1.0.0 Finally 🎉

Changes:

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

1.0.0-RC2

4 years ago

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

1.0.0-RC1

4 years ago

1.0.0 Here we come! 🎉

All changes are non breaking.

Major changes:

0.5.3

4 years ago

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

Update dev deps.

0.5.2

4 years ago

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.0

4 years ago

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?.

0.5.1

4 years ago

Fixes:

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