From 882a7a8ff52508b5184a37c56d568cc784cca8fc Mon Sep 17 00:00:00 2001 From: wojciechkepka Date: Thu, 11 Mar 2021 19:13:56 +0100 Subject: Update CHANGELOG Signed-off-by: Matthias Beyer --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d2877f..b575199 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ * add missing fields ([API version 1.41](https://docs.docker.com/engine/api/v1.41/#operation/ImageInspect)) to `ContainerConfig` [#264](https://github.com/softprops/shiplift/pull/264) * add missing fields ([API version 1.41](https://docs.docker.com/engine/api/v1.41/#operation/ImageHistory)) to `History` [#264](https://github.com/softprops/shiplift/pull/264) * add missing fields to `NetworkEntry` [#254](https://github.com/softprops/shiplift/pull/254) +* rename `Config` to `ContainerConfig` [#266](https://github.com/softprops/shiplift/pull/266) +* `HostConfig.port_bindings` inner elements now have a clear type `PortBinding` instead of `HashMap` [#266](https://github.com/softprops/shiplift/pull/266) +* `ContainerDetails` contains new fields [#266](https://github.com/softprops/shiplift/pull/266) +* Units of `ContainerInfo` `size_rw` and `size_root_fs` units changed to match API [#266](https://github.com/softprops/shiplift/pull/266) # 0.7.0 -- cgit v1.2.3 From 22e50f3be83d6863d7e27fcd8664f7b70d063ff8 Mon Sep 17 00:00:00 2001 From: wojciechkepka Date: Fri, 12 Mar 2021 03:19:34 +0100 Subject: Update CHANGELOG and README Signed-off-by: Matthias Beyer --- CHANGELOG.md | 1 + README.md | 4 ---- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b575199..bbca028 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ * add missing fields ([API version 1.41](https://docs.docker.com/engine/api/v1.41/#operation/ImageInspect)) to `ContainerConfig` [#264](https://github.com/softprops/shiplift/pull/264) * add missing fields ([API version 1.41](https://docs.docker.com/engine/api/v1.41/#operation/ImageHistory)) to `History` [#264](https://github.com/softprops/shiplift/pull/264) * add missing fields to `NetworkEntry` [#254](https://github.com/softprops/shiplift/pull/254) +* `Image::pull`, `Image::build` and `Image::import` now return a stream of `ImageBuildChunk` instead of `json::Value`[#262](https://github.com/softprops/shiplift/262) * rename `Config` to `ContainerConfig` [#266](https://github.com/softprops/shiplift/pull/266) * `HostConfig.port_bindings` inner elements now have a clear type `PortBinding` instead of `HashMap` [#266](https://github.com/softprops/shiplift/pull/266) * `ContainerDetails` contains new fields [#266](https://github.com/softprops/shiplift/pull/266) diff --git a/README.md b/README.md index 8b8ddfb..3fe3ca1 100644 --- a/README.md +++ b/README.md @@ -17,8 +17,4 @@ shiplift = "0.7" Many small runnable example programs can be found in this repository's [examples directory](https://github.com/softprops/shiplift/tree/master/examples). -## planned changes - -- give image pull chunked json a proper type - Doug Tangren (softprops) 2015-2018 -- cgit v1.2.3 From c6aeacb352e415b6e48a97cb397906a42561c2a3 Mon Sep 17 00:00:00 2001 From: wojciechkepka Date: Thu, 11 Mar 2021 19:23:32 +0100 Subject: Update CHANGELOG Signed-off-by: Matthias Beyer --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index bbca028..2898200 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ * add missing fields ([API version 1.41](https://docs.docker.com/engine/api/v1.41/#operation/ImageInspect)) to `ContainerConfig` [#264](https://github.com/softprops/shiplift/pull/264) * add missing fields ([API version 1.41](https://docs.docker.com/engine/api/v1.41/#operation/ImageHistory)) to `History` [#264](https://github.com/softprops/shiplift/pull/264) * add missing fields to `NetworkEntry` [#254](https://github.com/softprops/shiplift/pull/254) +* PullOptionsBuilder now adds a `latest` tag by default [#261](https://github.com/softprops/shiplift/pull/261) * `Image::pull`, `Image::build` and `Image::import` now return a stream of `ImageBuildChunk` instead of `json::Value`[#262](https://github.com/softprops/shiplift/262) * rename `Config` to `ContainerConfig` [#266](https://github.com/softprops/shiplift/pull/266) * `HostConfig.port_bindings` inner elements now have a clear type `PortBinding` instead of `HashMap` [#266](https://github.com/softprops/shiplift/pull/266) -- cgit v1.2.3