From 288abf0854852b4542da359400b3c29e99941fc9 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Sat, 30 Sep 2017 01:08:56 +0200 Subject: [PATCH] Bump API version to 1.34 Docker 17.10 was cut off from ab2b03a0e139537376bbf66c1e1e9e897a403f06 Signed-off-by: Sebastiaan van Stijn --- api/common.go | 2 +- api/swagger.yaml | 11 ++++++----- docs/api/version-history.md | 3 +++ 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/api/common.go b/api/common.go index c8919f1900..d0229e0389 100644 --- a/api/common.go +++ b/api/common.go @@ -3,7 +3,7 @@ package api // Common constants for daemon and client. const ( // DefaultVersion of Current REST API - DefaultVersion string = "1.33" + DefaultVersion string = "1.34" // NoBaseImageSpecifier is the symbol used by the FROM // command to specify that no base image is to be used. diff --git a/api/swagger.yaml b/api/swagger.yaml index afec91e72a..590b378451 100644 --- a/api/swagger.yaml +++ b/api/swagger.yaml @@ -19,10 +19,10 @@ produces: consumes: - "application/json" - "text/plain" -basePath: "/v1.33" +basePath: "/v1.34" info: title: "Docker Engine API" - version: "1.33" + version: "1.34" x-logo: url: "https://docs.docker.com/images/logo-docker-main.png" description: | @@ -44,7 +44,7 @@ info: The API is usually changed in each release of Docker, so API calls are versioned to ensure that clients don't break. - For Docker Engine 17.09, the API version is 1.32. To lock to this version, you prefix the URL with `/v1.32`. For example, calling `/info` is the same as calling `/v1.32/info`. + For Docker Engine 17.10, the API version is 1.33. To lock to this version, you prefix the URL with `/v1.33`. For example, calling `/info` is the same as calling `/v1.33/info`. Engine releases in the near future should support this version of the API, so your client will continue to work even if it is talking to a newer Engine. @@ -52,11 +52,12 @@ info: The API uses an open schema model, which means server may add extra properties to responses. Likewise, the server will ignore any extra query parameters and request body properties. When you write clients, you need to ignore additional properties in responses to ensure they do not break when talking to newer Docker daemons. - This documentation is for version 1.33 of the API. Use this table to find documentation for previous versions of the API: + This documentation is for version 1.34 of the API. Use this table to find documentation for previous versions of the API: Docker version | API version | Changes ----------------|-------------|--------- - 17.09.x | [1.31](https://docs.docker.com/engine/api/v1.32/) | [API changes](https://docs.docker.com/engine/api/version-history/#v1-32-api-changes) + 17.10.x | [1.33](https://docs.docker.com/engine/api/v1.33/) | [API changes](https://docs.docker.com/engine/api/version-history/#v1-33-api-changes) + 17.09.x | [1.32](https://docs.docker.com/engine/api/v1.32/) | [API changes](https://docs.docker.com/engine/api/version-history/#v1-32-api-changes) 17.07.x | [1.31](https://docs.docker.com/engine/api/v1.31/) | [API changes](https://docs.docker.com/engine/api/version-history/#v1-31-api-changes) 17.06.x | [1.30](https://docs.docker.com/engine/api/v1.30/) | [API changes](https://docs.docker.com/engine/api/version-history/#v1-30-api-changes) 17.05.x | [1.29](https://docs.docker.com/engine/api/v1.29/) | [API changes](https://docs.docker.com/engine/api/version-history/#v1-29-api-changes) diff --git a/docs/api/version-history.md b/docs/api/version-history.md index a8507ce465..d6d611f7e6 100644 --- a/docs/api/version-history.md +++ b/docs/api/version-history.md @@ -13,6 +13,9 @@ keywords: "API, Docker, rcli, REST, documentation" will be rejected. --> +## v1.34 API changes + +[Docker Engine API v1.34](https://docs.docker.com/engine/api/v1.34/) documentation ## v1.33 API changes