You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The CLI disabled experimental features by default, requiring users
to set a configuration option to enable them.
Disabling experimental features was a request from Enterprise users
that did not want experimental features to be accessible.
We are changing this policy, and now enable experimental features
by default. Experimental features may still change and/or removed,
and will be highlighted in the documentation and "usage" output.
For example, the `docker manifest inspect --help` output now shows:
EXPERIMENTAL:
docker manifest inspect is an experimental feature.
Experimental features provide early access to product functionality. These features
may change between releases without warning or can be removed entirely from a future
release. Learn more about experimental features: https://docs.docker.com/go/experimental/
Signed-off-by: Sebastiaan van Stijn <[email protected]>
{name: "invalid schemaversion", c: &fakeCandidate{path: goodPluginPath, exec: true, meta: `{"SchemaVersion": "xyzzy"}`}, invalid: `plugin SchemaVersion "xyzzy" is not valid`},
71
70
{name: "no vendor", c: &fakeCandidate{path: goodPluginPath, exec: true, meta: `{"SchemaVersion": "0.1.0"}`}, invalid: "plugin metadata does not define a vendor"},
72
71
{name: "empty vendor", c: &fakeCandidate{path: goodPluginPath, exec: true, meta: `{"SchemaVersion": "0.1.0", "Vendor": ""}`}, invalid: "plugin metadata does not define a vendor"},
Copy file name to clipboardExpand all lines: cli/command/system/version.go
+7-7
Original file line number
Diff line number
Diff line change
@@ -2,9 +2,9 @@ package system
2
2
3
3
import (
4
4
"context"
5
-
"fmt"
6
5
"runtime"
7
6
"sort"
7
+
"strconv"
8
8
"text/tabwriter"
9
9
"text/template"
10
10
"time"
@@ -83,7 +83,7 @@ type clientVersion struct {
83
83
Archstring
84
84
BuildTimestring`json:",omitempty"`
85
85
Contextstring
86
-
Experimentalbool
86
+
Experimentalbool`json:",omitempty"`// Deprecated: experimental CLI features always enabled. This field is kept for backward-compatibility, and is always "true"
0 commit comments