Skip to content

Commit

Permalink
engine: implement review comments and fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
David Karlsson committed Jan 20, 2023
1 parent bd9641a commit 6508ef2
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion engine/release-notes/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ for Docker Engine.
- Added support for SwarmKit jobs in `docker stack deploy`. [docker/cli#2907](https://github.com/docker/cli/pull/2907)
- Added the `docker stack config` command to output the merged and interpolated config files as utilized by `stack deploy`. [docker/cli#3544](https://github.com/docker/cli/pull/3544)
- Added a new `docker context show` command that prints the name of the current context. [docker/cli#3567](https://github.com/docker/cli/pull/3567)
- Added a `--format=json` option to `docker inspect` and `docker list`. [docker/cli#2936](https://github.com/docker/cli/pull/2936)
- Added a `--format=json` option to `docker inspect` and `docker ls`. [docker/cli#2936](https://github.com/docker/cli/pull/2936)
- Added a `--quiet` option to `docker create` and `docker run` commands to suppress output when pulling an image. [docker/cli#3377](https://github.com/docker/cli/pull/3377)
- Added a `--force` option to `docker network rm` subcommand. Causes CLI to return a 0 exit code even if the network does not exist. Has no effect on the server-side procedure for removing a network. [docker/cli#3547](https://github.com/docker/cli/pull/3547)
- Added a `--signal` option to `docker stop` and `docker restart`. [docker/cli#3614](https://github.com/docker/cli/pull/3614)
Expand All @@ -58,22 +58,30 @@ for Docker Engine.
### Removed

- Removed support for reading configuration from `~/.dockercfg`. [docker/cli#2504](https://github.com/docker/cli/pull/2504)

This location has been deprecated since 1.7.0.

- Removed the `-g` and `--graph` daemon options in favor of `--data-root`. [docker/cli#3739](https://github.com/docker/cli/pull/3739)

These options have been hidden and deprecated since 17.05.

- Require explicit configuration to use deprecated storage drivers, and don't automatically select them when upgrading. [moby/moby#43378](https://github.com/moby/moby/pull/43378)
- Removed deprecated support for `overlay` and `overlay2` storage drivers on backing filesystems without `d_type` support. [moby/moby#43472](https://github.com/moby/moby/pull/43472)
- Removed the deprecated `overrideKernelCheck` option from the `overlay2` storage driver. [moby/moby#44279](https://github.com/moby/moby/pull/44279)
- Removed support for the deprecated `io.containerd.runtime.v1.linux` OCI runtime. [moby/moby#43695](https://github.com/moby/moby/pull/43695)
- Removed LCOW (Linux Containers on Windows). [moby/moby#42451](https://github.com/moby/moby/pull/42451), [moby/moby#42499](https://github.com/moby/moby/pull/42499), [moby/moby#42506](https://github.com/moby/moby/pull/42506), [moby/moby#42511](https://github.com/moby/moby/pull/42511), [moby/moby#42520](https://github.com/moby/moby/pull/42520), [moby/moby#42683](https://github.com/moby/moby/pull/42683), [moby/moby#42684](https://github.com/moby/moby/pull/42684), [moby/moby#42685](https://github.com/moby/moby/pull/42685), [moby/moby#43187](https://github.com/moby/moby/pull/43187)

LCOW was introduced as a technical preview in 17.09 and deprecated in 20.10.

- Removed daemon options related to legacy overlay networks, which were used with "standalone" Swarm.
- Removed `--cluster-xx` options from `dockerd`. [moby/moby#40383](https://github.com/moby/moby/issues/40383)
- Removed `host-discovery` and overlay networks with external k/v stores. [moby/moby#42247](https://github.com/moby/moby/pull/42247)
- Removed a deprecated `arm` platform fallback. `--platform linux/arm/vY` will now return a error when `arm/vY` is not available instead of pulling the wrong image. [moby/moby#44414](https://github.com/moby/moby/pull/44414)
- Removed the deprecated `SetCustomHTTPHeaders()`, `CustomHTTPHeaders()` options-setters from the Go client API. [moby/moby#42694](https://github.com/moby/moby/pull/42694)
- Removed the deprecated `WithDialer()` option-setter from the Go client API. [moby/moby#44022](https://github.com/moby/moby/pull/44022)

Users should use `WithDialContext()` instead.

- Removed the daemon implementation of `opts.QuotedString`, which was moved to CLI. [moby/moby#43250](https://github.com/moby/moby/pull/43250)
- Removed separate daemon ID from trust-key in the daemon, and disable generating the trust-key. [moby/moby#43555](https://github.com/moby/moby/pull/43555)
- API: Removed the deprecated `KernelMemory` option from `POST /containers/create` on API >= 1.42. [moby/moby#43214](https://github.com/moby/moby/pull/43214)
Expand Down

0 comments on commit 6508ef2

Please sign in to comment.