Skip to content

Releases: nu12/dockerapi

v1.0.0

27 Aug 15:33
7be0f6a

Choose a tag to compare

What's Changed

  • Support multiple API versions by @nu12 in #17

Full Changelog: v0.22.1...v1.0.0

v0.22.1

26 Aug 17:48
418fad9

Choose a tag to compare

What's Changed

  • Fix config endpoint for update
  • Replace delete method with remove by @nu12 in #15
  • Refactor build_path + fix by @nu12 in #16

Full Changelog: v0.21.0...v0.22.1

v0.22.0

25 Aug 21:12

Choose a tag to compare

Breaking change: the method delete was replaced by remove for the following classes: Config, Node, Secret and Service.

Full Changelog: v0.21.0...v0.22.0

v0.21.0

25 Aug 20:24

Choose a tag to compare

What's Changed

Full Changelog: v0.20.1...v0.21.0

v0.20.1

01 Aug 20:23

Choose a tag to compare

What's Changed

  • Specify Docker API version by @nu12 in #9
  • Allow excon 1.x and require base64 for modern rubies by @zarqman in #8
  • Fix socket address for tests by @nu12 in #11
  • Test refactoring by @nu12 in #12

Full Changelog: v0.20.0...v0.20.1

v0.20.0

12 Jul 17:51

Choose a tag to compare

What's Changed

  • Upgrade Docker API version to 1.43 by @nu12 in #7

Full Changelog: v0.19.0...v0.20.0

v0.19.0

05 Apr 20:01

Choose a tag to compare

Change official api version to 1.41.

v0.18.0

09 Dec 16:12

Choose a tag to compare

Method Docker::API::Image#distribution now accepts authentication parameters. Feature introduced in PR#3

Contributors: @zarqman

v0.17.0

29 Oct 17:14

Choose a tag to compare

New block execution introduced in PR#1.

Usage example:

=> image = Docker::API::Image.new

=> image.create(fromImage: "nginx:alpine") do | chunk, bytes_remaining, bytes_total | 
        p chunk.to_s 
    end

v0.16.0

11 Aug 14:36

Choose a tag to compare

Docker::API::Task#logs method can now receive a block to replace standard output to stdout behavior.

Add auth_encoder to provide standard implementation for the authentication header where needed.