From 5bcbedb7ee1dc883b061e216468356030dde8c6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Gronowski?= Date: Fri, 19 Jan 2024 14:42:19 +0100 Subject: [PATCH] API: bump version to 1.45 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Docker 25.0 was released with API v1.44, so any change in the API should now target v1.45. Signed-off-by: Paweł Gronowski --- api/common.go | 2 +- api/swagger.yaml | 8 ++++---- docs/api/version-history.md | 4 ++++ 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/api/common.go b/api/common.go index 37e553d418..866ad8f676 100644 --- a/api/common.go +++ b/api/common.go @@ -3,7 +3,7 @@ package api // import "github.com/docker/docker/api" // Common constants for daemon and client. const ( // DefaultVersion of Current REST API - DefaultVersion = "1.44" + DefaultVersion = "1.45" // 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 567939580b..90556d75ed 100644 --- a/api/swagger.yaml +++ b/api/swagger.yaml @@ -19,10 +19,10 @@ produces: consumes: - "application/json" - "text/plain" -basePath: "/v1.44" +basePath: "/v1.45" info: title: "Docker Engine API" - version: "1.44" + version: "1.45" x-logo: url: "https://docs.docker.com/assets/images/logo-docker-main.png" description: | @@ -55,8 +55,8 @@ info: the URL is not supported by the daemon, a HTTP `400 Bad Request` error message is returned. - If you omit the version-prefix, the current version of the API (v1.44) is used. - For example, calling `/info` is the same as calling `/v1.44/info`. Using the + If you omit the version-prefix, the current version of the API (v1.45) is used. + For example, calling `/info` is the same as calling `/v1.45/info`. Using the API without a version-prefix is deprecated and will be removed in a future release. Engine releases in the near future should support this version of the API, diff --git a/docs/api/version-history.md b/docs/api/version-history.md index 94c821d7e6..16fafdb7b4 100644 --- a/docs/api/version-history.md +++ b/docs/api/version-history.md @@ -13,6 +13,10 @@ keywords: "API, Docker, rcli, REST, documentation" will be rejected. --> +## v1.45 API changes + +[Docker Engine API v1.45](https://docs.docker.com/engine/api/v1.45/) documentation + ## v1.44 API changes [Docker Engine API v1.44](https://docs.docker.com/engine/api/v1.44/) documentation