diff --git a/api/swagger.yaml b/api/swagger.yaml index 7962399b36..2e9f1a1e5a 100644 --- a/api/swagger.yaml +++ b/api/swagger.yaml @@ -2246,6 +2246,10 @@ definitions: password: type: "string" email: + description: | + Email is an optional value associated with the username. + + > **Deprecated**: This field is deprecated since docker 1.11 (API v1.23) and will be removed in a future release. type: "string" serveraddress: type: "string" diff --git a/api/types/registry/authconfig.go b/api/types/registry/authconfig.go index 56703705a2..f113ad469f 100644 --- a/api/types/registry/authconfig.go +++ b/api/types/registry/authconfig.go @@ -33,8 +33,8 @@ type AuthConfig struct { Auth string `json:"auth,omitempty"` // Email is an optional value associated with the username. - // This field is deprecated and will be removed in a later - // version of docker. + // + // Deprecated: This field is deprecated since docker 1.11 (API v1.23) and will be removed in the next release. Email string `json:"email,omitempty"` ServerAddress string `json:"serveraddress,omitempty"` diff --git a/vendor/github.com/moby/moby/api/swagger.yaml b/vendor/github.com/moby/moby/api/swagger.yaml index 7962399b36..2e9f1a1e5a 100644 --- a/vendor/github.com/moby/moby/api/swagger.yaml +++ b/vendor/github.com/moby/moby/api/swagger.yaml @@ -2246,6 +2246,10 @@ definitions: password: type: "string" email: + description: | + Email is an optional value associated with the username. + + > **Deprecated**: This field is deprecated since docker 1.11 (API v1.23) and will be removed in a future release. type: "string" serveraddress: type: "string" diff --git a/vendor/github.com/moby/moby/api/types/registry/authconfig.go b/vendor/github.com/moby/moby/api/types/registry/authconfig.go index 56703705a2..f113ad469f 100644 --- a/vendor/github.com/moby/moby/api/types/registry/authconfig.go +++ b/vendor/github.com/moby/moby/api/types/registry/authconfig.go @@ -33,8 +33,8 @@ type AuthConfig struct { Auth string `json:"auth,omitempty"` // Email is an optional value associated with the username. - // This field is deprecated and will be removed in a later - // version of docker. + // + // Deprecated: This field is deprecated since docker 1.11 (API v1.23) and will be removed in the next release. Email string `json:"email,omitempty"` ServerAddress string `json:"serveraddress,omitempty"`