From e8f156110ae7251a0da856a593247d040481cb0c Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Mon, 10 Nov 2025 18:11:45 +0100 Subject: [PATCH] api/types/plugin: remove deprecated Config.DockerVersion This was deprecated in c4fda95beaee750a21e2674f708fb39ad6810983, and already omitted. Signed-off-by: Sebastiaan van Stijn --- api/docs/v1.52.yaml | 10 ---------- api/swagger.yaml | 10 ---------- api/types/plugin/plugin.go | 7 ------- vendor/github.com/moby/moby/api/types/plugin/plugin.go | 7 ------- 4 files changed, 34 deletions(-) diff --git a/api/docs/v1.52.yaml b/api/docs/v1.52.yaml index 48cbaceebb..2377139fb5 100644 --- a/api/docs/v1.52.yaml +++ b/api/docs/v1.52.yaml @@ -3337,16 +3337,6 @@ definitions: - Env - Args properties: - DockerVersion: - description: |- - Docker Version used to create the plugin. - - Depending on how the plugin was created, this field may be empty or omitted. - - Deprecated: this field is no longer set, and will be removed in the next API version. - type: "string" - x-nullable: false - x-omitempty: true Description: type: "string" x-nullable: false diff --git a/api/swagger.yaml b/api/swagger.yaml index 48cbaceebb..2377139fb5 100644 --- a/api/swagger.yaml +++ b/api/swagger.yaml @@ -3337,16 +3337,6 @@ definitions: - Env - Args properties: - DockerVersion: - description: |- - Docker Version used to create the plugin. - - Depending on how the plugin was created, this field may be empty or omitted. - - Deprecated: this field is no longer set, and will be removed in the next API version. - type: "string" - x-nullable: false - x-omitempty: true Description: type: "string" x-nullable: false diff --git a/api/types/plugin/plugin.go b/api/types/plugin/plugin.go index e1adda6292..3305170d5e 100644 --- a/api/types/plugin/plugin.go +++ b/api/types/plugin/plugin.go @@ -51,13 +51,6 @@ type Config struct { // Required: true Description string `json:"Description"` - // Docker Version used to create the plugin. - // - // Depending on how the plugin was created, this field may be empty or omitted. - // - // Deprecated: this field is no longer set, and will be removed in the next API version. - DockerVersion string `json:"DockerVersion,omitempty"` - // documentation // Example: https://docs.docker.com/engine/extend/plugins/ // Required: true diff --git a/vendor/github.com/moby/moby/api/types/plugin/plugin.go b/vendor/github.com/moby/moby/api/types/plugin/plugin.go index e1adda6292..3305170d5e 100644 --- a/vendor/github.com/moby/moby/api/types/plugin/plugin.go +++ b/vendor/github.com/moby/moby/api/types/plugin/plugin.go @@ -51,13 +51,6 @@ type Config struct { // Required: true Description string `json:"Description"` - // Docker Version used to create the plugin. - // - // Depending on how the plugin was created, this field may be empty or omitted. - // - // Deprecated: this field is no longer set, and will be removed in the next API version. - DockerVersion string `json:"DockerVersion,omitempty"` - // documentation // Example: https://docs.docker.com/engine/extend/plugins/ // Required: true