8000 Release v1.3.0: containerd 1.3.0 · aiordache/containerd · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

v1.3.0

@dmcgowan dmcgowan tagged this 27 Sep 01:06
Welcome to the v1.3.0 release of containerd!

The fourth major release of containerd comes 11 months after the previous
major release and covers a period of both significant project growth and
further stabilization. Similar to previous releases, the number of API changes
are small and, as always, backwards compatible. The growing ecosystem of plugins
and users have driven improvements to make containerd more configurable, usable,
and pluggable. On Windows, this release brings a new runtime utilizing the shim
API. For clients, there are many new features and improvements completely
implemented in the client libraries without requiring daemon upgrade.

### Runtime
* **New Windows V2 runtime using shim API.** Adds support for the Windows runtime shims in containerd. *NOTE: while containerd's runtime is stable in this release, running Windows containers are not yet fully supported until the [runhcs shim](https://github.com/microsoft/hcsshim/tree/master/cmd/containerd-shim-runhcs-v1) is fully supported.*
* **Improvements to ttrpc.** For better daemon to shim communication (https://github.com/containerd/containerd/pull/3341)
* **Removed experimental Windows V1 runtime**
* **Update runc dependency** Updated runc for CVE-2019-16884

### Snapshots
* **New Devmapper snapshotter** (https://github.com/containerd/containerd/pull/3022)
* **Improved label support for plugins.** Allows snapshot plugins to use labels from clients for advanced use cases

### Plugins
* **Support for plugins registering as a TCP service**
* **Configurable plugin directory**
* **Add stream processor plugin.** Allow handling of custom media types during unpack (https://github.com/containerd/containerd/pull/3482)

### Client
* **Default handling from namespace labels.** Allows defaults to be configured per containerd namespace (https://github.com/containerd/containerd/pull/3403)
* **Improved Docker resolver with mirroring support**
* **Support for cross repository push** (https://github.com/containerd/containerd/pull/3218)

### API
* **Add support for direct resource management in leases** (https://github.com/containerd/containerd/pull/3304)
* **Add ttrpc service for shim event publishing**
* **Add annotations to descriptors in API**
* **Add id to TaskDelete event message to match exec id**
* **Add payload parameter to apply in diff service API**

### CRI
This version of containerd is validated against v1.16, but it is also compatible with Kubernetes v1.12+. (See [more details](https://github.com/containerd/cri#support-metrics) about support metrics)

#### Features
* **Supported per-pod containerd shim.** The `io.containerd.runc.v2` runtime is fully validated and ready to be used in production. This helps minimizing per-pod resource overhead. Note that `io.containerd.runtime.v1.linux` is still the default runtime. (https://github.com/containerd/cri/issues/1075)
* **Added file-based generic runtime config options.** This will be used by out-of-tree runtimes like gvisor and kata (https://github.com/containerd/cri/pull/1029), e.g.
```
[plugins.cri.containerd.runtimes.kata]
  runtime_type = "io.containerd.kata.v1"
[plugins.cri.containerd.runtimes.kata.options]
  TypeUrl = "io.containerd.kata.v1.options"
  ConfigPath = "/etc/kata/config.toml"
```
* **Added the `pod_annotations` runtime option.** Pod annotations specified in the list will be passed to the runtime as OCI annotations. This enables runtimes to support annotation-based experimental features. (https://github.com/containerd/cri/pull/1084)
* **Added `stream_idle_time` option.** This makes idle connection timeout of the streaming server configurable. (https://github.com/containerd/cri/issues/1057)
* **Added [traffic shaping pod annotations](https://kubernetes.io/docs/concepts/extend-kubernetes/compute-storage-net/network-plugins/#support-traffic-shaping) support.** *NOTE: traffic shaping is still an experimental feature in Kubernetes.* (https://github.com/containerd/cri/issues/1150)
* **Added `max_conf_num` option to `plugins.cri.cni`**. This makes it possible to setup multiple CNI networks in a pod. *NOTE: multi-network is not an officially supported feature in Kubernetes.*(https://github.com/containerd/cri/issues/1154)
* **Added `plugins.cri.registry.configs` option to support TLS and auth configs of registries.** (https://github.com/containerd/cri/issues/1143) *NOTE: Non-mutual TLS is also supported. (https://github.com/containerd/containerd/issues/3521)* (see [registry.md](https://github.com/containerd/cri/blob/f1d492b0cdd14e76476ee4dd024696ce3634e501/docs/registry.md) for more details)
* **Added tcp endpoint for CRI service.** The tcp service can be disabled with the `disable_tcp_service` option, and it is disabled by default. (https://github.com/containerd/cri/issues/1181)
* **Added `max_concurrent_downloads` option to restrict the number of concurrent downloads for each image.** The default concurrency is `3`. (https://github.com/containerd/cri/pull/1211)
* **Added `privileged_without_host_devices` runtime option to disable host devices for privileged pods for the runtime.** This is especially useful for runtimes like kata. (https://github.com/containerd/cri/issues/1213)
* **Supported IPv4/IPv6 dualstack.** See Kubernetes [dual-stack doc](https://kubernetes.io/docs/concepts/services-networking/dual-stack) for more information. To enable dual-stack, your CNI plugin needs to support it. If you are using the CNI config template, see [how to configure it to support dual-stack](https://github.com/containerd/cri/blob/release/1.3/docs/config.md#cni-config-template).

#### Enhancements
* Avoided `Status` lockup when CNI network setup/teardown is slow. (https://github.com/containerd/cri/issues/1078)
* Added CNI config in `Status` (`crictl info`) output. (https://github.com/containerd/cri/pull/1158)
* Supported URL path in `plugins.cri.registry.mirrors`, e.g. `https://my.custom.registry/anypath`. (https://github.com/containerd/cri/pull/1227)
* Added wildcard `*` support in `plugins.cri.registry.mirrors`. (https://github.com/containerd/cri/issues/1196)
* Removed an unnecessary round-trip to the image registry when pulling image. (https://github.com/containerd/cri/issues/1229)
* Updated cni library to v0.7.1 which has better context cancellation support. (https://github.com/containerd/cri/issues/1236)
* Updated cni plugins to v0.7.6 to fix a race condition in the `bridge` plugin. (https://github.com/containerd/containerd/issues/3507)

#### Deprecation
* `ctr cri load` command is deprecated, use `ctr -n=k8s.io images import` instead.(https://github.com/containerd/cri/issues/909)
* The `plugins.cri.containerd.default_runtime` option is deprecated, use `plugins."io.containerd.grpc.v1.cri".containerd.default_runtime_name` instead. (https://github.com/containerd/cri/issues/1076)
* Runtime options including `systemd_cgroups`, `runtime_engine` and `runtime_root` are deprecated, use runtime `options` instead. (https://github.com/containerd/cri/pull/1217)
* `runtimeHandler` field is moved from the sandbox `info` into `status`. (https://github.com/containerd/cri/pull/1063)
* `plugins.cri.registry.auths` is deprecated, use `plugins.cri.registry.configs` instead. (https://github.com/containerd/cri/pull/1227)

### Other
* **Support additional garbage collection labels.** Allows more advanced resource management use cases on the client
* **Fix garbage collection scheduling on reference removal.** Ensures removal of leases or containers triggers the next scheduled garbage collection

And many more improvements and bug fixes in the complete changelog

Please try out the release binaries and report any issues at
https://github.com/containerd/containerd/issues.

### Contributors

* Michael Crosby
* Lantao Liu
* Phil Estes
* Derek McGowan
* Sebastiaan van Stijn
* Justin Terry
* Wei Fu
* Maksym Pavlenko
* Mike Brown
* Akihiro Suda
* Ace-Tang
* John Howard
* Stefan Berger
* Kevin Parsons
* Evan Hazlett
* Lifubang
* zhoulin xie
* Li Yuxuan
* Gábor Lipták
* Brandon Lum
* Brian Goff
* Georgi Sabev
* Eric Hotinger
* Johannes M. Scheuermann
* Tõnis Tiigi
* zhangyue
* Aldo Culquicondor
* Guangming Wang
* Nikhil Soni
* Andrey Kolomentsev
* BoWen Yan
* Davor Kapsa
* Eric Lin
* Eric Ren
* Fahed Dorgaa
* Haiyan Meng
* Hui Zhu
* Nitesh Konkar
* Odin Ugedal
* Shengjing Zhu
* Shukui Yang
* Su Fei
* chentanjun
* yuxiaobo
* Benjamin Elder
* Carlos Eduardo
* Cedric Clerget
* Charles Kenney
* Daniel, Dao Quang Minh
* Edgar Lee
* Eli Uriegas
* Jack Baines
* Jared Cordasco
* Jintao Zhang
* Justin Cormack
* Kathryn Baldauf
* Mark Gordon
* Nishchay Kumar
* Peter Wagner
* Stephen J Day
* Tibor Vass
* Yu Yi
* kuramal
* lifupan
* zhenguang zhu
* Aleksa Sarai
* Alex Price
* Antonio Ojea
* Archana Shinde
* Ashley Sykes
* Avi Kivity
* Bingshen Wang
* Brent Baude
* Chris Mark
* Cong Liu
* Danni Xia
* Darren Shepherd
* Erik Sipsma
* Georgia Panoutsakopoulou
* Grant Seltzer Richman
* Haines Chan
* Harshal Patil
* Henrik Schmidt
* Iskander (Alex) Sharipov
* Jaime Caamaño Ruiz
* Jean Rouge
* Ji'an Liu
* Jie Zhang
* Jing Rui
* Joe Borg
* John Starks
* Julia Nedialkova
* Julien Balestra
* Kasper Fabæch Brandt
* Kenta Tada
* Konstantin Maksimov
* Lajos Papp
* Madhan Raj Mookkandy
* Mattias Appelgren
* Michael Katsoulis
* Michael Wan
* Niels de Vos
* Oliver Stenbom
* Peng Wang
* Sarang Joshi
* Shengjing Zhu
* Tim Allclair
* Tobias Klauser
* Veeraiah Chowdary Nuvvula
* Vlad Ungureanu
* Wei Zhang
* Yangyang
* Yikun Jiang
* Yuxing Liu
* caozhihao
* jiangpengfei
* wanghuaiqing
* zhongming chang

### Changes

* [`36cf5b690d`](https://github.com/containerd/containerd/commit/36cf5b690dcc00ff0f34ff7799209050c3d0c59a) Merge pull request  [#3689](https://github.com/containerd/containerd/pull/3689) from dmcgowan/release-1.3.0
* [`b172b7f9d7`](https://github.com/containerd/containerd/commit/b172b7f9d755b8f70da3f68dc9a6ceb2ebf5aeb3) Update release docs for 1.3.0
* [`a668365eca`](https://github.com/containerd/containerd/commit/a668365eca1ddcdc3046e04d8a6421f956ddefc7) Merge pull request  [#3696](https://github.com/containerd/containerd/pull/3696) from dmcgowan/fix-all-media-types
* [`524f81d06d`](https://github.com/containerd/containerd/commit/524f81d06d27e95e7d2a800a488e593d50f669f2) Merge pull request  [#3695](https://github.com/containerd/containerd/pull/3695) from Random-Liu/update-cri-release-1.3
* [`394db03f15`](https://github.com/containerd/containerd/commit/394db03f1531bfaa7018ecc470f29930aa30590f) Fix all media types in Accept header to match RFC
* [`90735a5d13`](https://github.com/containerd/containerd/commit/90735a5d13e32bb43af02b005d98c46c73fcf774) Update cri to 5d49e7e51b43e36a6b9c4386257c7d08c602237f.
* [`6624f622b2`](https://github.com/containerd/containerd/commit/6624f622b26a65d56cb10fde1cf325018b717ff0) Merge pull request  [#3692](https://github.com/containerd/containerd/pull/3692) from Random-Liu/cri-dependency-version
* [`1b1b862eb3`](https://github.com/containerd/containerd/commit/1b1b862eb33bbffde1fd04e169d4ca59a8c033ea) Get CRI dependency versions from containerd vendor.conf.
* [`277ab9ed6e`](https://github.com/containerd/containerd/commit/277ab9ed6e1ef8ca003eb6db54271d26a99aa87a) Merge pull request  [#3686](https://github.com/containerd/containerd/pull/3686) from thaJeztah/bump_golang_1.12.10
* [`35d3bae1e1`](https://github.com/containerd/containerd/commit/35d3bae1e16de3d4b24ec3770c7b982006923440) AppVeyor: bump golang 1.12.10 (CVE-2019-16276)
* [`2a467650e2`](https://github.com/containerd/containerd/commit/2a467650e254e98f6240acf3b28f0697fd540dae) Merge pull request  [#3684](https://github.com/containerd/containerd/pull/3684) from crosbymichael/bump-runc-cve
* [`95dbbdc8c1`](https://github.com/containerd/containerd/commit/95dbbdc8c1cb984adb5ff33fc219af3345eeed63) Bump runc for CVE-2019-16884
* [`4509efc303`](https://github.com/containerd/containerd/commit/4509efc303b17008598a68e507d6682ae8837d4b) Merge pull request  [#3683](https://github.com/containerd/containerd/pull/3683) from yuxiaobo96/containerd-update3
* [`62c2eea78d`](https://github.com/containerd/containerd/commit/62c2eea78d28e023d7497d5b80eca6924f4f8799) fix-up typo
* [`1c42610d98`](https://github.com/containerd/containerd/commit/1c42610d9897699c87b2d7ef41d1549e7a03fd34) Merge pull request  [#3680](https://github.com/containerd/containerd/pull/3680) from crosbymichael/btrfs-flake
* [`c5821baa41`](https://github.com/containerd/containerd/commit/c5821baa41c26f854084b572c51ebdeb91c72a6e) Sync and stat btrfs loopback in tests
* [`da66333271`](https://github.com/containerd/containerd/commit/da66333271f372204aed6b83c2ecf37fa7d9ae2c) Merge pull request  [#3677](https://github.com/containerd/containerd/pull/3677) from dmcgowan/gc-fix-notes
* [`c10e6a1029`](https://github.com/containerd/containerd/commit/c10e6a10292198f0d45c22f765378fb7dfbfcb05) Merge pull request  [#3679](https://github.com/containerd/containerd/pull/3679) from yuxiaobo96/containerd-update2
* [`4cd5de74bd`](https://github.com/containerd/containerd/commit/4cd5de74bd0ba0179a9fec15135c0d5170df5070) Merge pull request  [#3678](https://github.com/containerd/containerd/pull/3678) from yuxiaobo96/containerd-update
* [`5ea9363624`](https://github.com/containerd/containerd/commit/5ea936362474530d2043c20380dc0941c279cbad) Perfect documentation
* [`a0ae24b984`](https://github.com/containerd/containerd/commit/a0ae24b98494c2d855e7c8c5b899f363a3d2b181) Word spelling correction
* [`85eac2550f`](https://github.com/containerd/containerd/commit/85eac2550ff6a34a16f51ace05b103869565ada8) Add release note for gc fix
* [`aba201344e`](https://github.com/containerd/containerd/commit/aba201344ebf01acf2bfa12c4fcef56c342f59cb) Merge pull request  [#3675](https://github.com/containerd/containerd/pull/3675) from Random-Liu/update-cri-release-1.3
* [`9c10bf89ba`](https://github.com/containerd/containerd/commit/9c10bf89ba9a70aa554310e2b219d1bdb94c4c46) Merge pull request  [#3668](https://github.com/containerd/containerd/pull/3668) from dmcgowan/fix-metadata-dirty
* [`94c497984f`](https://github.com/containerd/containerd/commit/94c497984fd66140c1ff9bbab3619e838b20f209) Merge pull request  [#3673](https://github.com/containerd/containerd/pull/3673) from seemethere/mkdir_man
* [`cbbb6a2297`](https://github.com/containerd/containerd/commit/cbbb6a22975f98a5e20fa8ed6759eda317b4da80) Update release note.
* [`fc31fa176d`](https://github.com/containerd/containerd/commit/fc31fa176d9e010e539bf729e83d6cedfd6ba0e0) Update cri to 4ea022f82a55c449bf15bfc62ac8b0de968d81be.
*
8000
 [`51f8807d02`](https://github.com/containerd/containerd/commit/51f8807d02ef2f9db15e0f11b70c47b24942a977) Merge pull request  [#3672](https://github.com/containerd/containerd/pull/3672) from crosbymichael/kill-errors
* [`0b224ac7d6`](https://github.com/containerd/containerd/commit/0b224ac7d6d966260671d3c3b1360dbc2c6fca56) Update metadata interfaces for containers and leases
* [`2a636f8c34`](https://github.com/containerd/containerd/commit/2a636f8c34375e69e4e9c2b23bb89d50a3bdbdfd) gen-manpages: Create man directory if it does not exist
* [`0a21292225`](https://github.com/containerd/containerd/commit/0a21292225fab63cb16b04af4772b0ef5820cbd5) Check for more kill error types
* [`1af133f6c5`](https://github.com/containerd/containerd/commit/1af133f6c57316ba659c7d4a6a27f300a5924c5e) Merge pull request  [#3669](https://github.com/containerd/containerd/pull/3669) from crosbymichael/crun
* [`dd51228094`](https://github.com/containerd/containerd/commit/dd512280940f4bd5c4ee45e28086317d5ac80748) Don't search for state.json path
* [`ed16170c4c`](https://github.com/containerd/containerd/commit/ed16170c4c399c57f25d6aa1e97b345ed6ab96cb) Merge pull request  [#3666](https://github.com/containerd/containerd/pull/3666) from crosbymichael/metrics
* [`a0dafd9309`](https://github.com/containerd/containerd/commit/a0dafd9309e949200e921c5debef96aa5de8dfb0) Merge pull request  [#3649](https://github.com/containerd/containerd/pull/3649) from dmcgowan/generic-layer-support
* [`6f31417d49`](https://github.com/containerd/containerd/commit/6f31417d4980d34fd8042c0b91a904b5feeb5337) Generalize media types
* [`f3148d0b98`](https://github.com/containerd/containerd/commit/f3148d0b9814157f71e6c52b7506c4ab2b9338fd) Add metrics type alias
* [`d4802a64f9`](https://github.com/containerd/containerd/commit/d4802a64f9737f02db3426751f380d97fc878dec) Merge pull request  [#3665](https://github.com/containerd/containerd/pull/3665) from estesp/golangcideadline
* [`57b51b9481`](https://github.com/containerd/containerd/commit/57b51b94815aa2e592264eb69c2f98e3a6616adc) Move golangci-lint deadline to config file
* [`6fafc8a724`](https://github.com/containerd/containerd/commit/6fafc8a724ef6ab5f25e277a39587ac1393de12c) Merge pull request  [#3662](https://github.com/containerd/containerd/pull/3662) from cpuguy83/set_custom_scopes_for_authorizer
* [`a65aa5fe0e`](https://github.com/containerd/containerd/commit/a65aa5fe0e3605c16d40b7889cc18d421fa480d7) Merge pull request  [#3661](https://github.com/containerd/containerd/pull/3661) from cpuguy83/custom_keys_for_fetch_hander
* [`e84a84a5a9`](https://github.com/containerd/containerd/commit/e84a84a5a969b396c012c3942b0d7654851ee310) Add function to set custom auth scope in context
* [`bca374aa1b`](https://github.com/containerd/containerd/commit/bca374aa1b52d9b871b95796d485976313c56661) Get media type key from context
* [`324a94790d`](https://github.com/containerd/containerd/commit/324a94790d7c4d5757b89d002f7b528082fc6496) Merge pull request  [#3659](https://github.com/containerd/containerd/pull/3659) from katiewasnothere/shimreconnectupstream
* [`a7e67ff9aa`](https://github.com/containerd/containerd/commit/a7e67ff9aa2507f7d61011d1331ce71ed5c92c46) Merge pull request  [#3655](https://github.com/containerd/containerd/pull/3655) from crosbymichael/shmsize
* [`e4dc2f662b`](https://github.com/containerd/containerd/commit/e4dc2f662bffb92c765272a0d888f97fe4fd3729) Merge pull request  [#3660](https://github.com/containerd/containerd/pull/3660) from fuweid/me-golint
* [`20d3fae3db`](https://github.com/containerd/containerd/commit/20d3fae3dbc9aa07b1a18c7159f1a8df41347d75) Add Opt for modifying shm size
* [`c3452abae4`](https://github.com/containerd/containerd/commit/c3452abae4460f96ee93eb785e7e834a5bc5ada9) Merge pull request  [#3656](https://github.com/containerd/containerd/pull/3656) from crosbymichael/stress
* [`83a72858f8`](https://github.com/containerd/containerd/commit/83a72858f893169d9830dd6fbe63f05a8545e298) Makefile: increase deadline to 2m for golangci-lint
* [`b4211d94e2`](https://github.com/containerd/containerd/commit/b4211d94e250f4d25b9f51838cc1648666c33828) fail on file not found for shim reconnect on containerd restart
* [`fd6299be98`](https://github.com/containerd/containerd/commit/fd6299be9843ef684f66d1bcd3d5511ac1c8f847) Fix density spec generation
* [`87bff67128`](https://github.com/containerd/containerd/commit/87bff671284874893fbbd685d3ff54817cf28b2c) Merge pull request  [#3657](https://github.com/containerd/containerd/pull/3657) from crosbymichael/golint
* [`3bc99755d4`](https://github.com/containerd/containerd/commit/3bc99755d4a873569a475133e9b34977a6fc8b64) Try set GOGC for golint
* [`86442dfbb9`](https://github.com/containerd/containerd/commit/86442dfbb9c76d20031718d471c0d5b33c938ef3) Merge pull request  [#3653](https://github.com/containerd/containerd/pull/3653) from lalyos/fix-connect-timeout
* [`19ecd49ed0`](https://github.com/containerd/containerd/commit/19ecd49ed085b6c647fa2c69fbd1ec7dad27b8de) implement ctr -connect-timeout
* [`93391048bd`](https://github.com/containerd/containerd/commit/93391048bd2cc8dc4921071407bb88e7a8fdf30b) Merge pull request  [#3650](https://github.com/containerd/containerd/pull/3650) from dmcgowan/fix-vendor-issue
* [`c51895bde0`](https://github.com/containerd/containerd/commit/c51895bde06b1f67187c05b863340dcc5e5a6366) Merge pull request  [#3651](https://github.com/containerd/containerd/pull/3651) from dmcgowan/skip-darwin-deploy
* [`8ab81a0c2a`](https://github.com/containerd/containerd/commit/8ab81a0c2a00168b31360de774bb4e4eb47fe505) Merge pull request  [#3642](https://github.com/containerd/containerd/pull/3642) from dmcgowan/remove-duplicated-travis-tests
* [`58892a3ba5`](https://github.com/containerd/containerd/commit/58892a3ba5daa83009cd4220a45e47ee1b00122c) Skip darwin deploy
* [`5bb0281d16`](https://github.com/containerd/containerd/commit/5bb0281d1615cf84ad3ce7289590a360fd7020a3) Fix missing vendor packages
* [`9741f03932`](https://github.com/containerd/containerd/commit/9741f03932fbab48cb645dbef73526fe4f25a983) Merge pull request  [#3648](https://github.com/containerd/containerd/pull/3648) from crosbymichael/man-bin
* [`5a656cacb4`](https://github.com/containerd/containerd/commit/5a656cacb4cda97a738b898c7437ba6189471526) Move manpage gen to separate binary
* [`9c77ec3c73`](https://github.com/containerd/containerd/commit/9c77ec3c73ac387231de57992d98f9e7a456e024) Merge pull request  [#3644](https://github.com/containerd/containerd/pull/3644) from Random-Liu/finish-cri-release
* [`6ed809168e`](https://github.com/containerd/containerd/commit/6ed809168e580b5081dc7eb35114dc5adbb62fed) Publish cri release to gs://cri-containerd-release.
* [`1d484c28ea`](https://github.com/containerd/containerd/commit/1d484c28eac2e7d742d5fd5d8cd3611008a60c20) Merge pull request  [#3643](https://github.com/containerd/containerd/pull/3643) from Random-Liu/skip-cleanup
* [`f997c30ec6`](https://github.com/containerd/containerd/commit/f997c30ec6a30cb128b2e0856389e5dd3be0dccb) Skip cleanup in travis deploy and avoid gcs race condition.
* [`2d4dc24154`](https://github.com/containerd/containerd/commit/2d4dc241548caf5fc5eb9d60ccb7901c1917b76c) Merge pull request  [#3641](https://github.com/containerd/containerd/pull/3641) from Random-Liu/add-encrypted-key
* [`36c543a726`](https://github.com/containerd/containerd/commit/36c543a7267c0977cbaea667c51fae7dddf618d3) Remove extra CI testing on older Ubuntu
* [`d3ccbc66ed`](https://github.com/containerd/containerd/commit/d3ccbc66ed3021734a849e53827904faec4d031a) Merge pull request  [#3637](https://github.com/containerd/containerd/pull/3637) from crosbymichael/manpages
* [`4e8a49948c`](https://github.com/containerd/containerd/commit/4e8a49948c0a825d2ca79745c16cc44df1984aff) Encrypt the secret file in containerd/containerd.
* [`f3a5b8c0a9`](https://github.com/containerd/containerd/commit/f3a5b8c0a92564310b7ff27273a6d72844e42598) Add command to generate man pages
* [`d8ad1bdbb3`](https://github.com/containerd/containerd/commit/d8ad1bdbb331685ddd01cfc102b99e2467858e6b) Merge pull request  [#3638](https://github.com/containerd/containerd/pull/3638) from Random-Liu/upload-gcs-cri-release
* [`d1a12823b7`](https://github.com/containerd/containerd/commit/d1a12823b73c5a1eb7fc0ed697806e28388648bd) Update gcs cri release.
* [`65a6d0a82f`](https://github.com/containerd/containerd/commit/65a6d0a82f29c2716c31cbc2ae9ca96a1f6b7e0c) Merge pull request  [#3639](https://github.com/containerd/containerd/pull/3639) from crosbymichael/go-runc
* [`424d33c5b7`](https://github.com/containerd/containerd/commit/424d33c5b70d4f8ac430a23dc6f329688ef23521) Update go-runc to e029b79d8cda8374981c64eba71f28e
* [`9dccbaa6ec`](https://github.com/containerd/containerd/commit/9dccbaa6ec3b2ba46daf90ff0ee09695f61a8adf) Merge pull request  [#3636](https://github.com/containerd/containerd/pull/3636) from dmcgowan/fix-cri-darwin-release
* [`3db5a5ad2e`](https://github.com/containerd/containerd/commit/3db5a5ad2ed9a91c1d3ed615bc81cb513523b6d2) Fix darwin build for cri release
* [`5403e554e4`](https://github.com/containerd/containerd/commit/5403e554e4569a51e87f95a04c3cfc75f1483f82) Merge pull request  [#3635](https://github.com/containerd/containerd/pull/3635) from Random-Liu/update-cri-tools
* [`1b4cec9796`](https://github.com/containerd/containerd/commit/1b4cec9796e669e46d6e633e3e361fd00d448a74) Update cri test to fix image reference test and fix gcs deploy.
* [`ce8d63255c`](https://github.com/containerd/containerd/commit/ce8d63255c7f43c90f9a856870583cb0ada76ff2) Merge pull request  [#3634](https://github.com/containerd/containerd/pull/3634) from Random-Liu/fix-cri-release
* [`e3abd03ae1`](https://github.com/containerd/containerd/commit/e3abd03ae190bf11c11a035aafb139196c6f7794) Fix CRI release build.
* [`d4637128c3`](https://github.com/containerd/containerd/commit/d4637128c3b4d8251029ac948822ca22b55eaece) Merge pull request  [#3629](https://github.com/containerd/containerd/pull/3629) from Random-Liu/automate-cri-tarbal-release
* [`61f113e608`](https://github.com/containerd/containerd/commit/61f113e6081e5dbaf394216d5b3a2a55f8819661) Automate CRI tarball release.
* [`51671ef734`](https://github.com/containerd/containerd/commit/51671ef734ab94928385383018ac4b75b7fa3e85) Merge pull request  [#3630](https://github.com/containerd/containerd/pull/3630) from AkihiroSuda/ctr-newdockerauthorized
* [`c1fc21e92e`](https://github.com/containerd/containerd/commit/c1fc21e92e76e6bd501e136f6eaa157d60a10cad) ctr: use NewDockerAuthorizer instead of deprecated NewAuthorizer
* [`61b127f3e3`](https://github.com/containerd/containerd/commit/61b127f3e37bb134d9f470c9714055326cb4d52d) Merge pull request  [#3628](https://github.com/containerd/containerd/pull/3628) from crosbymichael/ctr-env
* [`fa11147e5f`](https://github.com/containerd/containerd/commit/fa11147e5fcd85c958151b29404ae07787380893) Add --env-file to ctr
* [`2ddfc6d2ed`](https://github.com/containerd/containerd/commit/2ddfc6d2edad78fc331b43ee14a50d27e1099b55) Merge pull request  [#3625](https://github.com/containerd/containerd/pull/3625) from dmcgowan/1.3-update-mailmap
* [`672b86acf8`](https://github.com/containerd/containerd/commit/672b86acf88710f881b81c74bb7334e813ea5ca8) Merge pull request  [#3624](https://github.com/containerd/containerd/pull/3624) from tklauser/platforms-update
* [`5c576b0269`](https://github.com/containerd/containerd/commit/5c576b026960fac507f210a585870588ac91d912) Update and simplify mailmap
* [`eaa24d6e40`](https://github.com/containerd/containerd/commit/eaa24d6e40cab95eda06b078f680693d5e025e16) Merge pull request  [#3621](https://github.com/containerd/containerd/pull/3621) from tanjunchen/modify-document-repeat-word
* [`77abec43c4`](https://github.com/containerd/containerd/commit/77abec43c44dbac3943f26a82521ba1fad6b84d9) Merge pull request  [#3623](https://github.com/containerd/containerd/pull/3623) from fuweid/me-sort-before-check
* [`c8cb864ce0`](https://github.com/containerd/containerd/commit/c8cb864ce026316e68a149be9fbcdb0c68afab9d) platforms: update known OS and arch values
* [`3d1fdacccf`](https://github.com/containerd/containerd/commit/3d1fdacccf503d5a084e6b1db1277c665817fb07) config_test: sort result before check
* [`8788af7f8d`](https://github.com/containerd/containerd/commit/8788af7f8d26aab8a2b6a083df74ea6c250218c9) modify-document-duplicate-word
* [`59a625defb`](https://github.com/containerd/containerd/commit/59a625defb21c958c25424fa5cc806167e22382e) Merge pull request  [#3609](https://github.com/containerd/containerd/pull/3609) from Random-Liu/add-image-with-platform
* [`d540b10c75`](https://github.com/containerd/containerd/commit/d540b10c751db7870eb763e745c934081470c646) Merge pull request  [#3607](https://github.com/containerd/containerd/pull/3607) from awesomenix/updatecri
* [`f76eefd272`](https://github.com/containerd/containerd/commit/f76eefd27244f26a287356ff32f089b340bf9078) Merge pull request  [#3574](https://github.com/containerd/containerd/pull/3574) from mxpv/cfg
* [`1eaf601453`](https://github.com/containerd/containerd/commit/1eaf6014532e9afc6d87a8cb42c78a560301784a) Merge pull request  [#3616](https://github.com/containerd/containerd/pull/3616) from Random-Liu/fix-unpack-on-windows
* [`3050b36640`](https://github.com/containerd/containerd/commit/3050b3664006ac2aa335f256f359b49dd80b464b) Merge pull request  [#3615](https://github.com/containerd/containerd/pull/3615) from dmcgowan/fix-proxy-plugin-config
* [`d6a6e0b8bc`](https://github.com/containerd/containerd/commit/d6a6e0b8bc858ea11d31561f2a88bff5622ffca0) Support foreign and encrypted layers in the unpacker.
* [`c7c7955757`](https://github.com/containerd/containerd/commit/c7c7955757e0473701857485a4bd43120a0c66fe) Merge pull request  [#3614](https://github.com/containerd/containerd/pull/3614) from thaJeztah/travis_bionic_take2
* [`a4482d9a6f`](https://github.com/containerd/containerd/commit/a4482d9a6f230091274d45afa0ea34d5cfe6c4d9) Fix proxy plugin config validation
* [`01f7265892`](https://github.com/containerd/containerd/commit/01f7265892f0bd7df1448275499ed6afb9160b66) Support v1 configurations for config dump
* [`cd79e0edfe`](https://github.com/containerd/containerd/commit/cd79e0edfe815875f33609e839caff2a4b914b55) travis: fix Xenial tests not being run on master
* [`48fb479e22`](https://github.com/containerd/containerd/commit/48fb479e22404bffce3fcfff46169aa43cf55ce3) Merge pull request  [#3606](https://github.com/containerd/containerd/pull/3606) from thaJeztah/bump_travis_bionic
* [`555cb31fd9`](https://github.com/containerd/containerd/commit/555cb31fd932d783f7a65dfe8706162856d97cd8) Support configurable default platform in the client.
* [`b039c39186`](https://github.com/containerd/containerd/commit/b039c3918668c651f1b4f61ca39488232f0d7b03) Merge pull request  [#3564](https://github.com/containerd/containerd/pull/3564) from tiborvass/move-cgroups-dep-to-namespaces-pkg
* [`f7bd7e309c`](https://github.com/containerd/containerd/commit/f7bd7e309cd91e0fa08f1a0168dff55f17d2eeb2) Merge pull request  [#3611](https://github.com/containerd/containerd/pull/3611) from Random-Liu/fix-panic-for-unknown-task
* [`24f7585ed8`](https://github.com/containerd/containerd/commit/24f7585ed83b788cc89a153b9e4b42c9174170ed) Merge pull request  [#3610](https://github.com/containerd/containerd/pull/3610) from Random-Liu/fix-containerd-panic
* [`c410f0eaef`](https://github.com/containerd/containerd/commit/c410f0eaef7eae2d73d51387bdf30834e9b72ec9) Fix potential panic for task in unknown state.
* [`dd24d76a13`](https://github.com/containerd/containerd/commit/dd24d76a1383333b316e340acfa8b62bd2621e63) Fix potential containerd panic during graceful shutdown.
* [`fa546dc3e8`](https://github.com/containerd/containerd/commit/fa546dc3e8b8c729f59f98eb525dd032985e1725) travis: don't run old Xenial LTS on pull requests
* [`94e4b68798`](https://github.com/containerd/containerd/commit/94e4b68798ad34ca9e9f8c91de1995b7554a9030) travis.yml: add TRAVIS_DISTRO env-var for easier identification
* [`214b8328d2`](https://github.com/containerd/containerd/commit/214b8328d21a855af67762ff3d35ff2abfd3b3ea) travis: add Bionic (Ubuntu 18.04 LTS) to test matrix
* [`95301fee3a`](https://github.com/containerd/containerd/commit/95301fee3a39ade71aff0df0dcbce0548d9a6798) Merge pull request  [#3567](https://github.com/containerd/containerd/pull/3567) from renzhengeek/renzhen/devmapper
* [`b6c811b7a4`](https://github.com/containerd/containerd/commit/b6c811b7a4b98655a70f1e3a604c43bc008ad643) Update cri to 0165d516161e25e52b4ab52a404a00823f8f0ef6
* [`db3a711738`](https://github.com/containerd/containerd/commit/db3a71173883bcfefe901eeea9fb1dcb30cd49a7) Add 'containerd config dump' subcommand
* [`4a75a63f4a`](https://github.com/containerd/containerd/commit/4a75a63f4a1949c913d0dad5502d5c532c82a1bf) Merge pull request  [#3600](https://github.com/containerd/containerd/pull/3600) from crosbymichael/sigprocmask
* [`779701b29c`](https://github.com/containerd/containerd/commit/779701b29c8ed180903de17ab1a1c52a1cdadfe0) Add --seccomp flag to ctr
* [`5a3f3e329e`](https://github.com/containerd/containerd/commit/5a3f3e329e9d4e01b8456404db652d64d455305c) Merge pull request  [#3598](https://github.com/containerd/containerd/pull/3598) from AllenZMC/patch-1
* [`a4bbf8e4e6`](https://github.com/containerd/containerd/commit/a4bbf8e4e6f1d2312bbbe5f19f74afbcb2fecfb0) Merge pull request  [#3599](https://github.com/containerd/containerd/pull/3599) from estesp/images-with-no-env
* [`86f8be86e1`](https://github.com/containerd/containerd/commit/86f8be86e181767a8c6926942c1e498bbcb4ebd8) Add sigprocmask to default profile
* [`f4927a2985`](https://github.com/containerd/containerd/commit/f4927a2985da06e3050008b6bb9f4837020f3e71) fix mis-spelling in nvidia.go
* [`bc692cc59d`](https://github.com/containerd/containerd/commit/bc692cc59dd6f9d475e92e2bf17742fce38ca0a3) Use default UNIX env when image has no environment
* [`36911af3cc`](https://github.com/containerd/containerd/commit/36911af3cc9af7e77bec1c597897674f5a91b9cc) Merge pull request  [#3595](https://github.com/containerd/containerd/pull/3595) from AkihiroSuda/zfs-20190829
* [`a292bf0f24`](https://github.com/containerd/containerd/commit/a292bf0f248da4d2e2fef062ab24100e317fd383) bump containerd/zfs 2ceb2dbb8154202ed1b8fd32e4ea25b491d7b251
* [`985bba61ff`](https://github.com/containerd/containerd/commit/985bba61ff46c5a24f4a5345f6d1da8c63568bad) Merge pull request  [#3589](https://github.com/containerd/containerd/pull/3589) from tonistiigi/truncate-time
* [`a1579eeb11`](https://github.com/containerd/containerd/commit/a1579eeb110e74f4f1bf10a51ec4080868a3f459) Merge pull request  [#3592](https://github.com/containerd/containerd/pull/3592) from crosbymichael/ttrpc-status
* [`97962976a4`](https://github.com/containerd/containerd/commit/97962976a4cd8a292a4340ad73fcccedf1f8b39f) Update ttrpc to 92c8520ef9f86600c650dd540266a00
* [`0293cbd26c`](https://github.com/containerd/containerd/commit/0293cbd26c692b34e87eba122953183e73c0ed09) Merge pull request  [#3588](https://github.com/containerd/containerd/pull/3588) from katiewasnothere/exposeEventPublisher
* [`d177ffd309`](https://github.com/containerd/containerd/commit/d177ffd309ba9a424db6d155c85992f1105638a5) Merge pull request  [#3590](https://github.com/containerd/containerd/pull/3590) from tanjunchen/fix-grammar-mistake
* [`92a5b08a68`](https://github.com/containerd/containerd/commit/92a5b08a68b9986e73976147ef26d01bd14fb97d) fix-grammar-mistake
* [`372472b5f6`](https://github.com/containerd/containerd/commit/372472b5f648bccb7c3045ccd5921b0082fd87bb) archive: truncate modification time
* [`2d8a65b1b2`](https://github.com/containerd/containerd/commit/2d8a65b1b244bba558fd0fe6bca0c80564cc4dad) Export shim publisher functions
* [`6624a70d92`](https://github.com/containerd/containerd/commit/6624a70d92781deff967c224b1f458b99a57bbe6) runtime/opts: move WithNamespaceCgroupDeletion from containerd to its own package
* [`309617819b`](https://github.com/containerd/containerd/commit/309617819bbd614fd120e750017893dd1f737d88) Merge pull request  [#3582](https://github.com/containerd/containerd/pull/3582) from fuweid/me-cleanup-issue-CreateDiff
* [`cbfff2fb78`](https://github.com/containerd/containerd/commit/cbfff2fb789ae8b6f2233a13fe123a1a2cd53e21) Merge pull request  [#3585](https://github.com/containerd/containerd/pull/3585) from tanjunchen/fix-up-spelling-mistake
* [`32ceb628c2`](https://github.com/containerd/containerd/commit/32ceb628c25367c76db92433fc9e7c4194f09986) Merge pull request  [#3581](https://github.com/containerd/containerd/pull/3581) from thaJeztah/bump_grpc
* [`8266a3c5e7`](https://github.com/containerd/containerd/commit/8266a3c5e7d7150fa323975e72f8adff0b52c11e) fix-up spelling mistake
* [`09b184c15a`](https://github.com/containerd/containerd/commit/09b184c15a2f2a4688330ffaa9bc5b4d0c54e848) rootfs: use new ctx to cleanup instead of canceled one
* [`2f54a7cb6b`](https://github.com/containerd/containerd/commit/2f54a7cb6b95b2cf7e86994d8ac382c1a932db5b) bump containerd/ttrpc 9abb3e268010ea188f4e4051f77eb5aca49315fb
* [`eb7a6bf02c`](https://github.com/containerd/containerd/commit/eb7a6bf02c00e398cfe5b8d7a069edd80e7fc993) bump google.golang.org/grpc v1.23.0
* [`d618c80077`](https://github.com/containerd/containerd/commit/d618c80077fe1c6de430199b5697a69c341b21fc) Merge pull request  [#3584](https://github.com/containerd/containerd/pull/3584) from ehazlett/with-image-name
* [`cde03a0a2b`](https://github.com/containerd/containerd/commit/cde03a0a2b2043a4283607aaed281d7634da3ae3) Merge pull request  [#3583](https://github.com/containerd/containerd/pull/3583) from Random-Liu/handle-duplicated-layer
* [`df84e546b5`](https://github.com/containerd/containerd/commit/df84e546b5f79ab6691039518a1751e661b22090) Merge pull request  [#3577](https://github.com/containerd/containerd/pull/3577) from dmcgowan/change-default-manifest-download
* [`56bcc77679`](https://github.com/containerd/containerd/commit/56bcc776791b1e1cbb6eb3379613c830a0a1a2ee) Handle layers with the same digest in unpacker.
* [`6f8fb9ee5d`](https://github.com/containerd/containerd/commit/6f8fb9ee5de686af0f001fffa74c7c1343601c33) add WithImageName container opt
* [`a40c3830df`](https://github.com/containerd/containerd/commit/a40c3830df92f63995ae0622b4d4116dfc6cf0de) Add option to pull all metadata
* [`dfd76b3484`](https://github.com/containerd/containerd/commit/dfd76b3484dd55b434faebfd44da1ffc2b1bb3c0) Merge pull request  [#3579](https://github.com/containerd/containerd/pull/3579) from thaJeztah/bump_hashicorp_deps
* [`3ad49a208b`](https://github.com/containerd/containerd/commit/3ad49a208b5a09a1eea7dea5a1daff439b19acc5) Merge pull request  [#3578](https://github.com/containerd/containerd/pull/3578) from sofat1989/containerd-stress
* [`55f737bd32`](https://github.com/containerd/containerd/commit/55f737bd322fcdfbe7e1eba335ad75d26c364e68) bump hashicorp/golang-lru v0.5.3
* [`ed1df65c25`](https://github.com/containerd/containerd/commit/ed1df65c250321d94b3e07d556f3536cef5b97be) bump hashicorp/go-multierror v1.0.0
* [`cbb3a3790e`](https://github.com/containerd/containerd/commit/cbb3a3790efb138a11e5cb7c6a80ec2599354697) bump hashicorp/errwrap v1.0.0
* [`5cab0d3f3f`](https://github.com/containerd/containerd/commit/5cab0d3f3f0afcc06bb63dcf9eb9540afb22d8de) update the max if cur will be greater than max for setting the limit
* [`24b9e2c1a0`](https://github.com/containerd/containerd/commit/24b9e2c1a0a72a7ad302cdce7da3abbc4e6295cb) Merge configs section by section
* [`8ebffecbc3`](https://github.com/containerd/containerd/commit/8ebffecbc32e555945feca249e3464f8198a7968) Use map for stream processors
* [`aae2d0d754`](https://github.com/containerd/containerd/commit/aae2d0d754a75ad523cb27e8f386b2cd2cc7b1ed) delete unnecessary checks and fix a test
* [`9e183f5e52`](https://github.com/containerd/containerd/commit/9e183f5e52a3c636bd0689ac8dea9dd59a869b8b) add cli option to download all manifests
* [`4a2f61c4f2`](https://github.com/containerd/containerd/commit/4a2f61c4f2b43b0c6e6636e48de89b1cb4860408) Merge pull request  [#2918](https://github.com/containerd/containerd/pull/2918) from Random-Liu/parellel-unpack
* [`ea6c749e35`](https://github.com/containerd/containerd/commit/ea6c749e3536d0bb745a4902954d0caf115af4ba) Update config doc
* [`19cd0a4f12`](https://github.com/containerd/containerd/commit/19cd0a4f1212dbb283c6201b06ba06affb61bd60) Append slices when importing config files
* [`a1f4ffb211`](https://github.com/containerd/containerd/commit/a1f4ffb2117cd3649994856c66e11f9d2439d3fd) Merge pull request  [#3575](https://github.com/containerd/containerd/pull/3575) from crosbymichael/seccom2.3
* [`b5f03eacd3`](https://github.com/containerd/containerd/commit/b5f03eacd34c7beffe5c8cc2a5cfee852335f681) Pin to libseccomp 2.3.3
* [`4d11bb36ad`](https://github.com/containerd/containerd/commit/4d11bb36ad4d5aad00e150916b8280ff3010e0a9) devmapper: activate dm device if snap device marked as activated
* [`bca0857530`](https://github.com/containerd/containerd/commit/bca0857530d1ead52d03595b1558bfe98112d187) Fix toml plugin decoding
* [`a1e3779cad`](https://github.com/containerd/containerd/commit/a1e3779cad30e491e6327af760af6f0ba27579c5) Support config imports #3289
* [`6e2228df72`](https://github.com/containerd/containerd/commit/6e2228df72e205120ee36733de7e38f7cf1e9eb8) Vendor github.com/imdario/mergo
* [`80ed8e1a64`](https://github.com/containerd/containerd/commit/80ed8e1a646a0beee80184f647e9a68b6efa359a) Merge pull request  [#3573](https://github.com/containerd/containerd/pull/3573) from crosbymichael/ttrpc-env
* [`6cf031e1e4`](https://github.com/containerd/containerd/commit/6cf031e1e45beb5cfad91152de100ef43332337e) Pass ttrpc address to shim via env
* [`1be6ee5396`](https://github.com/containerd/containerd/commit/1be6ee53968740f74fa75f75079f6f8cdcef2657) Merge pull request  [#3555](https://github.com/containerd/containerd/pull/3555) from kevpar/ttrpc-address
* [`8333d98c2b`](https://github.com/containerd/containerd/commit/8333d98c2b8d3303ae91b36ce2ec5d5284cc8d87) Merge pull request  [#3571](https://github.com/containerd/containerd/pull/3571) from ethan-daocloud/typo-terminator
* [`e963290458`](https://github.com/containerd/containerd/commit/e96329045858c44f27e3d632ef164fd9430e0167) Merge pull request  [#3562](https://github.com/containerd/containerd/pull/3562) from dmcgowan/update-release-1.3
* [`89eae6429f`](https://github.com/containerd/containerd/commit/89eae6429f5e4a2e2e6cdf65f82357fb27779e61) Cleanup: fix some typos in code comment
* [`d7e1b25384`](https://github.com/containerd/containerd/commit/d7e1b25384faa69ce861674a5d4e2c1359810c8e) Allow explicit configuration of TTRPC address
* [`03aafaa1cf`](https://github.com/containerd/containerd/commit/03aafaa1cff235050f116bc228e63ea783f0b4ba) Update the integration test.
* [`60f73b6cf1`](https://github.com/containerd/containerd/commit/60f73b6cf1a8868efe1123ba00e56b83e21e2e42) Support simultaneous image unpack.
* [`bd46ea5191`](https://github.com/containerd/containerd/commit/bd46ea519173cc28445da9b2a031b6139e18eb05) Merge pull request  [#3570](https://github.com/containerd/containerd/pull/3570) from dmcgowan/fix-apply-trailing-data
* [`550518ab84`](https://github.com/containerd/containerd/commit/550518ab84ec406abe519d9131ec263e1edf3bfb) Read trailing data on apply
* [`348e9f7c35`](https://github.com/containerd/containerd/commit/348e9f7c351568d987f77f120ccda1a94ca4d59a) Update release notes and mailmap
* [`4924bcb5fe`](https://github.com/containerd/containerd/commit/4924bcb5fe78622d9176969c58f6d4c91ef658e9) Merge pull request  [#3530](https://github.com/containerd/containerd/pull/3530) from jterry75/revenor_hcsshim
* [`8580926066`](https://github.com/containerd/containerd/commit/8580926066357d85b97c43b945c4801016bef796) Merge pull request  [#3563](https://github.com/containerd/containerd/pull/3563) from Random-Liu/update-release-note
* [`8acf5a142a`](https://github.com/containerd/containerd/commit/8acf5a142a8c2d946f98758b9d4cdb42524f58ae) Update release note for CRI plugin for 1.3.
* [`041e9debb1`](https://github.com/containerd/containerd/commit/041e9debb11b8ae2dc964c25e2c1d31454aa59f1) Revendor github.com/Microsoft/hcsshim
* [`640860a042`](https://github.com/containerd/containerd/commit/640860a042b93c26c0a33081ee02230def486f81) Merge pull request  [#3559](https://github.com/containerd/containerd/pull/3559) from fuweid/avoid-read-config
* [`cd76c4120e`](https://github.com/containerd/containerd/commit/cd76c4120ec2d8ec9eb42b0fa2dfd508359bee64) Merge pull request  [#3560](https://github.com/containerd/containerd/pull/3560) from keloyang/buffersize-32
* [`21174cb497`](https://github.com/containerd/containerd/commit/21174cb497a83747596073e64aefd0dd631f15a0) Change bufferSize back to 32
* [`08061c7c3c`](https://github.com/containerd/containerd/commit/08061c7c3cd095e4d35fc7999c21dc7bad8a9623) Merge pull request  [#3540](https://github.com/containerd/containerd/pull/3540) from crosbymichael/shim-hang
* [`1073868e5e`](https://github.com/containerd/containerd/commit/1073868e5e7cd5a4ba1abae0655892f0e114d5be) runtime: only check killall for init process
* [`c6da899e2f`](https://github.com/containerd/containerd/commit/c6da899e2fd5ec5f0863d4be5ff683ee785d155c) Merge pull request  [#3551](https://github.com/containerd/containerd/pull/3551) from crosbymichael/default-env
* [`c537c8968c`](https://github.com/containerd/containerd/commit/c537c8968c5b068be6beb733e5072de9988a754e) Merge pull request  [#3550](https://github.com/containerd/containerd/pull/3550) from kevpar/remove-eventlog
* [`64a0b2eb26`](https://github.com/containerd/containerd/commit/64a0b2eb26102cc8bf5a19553f071240c87ac30b) Revendor to remove unused dependencies
* [`7379fa6631`](https://github.com/containerd/containerd/commit/7379fa6631181a43dc307997850ca701d6443761) Remove the process default ENV
* [`5023d96ad2`](https://github.com/containerd/containerd/commit/5023d96ad2d1cd948ca87a78cba5478656945f08) Remove Windows EventLog logging hook
* [`fc9335d75c`](https://github.com/containerd/containerd/commit/fc9335d75c4bf77185f75914e1d8e89786222f43) Merge pull request  [#3459](https://github.com/containerd/containerd/pull/3459) from crosbymichael/timeout-config
* [`6cb56bb605`](https://github.com/containerd/containerd/commit/6cb56bb605e6ab0434d7a52f28cb8590458294ca) Merge pull request  [#3536](https://github.com/containerd/containerd/pull/3536) from darfux/ignore_closed_fifo_error_under_multi_cntr
* [`0ab7f03fee`](https://github.com/containerd/containerd/commit/0ab7f03feecaa9fc51b63dbb634e74d04d68176f) Merge pull request  [#3528](https://github.com/containerd/containerd/pull/3528) from dmcgowan/overlay-direct-unpack
* [`2763639388`](https://github.com/containerd/containerd/commit/27636393884fda7e69bf7ce7c0516a5eb5bcda14) Try to preserve exit event order
* [`eac100ac97`](https://github.com/containerd/containerd/commit/eac100ac978171e1e79798f827eb6fa6be79cbcf) Merge pull request  [#3548](https://github.com/containerd/containerd/pull/3548) from Random-Liu/update-cri
* [`04caf1fc4e`](https://github.com/containerd/containerd/commit/04caf1fc4e1bed887ca4fa4fd6e6da443057010e) Ignore fifo error when using v2 multi-container shim
* [`9cbd18ac76`](https://github.com/containerd/containerd/commit/9cbd18ac76ace9d8fa3b61268e56d18f237af2be) Update cri to f1d492b0cdd14e76476ee4dd024696ce3634e501.
* [`bcc4a146e4`](https://github.com/containerd/containerd/commit/bcc4a146e4c13e5525a0fcc1ad32ebda383a832b) Support applying with parent directories
* [`5a0ff41c81`](https://github.com/containerd/containerd/commit/5a0ff41c81f4562b8a3dcffc80be6426530c2bb8) Update continuity vendor
* [`c62b7444ef`](https://github.com/containerd/containerd/commit/c62b7444efcb0a0a75a02e8064fc4472b7e0b4f0) Merge pull request  [#3545](https://github.com/containerd/containerd/pull/3545) from estesp/update-fifo
* [`80d31d15ba`](https://github.com/containerd/containerd/commit/80d31d15babcfb921a96417f6e86ab5796fffded) Update fifo for typed errors
* [`666cfe11cb`](https://github.com/containerd/containerd/commit/666cfe11cb3811c71946b77e7437a918caea5347) Merge pull request  [#3547](https://github.com/containerd/containerd/pull/3547) from ethan-daocloud/patch-3
* [`6d0e355c6d`](https://github.com/containerd/containerd/commit/6d0e355c6d08f2317c02ee039976afc260b950a8) cleanup code typos in leases.go
* [`60439aeb17`](https://github.com/containerd/containerd/commit/60439aeb17810e79b47408e4e16daef24ce23128) Merge pull request  [#3542](https://github.com/containerd/containerd/pull/3542) from 1032120121/upstream_master
* [`bee4c1a8a2`](https://github.com/containerd/containerd/commit/bee4c1a8a287e2469aed2968141199aba1304912) Add retry and non-blocking send for exit events
* [`0d27d8f4f2`](https://github.com/containerd/containerd/commit/0d27d8
8000
f4f22909616f433134142c6b85a3e27cb9) Unifi reaper logic into package
* [`bb4c92c773`](https://github.com/containerd/containerd/commit/bb4c92c773e195b86af92d5db26db6ca67164d7c) Fix shim hung
* [`e07359b761`](https://github.com/containerd/containerd/commit/e07359b761c921f18331d217b13da224ca0c04e8) Merge pull request  [#3541](https://github.com/containerd/containerd/pull/3541) from tao12345666333/bump-go-1.12.9
* [`1c30d4d04c`](https://github.com/containerd/containerd/commit/1c30d4d04cbd324e5f1c0b9e60cd53bc50e7a2b2) bugfix: override image.Env with process.Env, rather than be contrary
* [`7682acb9e7`](https://github.com/containerd/containerd/commit/7682acb9e7c97a1d8d2b0a56f61801dbfe1a1518) AppVeyor: update to go 1.12.9
* [`81386df917`](https://github.com/containerd/containerd/commit/81386df91707d955cfd215f78f47f0eb87a67d0f) Add direct unpack support for overlay and aufs
* [`074b75907b`](https://github.com/containerd/containerd/commit/074b75907b1f6a753b26d24de93b3eeddb5d0d22) Merge pull request  [#3531](https://github.com/containerd/containerd/pull/3531) from thaJeztah/bump_golang_1.12.8
* [`1b389b3628`](https://github.com/containerd/containerd/commit/1b389b362833e158405985a67d3ea6476c08ff18) AppVeyor: update to go 1.12.8 (CVE-2019-9512, CVE-2019-9514)
* [`2e8ea9fd6b`](https://github.com/containerd/containerd/commit/2e8ea9fd6b04f4b11ba0ea95756ddcb1fb510bf6) Allow timeouts to be configured in config
* [`b77e25dade`](https://github.com/containerd/containerd/commit/b77e25dadee8dfa580e5024b6801cc628e14fab8) Merge pull request  [#3516](https://github.com/containerd/containerd/pull/3516) from crosbymichael/remote-enc
* [`95277fa447`](https://github.com/containerd/containerd/commit/95277fa447f9584ea84d0c623c78d4c1ae9c2e10) Merge pull request  [#3524](https://github.com/containerd/containerd/pull/3524) from ethan-daocloud/patch-2
* [`a80db38c33`](https://github.com/containerd/containerd/commit/a80db38c330f0c0191d86bd535379b217e857d7f) blkio.go: correct help message word spells.
* [`ec0c968215`](https://github.com/containerd/containerd/commit/ec0c9682156e2bba4937d7cf55f4b79699ea8291) Merge pull request  [#3520](https://github.com/containerd/containerd/pull/3520) from dmcgowan/image-usage
* [`f6504149e5`](https://github.com/containerd/containerd/commit/f6504149e5dada1086e30ad84594e842c63623fc) Merge pull request  [#3519](https://github.com/containerd/containerd/pull/3519) from thaJeztah/bump_boltdb
* [`cdc58b7976`](https://github.com/containerd/containerd/commit/cdc58b79762b4a672b831fedde83984367f04b44) Merge pull request  [#3526](https://github.com/containerd/containerd/pull/3526) from carlosedp/riscv64
* [`e64ce76b13`](https://github.com/containerd/containerd/commit/e64ce76b130663d18220a042e570f4d61a42fce2) Merge pull request  [#3523](https://github.com/containerd/containerd/pull/3523) from thaJeztah/bump_golang
* [`3ef26cd87c`](https://github.com/containerd/containerd/commit/3ef26cd87c73ec62c9dda1c17800416fc2323e8d) bump x/sys to fix riscv64 epoll
* [`2ff7183cc2`](https://github.com/containerd/containerd/commit/2ff7183cc24bb1501490c65756b385d2395776fa) AppVeyor: update to go 1.12.7
* [`c017e0efed`](https://github.com/containerd/containerd/commit/c017e0efed645b93cb3f6749f65212a45e104994) Use a child context for errgroup in dispatch
* [`75771c4634`](https://github.com/containerd/containerd/commit/75771c4634892c1dc79b9d2856e11c51a017dd47) Add usage function to client
* [`b6fca48fed`](https://github.com/containerd/containerd/commit/b6fca48fede03c636fb24cceeaed58f7a3145e50) bump go.etcd.io/bbolt v1.3.3
* [`ea13c9fe99`](https://github.com/containerd/containerd/commit/ea13c9fe9941b0714630aa614ef5a0038c0083a3) Merge pull request  [#3518](https://github.com/containerd/containerd/pull/3518) from crosbymichael/processors
* [`0dadef19cf`](https://github.com/containerd/containerd/commit/0dadef19cfe53379ed384b70b9689c7f67c5ecd3) Add docs for stream processors
* [`d085d9b464`](https://github.com/containerd/containerd/commit/d085d9b464b663b4e7a4713cefeec5ab4cae6116) Remove encryption code from containerd core
* [`f06e605f1a`](https://github.com/containerd/containerd/commit/f06e605f1aef6150b5b4d4556e5b84eeb758fb51) Merge pull request  [#3515](https://github.com/containerd/containerd/pull/3515) from fuweid/me-remove-comment-line
* [`ec4ad5332d`](https://github.com/containerd/containerd/commit/ec4ad5332d725062e73761a2e43c59a64e1667f9) Merge pull request  [#3506](https://github.com/containerd/containerd/pull/3506) from darfux/copy_md_when_set_ttrpcheader
* [`c0cf9a5905`](https://github.com/containerd/containerd/commit/c0cf9a5905ed734cd30d915b6b4fbb9603aeb067) Merge pull request  [#3509](https://github.com/containerd/containerd/pull/3509) from dmcgowan/update-1.3-beta-notes
* [`282b19efd2`](https://github.com/containerd/containerd/commit/282b19efd264f96119d50757ca398b00dd6bd609) remotes: remove useless line
* [`a3a30635ef`](https://github.com/containerd/containerd/commit/a3a30635ef713b544ea7feff0d12a768fd1ed636) namespace: Copy ttrpc metadata before setting header
* [`a1c88e195a`](https://github.com/containerd/containerd/commit/a1c88e195aa98e5fcd9bf42294caf0bbf7a543ae) Merge pull request  [#3484](https://github.com/containerd/containerd/pull/3484) from rancher/master
* [`b4dce14ac0`](https://github.com/containerd/containerd/commit/b4dce14ac074466f8e2bb2c33acacfc5c946f651) Merge pull request  [#3510](https://github.com/containerd/containerd/pull/3510) from dmcgowan/remove-ppc64le
* [`04b7f1b594`](https://github.com/containerd/containerd/commit/04b7f1b5946af5020f148ffa889d3aaded3475cc) Remove ppc64le from travis
* [`2fac3ee27d`](https://github.com/containerd/containerd/commit/2fac3ee27df24b9195ddd4a1d2b4669021452f69) Add release notes for stream processor
* [`1161409779`](https://github.com/containerd/containerd/commit/1161409779f0275f5e65a697d587ff893f9f9188) Limit multiple platform manifests to one for size check
* [`23faecfb66`](https://github.com/containerd/containerd/commit/23faecfb66ab553a9aa553d45c91ac7ef118ccdc) Merge pull request  [#3505](https://github.com/containerd/containerd/pull/3505) from crosbymichael/remoteopts-unpack
* [`fe3638e887`](https://github.com/containerd/containerd/commit/fe3638e887c25125631773961d8af35a2ae0fba9) Add UnpackOpts to RemoteContext
* [`1eb13fc2f0`](https://github.com/containerd/containerd/commit/1eb13fc2f008b069ea9cefb72f1ebdc0346dd6a1) Merge pull request  [#3501](https://github.com/containerd/containerd/pull/3501) from wanghuaiqing2010/master
* [`d8322e38c7`](https://github.com/containerd/containerd/commit/d8322e38c7b80c85ca1e61dbbe638983b4a443cf) cast Rdev of Stat_t to uint64 for mips
* [`5222236c1b`](https://github.com/containerd/containerd/commit/5222236c1b57d055362dbc413d042ab56427270a) Merge pull request  [#3502](https://github.com/containerd/containerd/pull/3502) from estesp/clarify-ctr
* [`4e6e61c44e`](https://github.com/containerd/containerd/commit/4e6e61c44e83ba1f69aa37ea603a9f23383821fb) Merge pull request  [#3482](https://github.com/containerd/containerd/pull/3482) from crosbymichael/apply-remote
* [`930da7cfa7`](https://github.com/containerd/containerd/commit/930da7cfa77e56309c139a38ca527d3855e02873) Merge pull request  [#3503](https://github.com/containerd/containerd/pull/3503) from Random-Liu/default-ns
* [`af7b7cdb02`](https://github.com/containerd/containerd/commit/af7b7cdb022d42d5063f13dd9f49ec9d027a07e6) Save default namespace in the client.
* [`552a0b1be5`](https://github.com/containerd/containerd/commit/552a0b1be5e196c3d468ab6509bf9b849328b625) Handle stderr in stream processors
* [`3fded74bc7`](https://github.com/containerd/containerd/commit/3fded74bc73a7824af1388400940207207902273) Add unpack opts
* [`26b90619e2`](https://github.com/containerd/containerd/commit/26b90619e2de608d433351c65578180932ffda9c) Pass apply opts through rootfs/* code
* [`e1489f93c3`](https://github.com/containerd/containerd/commit/e1489f93c3629fc68811d30a1dc3ddf6cb951d0d) Use named pipes for windows processors
* [`134d3c8159`](https://github.com/containerd/containerd/commit/134d3c81597ccfae2d03d52f0772d06fd09a86c1) Add windows apply code
* [`f867401c69`](https://github.com/containerd/containerd/commit/f867401c69d40f75ada6e3f1101cb5f2310792d0) Use fds and pass Payloads over diff api
* [`366823727f`](https://github.com/containerd/containerd/commit/366823727f38fe412d5143de5cdbf27f2986cf27) Add server config for stream processors
* [`97a98773cf`](https://github.com/containerd/containerd/commit/97a98773cf0bdb489744ce22997e77a8b47b77fb) Add StreamProcessor for apply
* [`0bc5df0354`](https://github.com/containerd/containerd/commit/0bc5df0354aea5fb9c734e1bb788a166293b8077) Clarify text on `ctr` support/inclusion
* [`2ff1ef4f6c`](https://github.com/containerd/containerd/commit/2ff1ef4f6cc5e7e8ee25fccfc8e09a4fee3f013d) Merge pull request  [#3499](https://github.com/containerd/containerd/pull/3499) from dmcgowan/update-beta-release-notes
* [`4507cd1e04`](https://github.com/containerd/containerd/commit/4507cd1e0463e23ac3464d947dbca704fd80fc3e) Merge pull request  [#3500](https://github.com/containerd/containerd/pull/3500) from jterry75/revendor_go-winio
* [`d0f4cf0bde`](https://github.com/containerd/containerd/commit/d0f4cf0bdeac33064706dbda8b783595c1df7420) Merge pull request  [#3497](https://github.com/containerd/containerd/pull/3497) from ethan-daocloud/patch-1
* [`0a3769eec6`](https://github.com/containerd/containerd/commit/0a3769eec6666382e87fef066122ebe1b35dfe05) pusher.go: error message typo correction
* [`635ccc0671`](https://github.com/containerd/containerd/commit/635ccc06714aa3efe713b5638b34d67e836f2d13) Add cri release notes
* [`4667ee47a5`](https://github.com/containerd/containerd/commit/4667ee47a580566c18494f7a11dc3532277f4fc3) Update Microsoft/go-winio v0.4.14
* [`03d934adc4`](https://github.com/containerd/containerd/commit/03d934adc4fb41763364b643e03399fdfcdcb20b) Merge pull request  [#3474](https://github.com/containerd/containerd/pull/3474) from crosbymichael/uuid
* [`13c6dcdea1`](https://github.com/containerd/containerd/commit/13c6dcdea17d9b2505ff4416fdf7649f534d7f6a) Merge pull request  [#3498](https://github.com/containerd/containerd/pull/3498) from dmcgowan/limit-ppc64le
* [`7792c23b14`](https://github.com/containerd/containerd/commit/7792c23b149b177e72459ea29549aa54c321e132) Limit default matrix to runc v2 runtime
* [`225cc7d5bd`](https://github.com/containerd/containerd/commit/225cc7d5bddad3ab547fcd4dc1677f53735c26bb) Merge pull request  [#3494](https://github.com/containerd/containerd/pull/3494) from jterry75/remove_v2
* [`7fddefc493`](https://github.com/containerd/containerd/commit/7fddefc4938f9a2ae25d5dd36ce5909da8462386) Merge pull request  [#3496](https://github.com/containerd/containerd/pull/3496) from darfux/v2_close_ttrpc_when_delete
* [`28bdb71cc9`](https://github.com/containerd/containerd/commit/28bdb71cc96d1a542c2f6fcb1c54461d472be3ac) Merge pull request  [#3492](https://github.com/containerd/containerd/pull/3492) from Random-Liu/update-cri
* [`9f0bc2b53f`](https://github.com/containerd/containerd/commit/9f0bc2b53f3413def50c273334ed90a4e17aae21) Add UUID and server info to introspection
* [`dce8541387`](https://github.com/containerd/containerd/commit/dce8541387a5e8e6fefe3f921c40b4ee1a9ac50e) Merge pull request  [#3493](https://github.com/containerd/containerd/pull/3493) from dmcgowan/fix-travis-matrix
* [`08483d18ad`](https://github.com/containerd/containerd/commit/08483d18adea186c75463305d4040d218e5d68d4) v2: Close ttrpc connection when `Delete()`
* [`4b5dfaee13`](https://github.com/containerd/containerd/commit/4b5dfaee1324c6f809acc0b4cf7199aaf1796c1e) Completely remove Windows v2 in-tree shim
* [`2398421d50`](https://github.com/containerd/containerd/commit/2398421d50978b653398f3ead57ec243fb0ff665) Fix travis matrix
* [`a5940da62c`](https://github.com/containerd/containerd/commit/a5940da62c3468411168b71e69faaedeb721fb34) Remove `ctr cri load` and update cri-tools to v1.15.0
* [`29e56c5625`](https://github.com/containerd/containerd/commit/29e56c5625c1bcd3b1a675f8897324470dd41b83) Merge pull request  [#3489](https://github.com/containerd/containerd/pull/3489) from mxpv/faulty
* [`24e3848050`](https://github.com/containerd/containerd/commit/24e384805081c2ccae9f7493ab96119df4bd4f81) Merge pull request  [#3272](https://github.com/containerd/containerd/pull/3272) from nitkon/patch-2
* [`0a4bf1bd1e`](https://github.com/containerd/containerd/commit/0a4bf1bd1e8e3c21f15372ead7b6bdd0d7785806) Mark faulty devices
* [`c99961c6c0`](https://github.com/containerd/containerd/commit/c99961c6c0cf13f2b4e42f5858589bc05931b4b8) Update cri to b213648c5bd0a1d2ee42709c10dff63fbfee3ad7
* [`cb46663725`](https://github.com/containerd/containerd/commit/cb46663725f1f1b1550f6b01ba08847d2bec47fd) Merge pull request  [#3470](https://github.com/containerd/containerd/pull/3470) from mxpv/devmapper_err
* [`b05a2b26ff`](https://github.com/containerd/containerd/commit/b05a2b26ff05d2cd99ecda1041d3e98e11874729) Merge pull request  [#3486](https://github.com/containerd/containerd/pull/3486) from tao12345666333/rm-unnecessary-str-fmt
* [`ca2463a719`](https://github.com/containerd/containerd/commit/ca2463a7196a992935e5365eacbff1e9e5a0d44f) Merge pull request  [#3485](https://github.com/containerd/containerd/pull/3485) from Random-Liu/fix-containerd-on-windows
* [`4b4ce4a26c`](https://github.com/containerd/containerd/commit/4b4ce4a26ccab6b8a03f771ba922ca54fe51409d) remotes: remove unnecessary string formatting
* [`d1b9ee543c`](https://github.com/containerd/containerd/commit/d1b9ee543cd73b1c208829b771853ecd9d838cc7) travis: Enable travis CI for ppc64le arch
* [`bb99688914`](https://github.com/containerd/containerd/commit/bb9968891449193c8a074b1a97fe0e850092612d) Fix containerd on windows.
* [`f0821348b4`](https://github.com/containerd/containerd/commit/f0821348b4a8ad494eae63441d67ee144fd06314) Merge pull request  [#3475](https://github.com/containerd/containerd/pull/3475) from stefanberger/gpg2-passphrase-via-file
* [`d3e539af79`](https://github.com/containerd/containerd/commit/d3e539af799057ccd832c44e5bf333c1a506c558) Merge pull request  [#3480](https://github.com/containerd/containerd/pull/3480) from dmcgowan/fix-export-named-manifest-opt
* [`69d65c9764`](https://github.com/containerd/containerd/commit/69d65c9764e196ea3d5e186fb93bcad72f497cec) Merge pull request  [#3476](https://github.com/containerd/containerd/pull/3476) from dmcgowan/fix-push-exist-check
* [`ac1cb6d5d4`](https://github.com/containerd/containerd/commit/ac1cb6d5d497e38ace14235682133326e48ddd6e) Merge pull request  [#3467](https://github.com/containerd/containerd/pull/3467) from kevpar/dial-pipe-err
* [`adad947b77`](https://github.com/containerd/containerd/commit/adad947b77cc5d749fd79a10293b185b24d1b032) Merge pull request  [#3460](https://github.com/containerd/containerd/pull/3460) from lumjjb/ctrrecipients
* [`3e52e29025`](https://github.com/containerd/containerd/commit/3e52e290259c463152e0c8dac0de2f76f491d270) Fix bug in export named manifest option
* [`594f423190`](https://github.com/containerd/containerd/commit/594f423190d29a61dc81eb171213ff863dfa8473) protobuf: Bump Protobuf version to 3.7.0
* [`c965a6c4da`](https://github.com/containerd/containerd/commit/c965a6c4da0b1724122fdc2967f29ad1a90aeafd) Prevent push by tag for sub-manifests
* [`053853fe3f`](https://github.com/containerd/containerd/commit/053853fe3ffc6af80165a3249a76a82c27a81cdb) Merge pull request  [#3465](https://github.com/containerd/containerd/pull/3465) from dmcgowan/beta-1.3
* [`5cf79913e4`](https://github.com/containerd/containerd/commit/5cf79913e4c3192459277a2ca85b42a156b46b76) gpg: Use a Pipe() rather than a file
* [`6a25128791`](https://github.com/containerd/containerd/commit/6a251287916a8b5a18a54b24bdcff2174574d8f6) gpg: Pass the passphrase to the gpg2 tool using a file
* [`3741fd8591`](https://github.com/containerd/containerd/commit/3741fd859116ae519059b43d674666945c84a638) Remove deferred flag when removing devmapper device
* [`b16e7c5de1`](https://github.com/containerd/containerd/commit/b16e7c5de14bace532273752cd6c94c954267b1e) Update pkg/ttrpcutil with improved pipe dial logic
* [`a49df98ee9`](https://github.com/containerd/containerd/commit/a49df98ee9a1dd08be844c037820d302d069b835) Merge pull request  [#3468](https://github.com/containerd/containerd/pull/3468) from crosbymichael/custom-cgroup
* [`daf12cd194`](https://github.com/containerd/containerd/commit/daf12cd1944942b2f56273e826867961317ac133) Improve error return from AnonDialer on Windows
* [`4d5a0e19eb`](https://github.com/containerd/containerd/commit/4d5a0e19ebe1fd57a4c2fc1f6b36249060bd8b4a) Mark faulty device in one transaction
* [`e04f9599ae`](https://github.com/containerd/containerd/commit/e04f9599aeb84557b12e44adb0140fcd93e645f3) Merge pull request  [#3469](https://github.com/containerd/containerd/pull/3469) from crosbymichael/pb.txt
* [`878a3205cd`](https://github.com/containerd/containerd/commit/878a3205cdfedf616f0db82381d6841ffdb9461c) Better error recovery in devmapper
* [`578216950d`](https://github.com/containerd/containerd/commit/578216950de9c1c188708369e2a31ac6c494dfee) Add note about pb.txt files
* [`f68186e107`](https://github.com/containerd/containerd/commit/f68186e1070fbf30030688f3cb86ccdbf5dff806) Improve custom cgroup test
* [`4195136eea`](https://github.com/containerd/containerd/commit/4195136eea0ee4f6d507bf23f1396bca74f9807d) Merge pull request  [#3433](https://github.com/containerd/containerd/pull/3433) from dmcgowan/gc-docs
* [`8a6190856b`](https://github.com/containerd/containerd/commit/8a6190856bb84c4e340527c2404b1123791bab13) Add 1.3 beta release note
* [`172fe90e55`](https://github.com/containerd/containerd/commit/172fe90e55c3c3a452f9bec926d87ffda5ed01bf) Merge pull request  [#3447](https://github.com/containerd/containerd/pull/3447) from mxpv/update
* [`d099058086`](https://github.com/containerd/containerd/commit/d099058086bcf47419c17940ce04c0fba48e58ed) Merge pull request  [#3463](https://github.com/containerd/containerd/pull/3463) from dzzg/patch-2
* [`fbca688971`](https://github.com/containerd/containerd/commit/fbca68897199a960732ca5f3a4b343ee9322d1de) Merge pull request  [#3449](https://github.com/containerd/containerd/pull/3449) from YLonely/container-delete-bug
* [`612628c2f9`](https://github.com/containerd/containerd/commit/612628c2f9b8e04828f306d5bbf156570e2e79eb) fix wrong spells in compression.go
* [`98ead46d1a`](https://github.com/containerd/containerd/commit/98ead46d1a9ee6b5c7e855c7561e07dab23b70f3) Call Update of snapshotter plugin
* [`eabb536b1f`](https://github.com/containerd/containerd/commit/eabb536b1f376a259e3450a9d8f6fc7e6a18367e) Merge pull request  [#3462](https://github.com/containerd/containerd/pull/3462) from crosbymichael/ctr-hang
* [`e00ebfbf06`](https://github.com/containerd/containerd/commit/e00ebfbf06dbbf6a2c3550140ee337b77d539451) Merge pull request  [#3461](https://github.com/containerd/containerd/pull/3461) from crosbymichael/pid-fastpath
* [`f543f2fbcd`](https://github.com/containerd/containerd/commit/f543f2fbcd1eb7f7bcb0994b80da490736cd0aab) Call CloseIO when stdin closes in ctr
* [`eb4b3e8772`](https://github.com/containerd/containerd/commit/eb4b3e8772d1aed68a574160a2f8f88ac7526e6f) Fast path getting pid from task
* [`8cd480c233`](https://github.com/containerd/containerd/commit/8cd480c2336afb801bc2ce9e529ef61736c053c3) Specify protocols in ctr encrypt recipients
* [`e3cc9c20cb`](https://github.com/containerd/containerd/commit/e3cc9c20cb63e0dc35f35c273556216f57d699c9) bug fix:#3448
* [`ab78270e03`](https://github.com/containerd/containerd/commit/ab78270e03d8e3c854ddbef66d8b77ccd893661e) Merge pull request  [#3456](https://github.com/containerd/containerd/pull/3456) from dzzg/patch-1
* [`c27e48d666`](https://github.com/containerd/containerd/commit/c27e48d666764937bcea75adf3581c7fada471ed) fix mis-spelling in client.go
* [`22f44c44d9`](https://github.com/containerd/containerd/commit/22f44c44d90bf59ffeb0549abe3754d1c95e608d) Add garbage collection doc
* [`29930e9185`](https://github.com/containerd/containerd/commit/29930e918597c91a353669dd606c4b079b2a09e1) Merge pull request  [#3455](https://github.com/containerd/containerd/pull/3455) from dmcgowan/fix-default-import-compression
* [`02826345cf`](https://github.com/containerd/containerd/commit/02826345cf466abaf7f969f82d7f35fe7dcd30f2) Add option to compress blobs on import
* [`7ff23438f6`](https://github.com/containerd/containerd/commit/7ff23438f64cfa62651ee9beea83f4dddfcf5a1e) Merge pull request  [#3452](https://github.com/containerd/containerd/pull/3452) from lumjjb/keybundles
* [`2190c0e5f7`](https://github.com/containerd/containerd/commit/2190c0e5f7ed21b77a3a4dd91f3598ea5c18028a) Merge pull request  [#3450](https://github.com/containerd/containerd/pull/3450) from kevpar/windows-alloc-console
* [`15b59f9684`](https://github.com/containerd/containerd/commit/15b59f9684e364103de667cd674e02412955c7a2) Merge pull request  [#3441](https://github.com/containerd/containerd/pull/3441) from YLonely/multiple-task-delete
* [`41e172352c`](https://github.com/containerd/containerd/commit/41e172352c41b6ff9e3503241d1bb17bfbcc28a0) Merge pull request  [#3444](https://github.com/containerd/containerd/pull/3444) from crosbymichael/state-timeout
* [`577872fda5`](https://github.com/containerd/containerd/commit/577872fda5b40c32c2f9023b6bff583941d97288) Merge pull request  [#3454](https://github.com/containerd/containerd/pull/3454) from fuweid/enrich-error-message
* [`9da7d30362`](https://github.com/containerd/containerd/commit/9da7d303624251446770a2c405e53cb7e9c034f0) archive: return chtimes error with path information
* [`3d1fa69694`](https://github.com/containerd/containerd/commit/3d1fa6969489061c03bd31b7c218b9d4e39fdeb4) Implemented constructors for both encryption and decryption
* [`392668d007`](https://github.com/containerd/containerd/commit/392668d0071fe80ee643766af5b6b2839b222063) ctr:Support deleting multiple tasks at a time
* [`05a2b63e84`](https://github.com/containerd/containerd/commit/05a2b63e842e13444b2ec63b1694120544add4e4) Create CryptoConfig constructors in place of dcparameters
* [`1c7eab1979`](https://github.com/containerd/containerd/commit/1c7eab197999328e9fe6e9f20c273852fac7efb8) Allocate a conhost during Windows service startup
* [`fdab4f4789`](https://github.com/containerd/containerd/commit/fdab4f4789e2a7a0fa1f8c17a3cffc906505b547) Merge pull request  [#3446](https://github.com/containerd/containerd/pull/3446) from stefanberger/cleanup
* [`a4e2ea5c99`](https://github.com/containerd/containerd/commit/a4e2ea5c996f66f1037bd5f19082f00ff68a8c56) Merge pull request  [#3439](https://github.com/containerd/containerd/pull/3439) from crosbymichael/rm-windows
* [`6c912315db`](https://github.com/containerd/containerd/commit/6c912315db5babcb9dbf89b57d82dce173876446) Merge pull request  [#3445](https://github.com/containerd/containerd/pull/3445) from dmcgowan/fixup-releases
* [`364de4c35d`](https://github.com/containerd/containerd/commit/364de4c35df0e937204d3903f5d2b7b2bc574ca2) Wrap creation of CryptoConfig in constructors
* [`51bc615338`](https://github.com/containerd/containerd/commit/51bc6153381827c82b442d3a6c7a4d7714c02661) Update releases doc for 1.1 release
* [`101d4b78eb`](https://github.com/containerd/containerd/commit/101d4b78eb7fc0ef2be6dea1cfe2e5cf277df622) Add timeout to task state calls
* [`e097ab8bb4`](https://github.com/containerd/containerd/commit/e097ab8bb47cd57d13b7baa52a3cb35376fb9345) Disable windows integration tests
* [`f055bdb0aa`](https://github.com/containerd/containerd/commit/f055bdb0aa2521e62dd284f50685b002a8127c7a) Remove windows v1 runtime
* [`f7761411b8`](https://github.com/containerd/containerd/commit/f7761411b8735d8605378e71f1ad16b759326c1b) Merge pull request  [#3424](https://github.com/containerd/containerd/pull/3424) from crosbymichael/devices
* [`49fdb9e1b4`](https://github.com/containerd/containerd/commit/49fdb9e1b49c476bbe21a3d2255db1e739bd327e) Merge pull request  [#3430](https://github.com/containerd/containerd/pull/3430) from lumjjb/encgcfix
* [`d531e78499`](https://github.com/containerd/containerd/commit/d531e784995802b105d8b69d2c64f551c9c34cd4) Modified image_enc_test to use a different image from other tests
* [`e14cc99e23`](https://github.com/containerd/containerd/commit/e14cc99e236109487a05cb5993d88fc325c1e837) Merge pull request  [#3438](https://github.com/containerd/containerd/pull/3438) from darfux/test_check_manifest_platform_nil
* [`5e5ae23d80`](https://github.com/containerd/containerd/commit/5e5ae23d802c1a676de0a0c2e16701ef802e4de7) test: Check manifest.Platform before dereferencing
* [`f58fda97ec`](https://github.com/containerd/containerd/commit/f58fda97ec84c80e12c04636287639f153a797f0) Merge pull request  [#3432](https://github.com/containerd/containerd/pull/3432) from crosbymichael/stress-size
* [`1945e26ac3`](https://github.com/containerd/containerd/commit/1945e26ac30c972bdb0253c40b5d17ab7b533cde) Add concurrent execs in stress tests
* [`ffa86b25f9`](https://github.com/containerd/containerd/commit/ffa86b25f962f65b6dfd7697050b5d9e0b81fdbe) Add new shims for checking binary sizes
* [`4005979c93`](https://github.com/containerd/containerd/commit/4005979c9360b4ccd5c4126311eaf0ec52370202) Merge pull request  [#3415](https://github.com/containerd/containerd/pull/3415) from dmcgowan/gc-flat-lease
* [`c118c45f89`](https://github.com/containerd/containerd/commit/c118c45f89d912c22f6784047eda65209ed9df5b) Change image_enc_test so that it more reliably delete images
* [`c6d437fd70`](https://github.com/containerd/containerd/commit/c6d437fd70c54d34ef87da117ded797c21420b2d) Corrected lease implementation
* [`c00517a94c`](https://github.com/containerd/containerd/commit/c00517a94c80c0e5540097d4068c850f46888038) Made fixes and optimizations to encryption GC
* [`5631fe3b32`](https://github.com/containerd/containerd/commit/5631fe3b32e004b7c43fc267e1a08165e1289e8c) Merge pull request  [#3431](https://github.com/containerd/containerd/pull/3431) from dmcgowan/fix-nil-body
* [`725d3ad8cb`](https://github.com/containerd/containerd/commit/725d3ad8cb91f273cf53d2f9546a7ffd5dd6d00a) Add --device flag to ctr
* [`518be1cb07`](https://github.com/containerd/containerd/commit/518be1cb070551e5cd8e69f9cea33f7abd5cfdca) Fix bug in setting request body
* [`dd0a45dfe0`](https://github.com/containerd/containerd/commit/dd0a45dfe05d2d3fde956d2396ba31b9b68f94b0) Add flat GC label for leases
* [`dca17853d8`](https://github.com/containerd/containerd/commit/dca17853d8a9321653ff5dbf96b27381c9806bf9) Add WithLinuxDevices Opt
* [`283d5d9005`](https://github.com/containerd/containerd/commit/283d5d9005bfe479ef018de055086f339a9d6d2a) Merge pull request  [#3418](https://github.com/containerd/containerd/pull/3418) from stevvooe/backout-error-changes
* [`804ae89be6`](https://github.com/containerd/containerd/commit/804ae89be632a111d4cadee589b13b4b63ae7f86) errors: use errdefs errors in client and commands
* [`c90a3d4932`](https://github.com/containerd/containerd/commit/c90a3d49323bf3d9c916afede87337cfafdd9319) Merge pull request  [#3134](https://github.com/containerd/containerd/pull/3134) from stefanberger/encryption_code_plus_ctr.pr
* [`dde436e65b`](https://github.com/containerd/containerd/commit/dde436e65bd9319209d0a113f27078f2a07cd2d9) Crypto library movement and changes to content helper interfaces
* [`bf8804c743`](https://github.com/containerd/containerd/commit/bf8804c7430c7204af6badcb0b932637d063ba27) Implemented image encryption/decryption libraries and ctr commands
* [`30c3443947`](https://github.com/containerd/containerd/commit/30c344394740d0ea46b2bfca2fb547f49a42885a) Add crypto dependencies/vendoring
* [`1ff1f87fea`](https://github.com/containerd/containerd/commit/1ff1f87feacbbc65d23fcdebc45df9f15317e970) Merge pull request  [#3400](https://github.com/containerd/containerd/pull/3400) from dmcgowan/registry-configuration
* [`569f500e8d`](https://github.com/containerd/containerd/commit/569f500e8da1c76c7fbd834f4578c1584382795e) Merge pull request  [#3423](https://github.com/containerd/containerd/pull/3423) from crosbymichael/update-cgroups
* [`e237439a2d`](https://github.com/containerd/containerd/commit/e237439a2d14cb196ce828648001246e06ca73cf) Merge pull request  [#3422](https://github.com/containerd/containerd/pull/3422) from fuweid/me-support-customize-install-path
* [`a1f3ebaec8`](https://github.com/containerd/containerd/commit/a1f3ebaec888b5bb816fa5b3437eb3ff7d81b415) Update cgroups to c4b9ac5c7601384c965b9646fc51588
* [`063a4ff278`](https://github.com/containerd/containerd/commit/063a4ff27844fb1e751499cd8f6df5ad249d4e0d) Merge pull request  [#3419](https://github.com/containerd/containerd/pull/3419) from AkihiroSuda/fix-task-start
* [`b72673fdc7`](https://github.com/containerd/containerd/commit/b72673fdc734285898dd5f7e5c51ddb7a8afc221) Makefile: allow custom base path to install
* [`129942ca4d`](https://github.com/containerd/containerd/commit/129942ca4d5764be1af04e03a30c841ddb452e11) Merge pull request  [#3135](https://github.com/containerd/containerd/pull/3135) from dmcgowan/archive-importer-docker-types
* [`fab016c7a1`](https://github.com/containerd/containerd/commit/fab016c7a10531c6bd5a975637ecbaf9a7b35189) runtime/v1/linux: ignore ErrCgroupDeleted in Task.Start
* [`36e4c8e55d`](https://github.com/containerd/containerd/commit/36e4c8e55dae110062d3987b9c487510ce04bdfe) Merge pull request  [#3420](https://github.com/containerd/containerd/pull/3420) from crosbymichael/sn-regression
* [`b5d0c78225`](https://github.com/containerd/containerd/commit/b5d0c7822520afd4adca7d7b36397dffbbf0d3fd) Merge pull request  [#3406](https://github.com/containerd/containerd/pull/3406) from fuweid/me-update-Manifest
* [`ce0d2489ac`](https://github.com/containerd/containerd/commit/ce0d2489acdcd93ef6d213d855fec1f2e2cb22b8) Fix regiression from #3403 with snapshot cmd
* [`e4bfab7182`](https://github.com/containerd/containerd/commit/e4bfab7182f6db45dc3d07306be3bf47623ea60d) Merge pull request  [#3417](https://github.com/containerd/containerd/pull/3417) from dmcgowan/testing-log-hook
* [`0b29c9c371`](https://github.com/containerd/containerd/commit/0b29c9c37116e402f61a5d6766bbb3fc0b451ec9) Update resolver to handle endpoint configuration
* [`63ceaf877d`](https://github.com/containerd/containerd/commit/63ceaf877d82af6ada381191f6a837f6e92f4717) Add testing log context
* [`f63eab32e1`](https://github.com/containerd/containerd/commit/f63eab32e1f6260df457e6ed72cda440eb5d076b) Add testing log hook to context
* [`d6be45e151`](https://github.com/containerd/containerd/commit/d6be45e15166799e2245d37ebc834dc4d3c167fa) Merge pull request  [#3416](https://github.com/containerd/containerd/pull/3416) from crosbymichael/hard-code-err
* [`61d930ad5b`](https://github.com/containerd/containerd/commit/61d930ad5b09b934870b6b629abec78115f51dc5) Move specific errors to their respective packages
* [`7d03fc63e1`](https://github.com/containerd/containerd/commit/7d03fc63e186e4830b959f99b83ce31940ee4acc) Merge pull request  [#3414](https://github.com/containerd/containerd/pull/3414) from estesp/refactor-forloop
* [`82826df9bd`](https://github.com/containerd/containerd/commit/82826df9bdaacf3d34fa391761d8d6bb972b51c0) Small refactor due to CI linter changes
* [`f3e148b1cc`](https://github.com/containerd/containerd/commit/f3e148b1ccf268450c87427b5dbb6187db3d22f1) Merge pull request  [#3411](https://github.com/containerd/containerd/pull/3411) from mxpv/linter
* [`adb8b02b66`](https://github.com/containerd/containerd/commit/adb8b02b662eabf557cdb916a06cfb84ad71762c) Merge pull request  [#3408](https://github.com/containerd/containerd/pull/3408) from wangpeng168/master
* [`ef7f46eb7b`](https://github.com/containerd/containerd/commit/ef7f46eb7bff5fad55b108027332a2938f77066a) Fix linter errors
* [`2b521e25a7`](https://github.com/containerd/containerd/commit/2b521e25a72a5a480e139f28446c6138cc5adaba) Switch to golangci-lint
* [`abc152d14c`](https://github.com/containerd/containerd/commit/abc152d14c950a64deb833b597082b68eaf5ea06) fix name in containers file
* [`70b00a0fa9`](https://github.com/containerd/containerd/commit/70b00a0fa9b1e754758153d9d649c4fb56fcd02c) fix variable name
* [`4988424fc0`](https://github.com/containerd/containerd/commit/4988424fc0c459f5a07ce1cd1d5f39fa6ebf39f1) * fix: view snapshot is deleted before diff
* [`db95af43f3`](https://github.com/containerd/containerd/commit/db95af43f3254b921a0fce16679dc6d03f59c5b6) centralize harded-code message
* [`d643f1dc88`](https://github.com/containerd/containerd/commit/d643f1dc886cb7a4d984ab7ac132e2049571aaf6) images: only fetch the best matched manifest info
* [`f2b6c31d0f`](https://github.com/containerd/containerd/commit/f2b6c31d0fa7f5541f6a37d525ed461b294d785f) Merge pull request  [#3403](https://github.com/containerd/containerd/pull/3403) from m
8000
xpv/labels
* [`550a6f1d73`](https://github.com/containerd/containerd/commit/550a6f1d733ad4960ecbe8247c6cb2a545d7dd66) Fix integration tests
* [`1918ee4d11`](https://github.com/containerd/containerd/commit/1918ee4d11abd3b9dc27bb3b12e4e878ac4fa165) Respect default snapshotter label
* [`47d2ac0902`](https://github.com/containerd/containerd/commit/47d2ac090262306abd81f22facae49664d34e2c8) Improve default label handling
* [`4e2fc81edd`](https://github.com/containerd/containerd/commit/4e2fc81edd9ca5fa4a96f874ec669af5737b4999) Add aliases to namespaces subcommand
* [`9d4fc1d405`](https://github.com/containerd/containerd/commit/9d4fc1d405d5648b20845325913e77512dcf6d88) Merge pull request  [#3399](https://github.com/containerd/containerd/pull/3399) from crosbymichael/criu12
* [`2a92c27413`](https://github.com/containerd/containerd/commit/2a92c274135f388455f4ff5831d16ac3bbfce757) Bump travis to criu 3.12
* [`309647b1f0`](https://github.com/containerd/containerd/commit/309647b1f0d73e8d86b66dcd97e9a91f2406dbeb) Merge pull request  [#3398](https://github.com/containerd/containerd/pull/3398) from crosbymichael/release-config
* [`5ed1a3ce08`](https://github.com/containerd/containerd/commit/5ed1a3ce08b36c7f347a1bbbb0eb73da959ac8ce) Add RELEASE note about config versioning
* [`a0696b2bc6`](https://github.com/containerd/containerd/commit/a0696b2bc6a0110263b711b3af1db4f2e483fbc6) Merge pull request  [#3374](https://github.com/containerd/containerd/pull/3374) from crosbymichael/runtime
* [`dce11a21de`](https://github.com/containerd/containerd/commit/dce11a21debba6a1c20dec8f38c583ea704667ea) Merge pull request  [#3395](https://github.com/containerd/containerd/pull/3395) from hinshun/metadata-actual
* [`6601b406b7`](https://github.com/containerd/containerd/commit/6601b406b79d9d166ffcaea1474171a0664f3210) Refactor runtime code for code sharing
* [`2aa8780ce6`](https://github.com/containerd/containerd/commit/2aa8780ce6146aea028b227970705109a6f502db) Merge pull request  [#3393](https://github.com/containerd/containerd/pull/3393) from lifupan/fix_deadshim
* [`7d21172453`](https://github.com/containerd/containerd/commit/7d21172453876b17915c141d3522f06dc7a90db8) Fix metadata content store to call writer digest after commit
* [`d80513ee8a`](https://github.com/containerd/containerd/commit/d80513ee8a6995bc7889c93e7858ddbbc51f063d) Merge pull request  [#3388](https://github.com/containerd/containerd/pull/3388) from seemethere/image_tag
* [`af93e4009b`](https://github.com/containerd/containerd/commit/af93e4009bc30451b91cae737ad4ec05a1aa88e3) ctr: Add images tag subcommand
* [`ec8d9d3d7a`](https://github.com/containerd/containerd/commit/ec8d9d3d7a126e20d0bc1f3117158e8d7ba6a44b) shimv2: remove the dead task from runtime task list
* [`c1c710ae16`](https://github.com/containerd/containerd/commit/c1c710ae16843161ec72a9cbc1aeababf7f02c7e) Merge pull request  [#3390](https://github.com/containerd/containerd/pull/3390) from Ace-Tang/update-go-runc
* [`d3e1a51f85`](https://github.com/containerd/containerd/commit/d3e1a51f853e7796f417829235078f27b6a52ac7) vendor: bump go-runc
* [`876c8890ae`](https://github.com/containerd/containerd/commit/876c8890ae12a079964c9d51f81ab425987e8037) Merge pull request  [#3384](https://github.com/containerd/containerd/pull/3384) from mxpv/exec-log-uri
* [`46af8ccd2d`](https://github.com/containerd/containerd/commit/46af8ccd2d44a26fbad7aa93fd41e88cb122c741) Check exec log flags compatibility
* [`3ce077e740`](https://github.com/containerd/containerd/commit/3ce077e74012e5a171a139da6b4d2591ebcb68e8) Merge pull request  [#3385](https://github.com/containerd/containerd/pull/3385) from ehotinger/ehotinger/refactor-winio
* [`9fda4a5fe6`](https://github.com/containerd/containerd/commit/9fda4a5fe60b7b75c9b774035f7e5f5f67b74bba) Bumps the version of go-winio.
* [`6b59b425e2`](https://github.com/containerd/containerd/commit/6b59b425e22eb9a162918d348074cd8c6db54a63) Support --log-uri for exec subcommand
* [`6617defdc9`](https://github.com/containerd/containerd/commit/6617defdc9c73bbd0860dd476623160f3996db4b) Merge pull request  [#3383](https://github.com/containerd/containerd/pull/3383) from crosbymichael/ns-delete
* [`844c58102e`](https://github.com/containerd/containerd/commit/844c58102e437cf6c4a33bcc03961ae9071dba2b) Add cgroup delete opt for ns deletion
* [`d1b766a52b`](https://github.com/containerd/containerd/commit/d1b766a52b0367a5c29907e6d6cf8a659bfc0d1d) Merge pull request  [#3382](https://github.com/containerd/containerd/pull/3382) from knm3000/content_fetch_retry
* [`3d3dbc8fbf`](https://github.com/containerd/containerd/commit/3d3dbc8fbfac21a75e1197832fb191a182feffbb) Handle RequestTimeout and TooManyRequests
* [`041d8d7051`](https://github.com/containerd/containerd/commit/041d8d70510fababcca15830df33bb2718227fcf) Merge pull request  [#3366](https://github.com/containerd/containerd/pull/3366) from crosbymichael/exec-pid
* [`c2c2b068fd`](https://github.com/containerd/containerd/commit/c2c2b068fd03df3ff62aaa113ffb144e87df66b7) Merge pull request  [#3380](https://github.com/containerd/containerd/pull/3380) from crosbymichael/oom-scores
* [`7dfc605fc6`](https://github.com/containerd/containerd/commit/7dfc605fc6d36dd7327420b8956ac3f9ac71f190) Set shim OOM scores to +1 containerd daemon score
* [`719a2c594e`](https://github.com/containerd/containerd/commit/719a2c594e4aad6a2de5cd9c298ab95309c2135c) Robust pid locking for shim processes
* [`bb9616ba20`](https://github.com/containerd/containerd/commit/bb9616ba206c0d39f551e2bb54ec34ca21aea652) Merge pull request  [#3379](https://github.com/containerd/containerd/pull/3379) from Ace-Tang/clean-doc
* [`e89e57c52d`](https://github.com/containerd/containerd/commit/e89e57c52d14a1ec7293803fce4014d0b24174ea) Merge pull request  [#3377](https://github.com/containerd/containerd/pull/3377) from estesp/remove-old-doc
* [`2d03791158`](https://github.com/containerd/containerd/commit/2d03791158ade1b035eafa6b29bb091e60affd93) docs: remove shim_no_newns in ops.md
* [`0886e4f1b7`](https://github.com/containerd/containerd/commit/0886e4f1b79ecd8eb0ac6625700a613b8ddd955a) No need to keep 2017 DockerCon doc
* [`0e87608c2a`](https://github.com/containerd/containerd/commit/0e87608c2ad46fb92d2155885352dcf10dd65e51) Merge pull request  [#3371](https://github.com/containerd/containerd/pull/3371) from thaJeztah/bump_libseccomp
* [`89ec47972f`](https://github.com/containerd/containerd/commit/89ec47972f7d91d21a1f678b5fa0dd3b04180b93) Merge pull request  [#3373](https://github.com/containerd/containerd/pull/3373) from Mattias-/release-hashsum
* [`650a7e5c1e`](https://github.com/containerd/containerd/commit/650a7e5c1ec3a2d5752ce3868813f6813baf240c) Add hashsum for release archives
* [`5b4ed0d886`](https://github.com/containerd/containerd/commit/5b4ed0d8866f349f485180b70abd0ae0ad75a25d) Merge pull request  [#3372](https://github.com/containerd/containerd/pull/3372) from thaJeztah/bump_runc
* [`cb4a8f51a6`](https://github.com/containerd/containerd/commit/cb4a8f51a66615bec05cd27af932d4a938a52991) bump runc v1.0.0-rc8-32-gf4982d86
* [`bb41ef87f1`](https://github.com/containerd/containerd/commit/bb41ef87f1841531526126ccd2ad1a4291e8571c) bump libseccomp-golang v0.9.1
* [`287582585f`](https://github.com/containerd/containerd/commit/287582585fb44fcd5e55126695d0129e79a4345b) Merge pull request  [#3365](https://github.com/containerd/containerd/pull/3365) from crosbymichael/exec-lk
* [`b2662f21a2`](https://github.com/containerd/containerd/commit/b2662f21a2ffa2c251b5f476669b6ac45ee9370a) Merge pull request  [#3370](https://github.com/containerd/containerd/pull/3370) from mxpv/file-io
* [`174c4907d0`](https://github.com/containerd/containerd/commit/174c4907d0cb23cbb5d80c95e6dcfb42d0f31164) Fix shim's file IO logging
* [`1a8df3f237`](https://github.com/containerd/containerd/commit/1a8df3f2377e614902b967338a3ee1aadf134dd0) Reserve exec id to prevent race
* [`b88362fd55`](https://github.com/containerd/containerd/commit/b88362fd551b5c18dec7a751c547042eacfdf544) Merge pull request  [#3361](https://github.com/containerd/containerd/pull/3361) from crosbymichael/io-wait
* [`245052243d`](https://github.com/containerd/containerd/commit/245052243d23c8de21fcc95bbf47fb1dbc731ab4) Add timeout for I/O waitgroups
* [`574bde08ba`](https://github.com/containerd/containerd/commit/574bde08ba1a698d96fd4a294443ea90fd7bd213) Merge pull request  [#3360](https://github.com/containerd/containerd/pull/3360) from ZYecho/polish-log
* [`6f788f861e`](https://github.com/containerd/containerd/commit/6f788f861e378f9b6fb9f69db86020ab77f1c132) Merge pull request  [#3358](https://github.com/containerd/containerd/pull/3358) from ehotinger/ehotinger/gh-templates
* [`b95f0a6cea`](https://github.com/containerd/containerd/commit/b95f0a6cea96647330a6c1f0ed9eab5e140a337f) Merge pull request  [#3359](https://github.com/containerd/containerd/pull/3359) from keloyang/close-socket-fd
* [`12a14c4424`](https://github.com/containerd/containerd/commit/12a14c4424208a90d2344b0b893c57452a9eb9ad) fix: polish log to make more clear
* [`ec78305c49`](https://github.com/containerd/containerd/commit/ec78305c490e6e5f70f812b2af170525db8460f8) Close the inherited socket fd
* [`111b082e20`](https://github.com/containerd/containerd/commit/111b082e2042eeae2b8119b45297882c8a843d1f) Merge pull request  [#3356](https://github.com/containerd/containerd/pull/3356) from mxpv/binary-io-path
* [`fbf96d302a`](https://github.com/containerd/containerd/commit/fbf96d302aff95f8c52ab0161e7ff8ae7d33b9b9) Fix path in LogFile creator
* [`7ac57b6392`](https://github.com/containerd/containerd/commit/7ac57b639299cdea03c1728c2692077d757ad79b) Merge pull request  [#3357](https://github.com/containerd/containerd/pull/3357) from odinuge/dependency-cgroups
* [`63a8dee60d`](https://github.com/containerd/containerd/commit/63a8dee60ddd24523b9cd35057cc9049fd8197f7) Switch to GitHub's new issue templates.
* [`341c7c144f`](https://github.com/containerd/containerd/commit/341c7c144f64d2a621160ba2dc667d67668879ea) Update dependency containerd/cgroups
* [`8bb521318a`](https://github.com/containerd/containerd/commit/8bb521318ab81777c7468d2b308c8e83d7be607a) Merge pull request  [#3055](https://github.com/containerd/containerd/pull/3055) from ehotinger/ehotinger/flow-opts
* [`5e0d793801`](https://github.com/containerd/containerd/commit/5e0d793801aefe1be5740a26771c9d30dac46f90) Fix bugs in BinaryIO creator
* [`75f183887a`](https://github.com/containerd/containerd/commit/75f183887a99de2fd29d3144e5f9a1e09a069a67) Allow opts to flow to the backend snapshotter during snapshot creation.
* [`4355a2accc`](https://github.com/containerd/containerd/commit/4355a2accce6e267e37d9dc8a18cf6fe92385401) Merge pull request  [#3355](https://github.com/containerd/containerd/pull/3355) from Ace-Tang/avoid-start-hang
* [`95f9bbf18b`](https://github.com/containerd/containerd/commit/95f9bbf18b23cc6c7c7ce0c5a8a637bb1abfd59c) Add timeout in load shim v2
* [`434f69e790`](https://github.com/containerd/containerd/commit/434f69e7906454e0177ff06d711614c34af9bf4e) Merge pull request  [#3353](https://github.com/containerd/containerd/pull/3353) from mikebrow/fix-slack-invite
* [`62e9e11696`](https://github.com/containerd/containerd/commit/62e9e1169693dcbcf30e88e28e4c4badb5054fec) switch to a working link
* [`3e7c6f6a6b`](https://github.com/containerd/containerd/commit/3e7c6f6a6b3dc8b327e9107c46521cf50b4be018) Merge pull request  [#3352](https://github.com/containerd/containerd/pull/3352) from crosbymichael/sn-panic
* [`41e1bb8328`](https://github.com/containerd/containerd/commit/41e1bb83289568c12866ae22803fbfb8b7eaf536) Fix snapshotter getter in client code
* [`cbb108e228`](https://github.com/containerd/containerd/commit/cbb108e22869c6b0a5cfd04eba9402ccd5a366a4) Merge pull request  [#3348](https://github.com/containerd/containerd/pull/3348) from mxpv/new-binary-io
* [`062d056196`](https://github.com/containerd/containerd/commit/062d0561961a00fc1890f9fdc73821dce14bd9ce) Merge pull request  [#3345](https://github.com/containerd/containerd/pull/3345) from crosbymichael/diff-panic
* [`052551573d`](https://github.com/containerd/containerd/commit/052551573d7e5b63874c9b02b420432894a7c441) Ensure labels is not nil in differ
* [`50cd49d1c8`](https://github.com/containerd/containerd/commit/50cd49d1c86fa026abdf5c631c925a8315897313) Merge pull request  [#3343](https://github.com/containerd/containerd/pull/3343) from thaJeztah/appveyor_bump_go_1.12
* [`67cf9f7f02`](https://github.com/containerd/containerd/commit/67cf9f7f025cff3e928641eca9076dce98db1e47) AppVeyor: Bump golang 1.12.6
* [`fe58b496bb`](https://github.com/containerd/containerd/commit/fe58b496bb7c4a40469f36499c2e837936abb7ae) Merge pull request  [#3341](https://github.com/containerd/containerd/pull/3341) from crosbymichael/ttrpcmd
* [`0b7abc02b2`](https://github.com/containerd/containerd/commit/0b7abc02b22309a648a8ba5ebe2a2d189c474cbe) ttrpc updates for interceptors, close, and metadata
* [`40b17e97f6`](https://github.com/containerd/containerd/commit/40b17e97f6fdc8e8f158d25aaa7192bceff27264) Merge pull request  [#3218](https://github.com/containerd/containerd/pull/3218) from fuweid/me-cross-push
* [`667195fdd9`](https://github.com/containerd/containerd/commit/667195fdd96be38a88a2a426d6da11591c2d4c54) Merge pull request  [#3339](https://github.com/containerd/containerd/pull/3339) from YLonely/typo-fix
* [`d15a06b190`](https://github.com/containerd/containerd/commit/d15a06b1909acd6d6d0996858d7e91b410a0baa8) docs: Fix typo to some markdown files in /docs.
* [`dd7c0aabcc`](https://github.com/containerd/containerd/commit/dd7c0aabccd3a895c12954234d9bc9cb024e4041) remotes: support cross-repo-push
* [`bca5667362`](https://github.com/containerd/containerd/commit/bca5667362a827433dbfd2af5b200195af46a3d6) Make newBinaryIO public
* [`545e79ae11`](https://github.com/containerd/containerd/commit/545e79ae11edfa7d14516d3c980e5c138f322fee) Merge pull request  [#3337](https://github.com/containerd/containerd/pull/3337) from crosbymichael/config-bk
* [`31afff2944`](https://github.com/containerd/containerd/commit/31afff294400b5a69bdb3ec387ecdf5bad57a038) Fix backwards compat with v2 containerd configs
* [`53896d7820`](https://github.com/containerd/containerd/commit/53896d7820a3a6e6dac5767c42fd2cd33e7b0d2c) Merge pull request  [#3335](https://github.com/containerd/containerd/pull/3335) from dmcgowan/fix-user-agent
* [`bb00872800`](https://github.com/containerd/containerd/commit/bb008728001199665d0a6a484d064372487e7150) Add user agent header to all requests
* [`2f69be5594`](https://github.com/containerd/containerd/commit/2f69be5594cecacdbe42076ed12c7039a0638a2c) Merge pull request  [#3322](https://github.com/containerd/containerd/pull/3322) from crosbymichael/configs
* [`9547d269a1`](https://github.com/containerd/containerd/commit/9547d269a188c28e563470a597c8da7deb5b0734) Add v2 server config support with plugin URIs
* [`42f4bb98ac`](https://github.com/containerd/containerd/commit/42f4bb98acc43ab8e46a3171bf13eaf0e7b7504e) Merge pull request  [#3311](https://github.com/containerd/containerd/pull/3311) from jing-rui/shimlog
* [`94a21fc9cf`](https://github.com/containerd/containerd/commit/94a21fc9cf91fb694abdaa5bad9d2b80e6d0c7fa) Merge pull request  [#3328](https://github.com/containerd/containerd/pull/3328) from carlosedp/riscv64
* [`9e0cd529d3`](https://github.com/containerd/containerd/commit/9e0cd529d35a9951f292ed35940f1cd6eff99a39) fix shim std logs not close after shim exit
* [`fb6b0ae4c6`](https://github.com/containerd/containerd/commit/fb6b0ae4c692b5b5761b4326c428a09e1218981b) Update x/sys, x/net and bbolt modules to support Risc-V
* [`02ed02eca5`](https://github.com/containerd/containerd/commit/02ed02eca53b9f4ee84702e1858f70023c26db44) Merge pull request  [#3325](https://github.com/containerd/containerd/pull/3325) from crosbymichael/unmount
* [`ed308ea1e6`](https://github.com/containerd/containerd/commit/ed308ea1e6f7be0965ddb3afa7df3b86387ba4e9) Unmount rootfs with separate Remove() in bundle
* [`40f54dc076`](https://github.com/containerd/containerd/commit/40f54dc076254b60294b4ba9831cf8386af2f40a) Merge pull request  [#3324](https://github.com/containerd/containerd/pull/3324) from crosbymichael/content-close
* [`cf7fb14efa`](https://github.com/containerd/containerd/commit/cf7fb14efaa7527403e3369eeb53fd0239d716fd) Update timestamp atomic write
* [`4f6ba8286d`](https://github.com/containerd/containerd/commit/4f6ba8286d754c1e7b94249ac6baffab2ddfc089) Ensure close in content test
* [`04e7747e29`](https://github.com/containerd/containerd/commit/04e7747e29527a928fbdad1382f8a5cb37b6d136) Merge pull request  [#3321](https://github.com/containerd/containerd/pull/3321) from crosbymichael/ttrpc-namespace
* [`15ae6b74fd`](https://github.com/containerd/containerd/commit/15ae6b74fd5d51a398d38d95dc864db511aaa816) Merge pull request  [#3318](https://github.com/containerd/containerd/pull/3318) from hinshun/ignore-readat-eof
* [`faf925ba25`](https://github.com/containerd/containerd/commit/faf925ba2519ebea0fc1a8640a2f195d71d1398d) Handle EOF from ReadAt in content.ReadBlob
* [`fa6a9f0635`](https://github.com/containerd/containerd/commit/fa6a9f063586e30833bdb9842e84289f4ef11020) Add ttrpc namespace support
* [`42f24b57e4`](https://github.com/containerd/containerd/commit/42f24b57e4b86f9dfe35211f147cef5745caa306) Update ttrpc to a5bd8ce9e40bc7c065a11c6936f4d032ce
* [`faa5f55189`](https://github.com/containerd/containerd/commit/faa5f5518978226ff3693838444aad6e8be1ca51) Merge pull request  [#3302](https://github.com/containerd/containerd/pull/3302) from crosbymichael/mkroot
* [`d4e7efbb93`](https://github.com/containerd/containerd/commit/d4e7efbb932999f5406cf487b835f30315e65390) Merge pull request  [#3304](https://github.com/containerd/containerd/pull/3304) from fuweid/me-update-lease
* [`7531c66d5a`](https://github.com/containerd/containerd/commit/7531c66d5a4e9bf0674ee6d754107381e6075385) Ensure that the rootfs dir is created in the bundle
* [`7451dd1a48`](https://github.com/containerd/containerd/commit/7451dd1a486e4d239d1399dd0d53130f63e96459) Merge pull request  [#3308](https://github.com/containerd/containerd/pull/3308) from jterry75/handle_grpc_context_error
* [`48a1fca855`](https://github.com/containerd/containerd/commit/48a1fca855215c98fbb622cdb1cab4b40077fd77) Merge pull request  [#3314](https://github.com/containerd/containerd/pull/3314) from KentaTada/fix-clone-seccomp-cgroupns
* [`2ec2089b05`](https://github.com/containerd/containerd/commit/2ec2089b05a967b328b096cf789a2861223f8f32) Merge pull request  [#3123](https://github.com/containerd/containerd/pull/3123) from stefanberger/extend_apply_call_with_options_parameter
* [`efe6d8ddad`](https://github.com/containerd/containerd/commit/efe6d8ddad963642d655f5b69cba78c38436eece) Merge pull request  [#3319](https://github.com/containerd/containerd/pull/3319) from Vanient/master
* [`bf24fb0cad`](https://github.com/containerd/containerd/commit/bf24fb0cad7d013ac934265c5bb02e3daf30f32a) Close file r.log after used to release resources.
* [`5b9a43d2e7`](https://github.com/containerd/containerd/commit/5b9a43d2e7aff575a398477a9b13b29a313f15a6) Fix seccomp contributed profile for clone syscall
* [`1c5b384b30`](https://github.com/containerd/containerd/commit/1c5b384b3062bd8f05a73b10043eaca4cae4da75) Merge pull request  [#3313](https://github.com/containerd/containerd/pull/3313) from kevpar/service-restart-delay
* [`cee19d1e6e`](https://github.com/containerd/containerd/commit/cee19d1e6eafc38b90dd2a4f8ed442784cec3169) Change restart delay for Windows service to 15s
* [`8a388d6238`](https://github.com/containerd/containerd/commit/8a388d6238b6aa1d52f53b77892c7e991cdd0328) leases: support resource management
* [`ac4485c76a`](https://github.com/containerd/containerd/commit/ac4485c76af74a538406d454e13200dba573eb3f) Add support to gRPC errdefs for context cancel/deadline exceeded
* [`0e7a3c9e51`](https://github.com/containerd/containerd/commit/0e7a3c9e513da1f1dda163d5872a974a4db07d02) Merge pull request  [#3298](https://github.com/containerd/containerd/pull/3298) from jterry75/sync_tar2ext4_write
* [`d57cf6f151`](https://github.com/containerd/containerd/commit/d57cf6f151e444d125407526bf58bb8e79c5e47a) Merge pull request  [#3297](https://github.com/containerd/containerd/pull/3297) from BenTheElder/add-restart
* [`bbe45e4467`](https://github.com/containerd/containerd/commit/bbe45e4467ba934fbb55adca12ace4e271b8754c) add Restart=always to unit file
* [`01191a21b0`](https://github.com/containerd/containerd/commit/01191a21b0da164ae81a182c5381671123714910) Merge pull request  [#3299](https://github.com/containerd/containerd/pull/3299) from Random-Liu/use-mkdirall
* [`290fc9eeab`](https://github.com/containerd/containerd/commit/290fc9eeab624b7a469bb5e98c30d46bb98a2845) Merge pull request  [#3301](https://github.com/containerd/containerd/pull/3301) from dmcgowan/add-run-platform
* [`a274dbe822`](https://github.com/containerd/containerd/commit/a274dbe82258d40e8fd09dc2c8f4331717e1045d) Fix run with specified platform
* [`48b81e872c`](https://github.com/containerd/containerd/commit/48b81e872c93be5473992f17110cfaec5d3017b2) Do not return error when rootfs already exists.
* [`e0c4fe4110`](https://github.com/containerd/containerd/commit/e0c4fe411016bb03304d666aa8113e6f0c330cd4) Forcibly sync writes on lcow layer.vhd after write
* [`25daa7355c`](https://github.com/containerd/containerd/commit/25daa7355cdc1334718ce42e887f1c367aff9d0e) Merge pull request  [#3192](https://github.com/containerd/containerd/pull/3192) from thaJeztah/bump_grpc_1.19.1
* [`c9c555cd71`](https://github.com/containerd/containerd/commit/c9c555cd71a8e67864e80b73bd2d22362f859076) Merge pull request  [#3226](https://github.com/containerd/containerd/pull/3226) from Ace-Tang/kill_shim_in_clean
* [`ec0b722083`](https://github.com/containerd/containerd/commit/ec0b7220838cf5fe508b69cad08fe94bb54d4aba) Merge pull request  [#3292](https://github.com/containerd/containerd/pull/3292) from crosbymichael/shim-cgroup
* [`b7f093eaa2`](https://github.com/containerd/containerd/commit/b7f093eaa2785af9ca41ea27d0fd2a15a34603a2) Merge pull request  [#3296](https://github.com/containerd/containerd/pull/3296) from dmcgowan/fix-export-labels
* [`5e2d7efd82`](https://github.com/containerd/containerd/commit/5e2d7efd82bd7f2cd7c66b4d0af54e7c060d1f87) Use a single custom annotation for export
* [`2088fc999c`](https://github.com/containerd/containerd/commit/2088fc999c20cb9759b0b537276e608f918e7c16) Merge pull request  [#3294](https://github.com/containerd/containerd/pull/3294) from dmcgowan/fix-metadata-panic
* [`30082abed3`](https://github.com/containerd/containerd/commit/30082abed3f7a0965f11a160415b090927866b41) Merge pull request  [#3293](https://github.com/containerd/containerd/pull/3293) from crosbymichael/atomic-delete
* [`41b7b0e0dc`](https://github.com/containerd/containerd/commit/41b7b0e0dc1ee9b5554d3bf6b94c125ec922ead9) Ensure namespaced writer commit has correct namespace
* [`bcb6c8db47`](https://github.com/containerd/containerd/commit/bcb6c8db47a83d03913c4a21b43e2958acdf5a43) Merge pull request  [#3279](https://github.com/containerd/containerd/pull/3279) from mxpv/ttrpc
* [`7f79fbb245`](https://github.com/containerd/containerd/commit/7f79fbb245b4ca7d27cb6d6b9dd23df0e07f00bd) Move ttrpc client to pkg/ttrpcutil
* [`5b7a327c47`](https://github.com/containerd/containerd/commit/5b7a327c4776201574e62b653ef794e9010bb7ee) Improve atomic delete
* [`fe6a2b03ed`](https://github.com/containerd/containerd/commit/fe6a2b03ede2cff4529f4d7f29827a155f13332c) Add shim cgroup support for v2 runtimes
* [`cafda1c50f`](https://github.com/containerd/containerd/commit/cafda1c50f6efaa6fe53ec3582e817fe80287c13) Merge pull request  [#3290](https://github.com/containerd/containerd/pull/3290) from estesp/typo
* [`62609d66d0`](https://github.com/containerd/containerd/commit/62609d66d06a963036bc368a72f0524559d55dc2) Fix typo in description comment
* [`90c6c1af43`](https://github.com/containerd/containerd/commit/90c6c1af43dc0fc3cb582d38f5f5c75586f4d132) Pass options on shim create for v2
* [`b99a66c267`](https://github.com/containerd/containerd/commit/b99a66c267d04740628634d7d038f9ce1753b339) Merge pull request  [#3288](https://github.com/containerd/containerd/pull/3288) from Ace-Tang/easy-shim
* [`e61f7f4913`](https://github.com/containerd/containerd/commit/e61f7f491318e3d2a7cbf742ae008f476d72c74f) Merge pull request  [#3172](https://github.com/containerd/containerd/pull/3172) from dmcgowan/export-docker-compatibility
* [`6907062863`](https://github.com/containerd/containerd/commit/6907062863eafde1d164e629a75307ad3c6b2626) ctr: make ctr shim command easy to use
* [`cd5369bace`](https://github.com/containerd/containerd/commit/cd5369bace3f5208dadd870a7eea405905e91806) Merge pull request  [#2896](https://github.com/containerd/containerd/pull/2896) from thaJeztah/bump_golang_1.12
* [`5158bc8de2`](https://github.com/containerd/containerd/commit/5158bc8de23368c6bcf87eb9947af092d7823794) Merge pull request  [#3280](https://github.com/containerd/containerd/pull/3280) from jterry75/init_state_resize_unused
* [`7b06c9a1ce`](https://github.com/containerd/containerd/commit/7b06c9a1ce2b2d01bf3c6b13f8416db0ec4b0eca) Add TTRPC client
* [`5e962dd8ba`](https://github.com/containerd/containerd/commit/5e962dd8ba892ee234621c4c6188facfe0bc9d68) Remove unused Resize method from initState
* [`7acdb16882`](https://github.com/containerd/containerd/commit/7acdb16882080edbe939997e8ed09d7ef3a02cc6) Merge pull request  [#3276](https://github.com/containerd/containerd/pull/3276) from darfux/v1_respect_shim_debug
* [`c0d0fc32f5`](https://github.com/containerd/containerd/commit/c0d0fc32f58b86a611052c8a1bdeb7ac75a4d59e) Merge pull request  [#3278](https://github.com/containerd/containerd/pull/3278) from masters-of-cats/pr-bump-ttrpc
* [`66036d9206`](https://github.com/containerd/containerd/commit/66036d9206ceaef83005260700d7e0b13b057830) v1: Respect the `shim_debug` flag when load tasks
* [`a6a888cb5e`](https://github.com/containerd/containerd/commit/a6a888cb5ec650de03781bbd8fcd7e67b5e124c7) Bump ttrpc
* [`7ad8848663`](https://github.com/containerd/containerd/commit/7ad884866394b1e6250f36ce387bbd71723d1ed7) Merge pull request  [#3275](https://github.com/containerd/containerd/pull/3275) from fuweid/me-redirect-shim-v1-output-into-fifo
* [`fbb80b9510`](https://github.com/containerd/containerd/commit/fbb80b9510db14a95b8ffa6c7842666ecf520489) containerd-shim: redirect output into stdout fifo
* [`543d1e807f`](https://github.com/containerd/containerd/commit/543d1e807fbbdbcd998052fa1955c18b0604f56e) Add travis_wait to prevent vndr timing out
* [`00bc2f5cfd`](https://github.com/containerd/containerd/commit/00bc2f5cfd437625c376bd1f14a28249a12e403b) Update to Golang 1.12, and prepare for ppc64le
* [`bc944553a8`](https://github.com/containerd/containerd/commit/bc944553a8f3b113a3769a4e23f39910757079a6) Merge pull request  [#3206](https://github.com/containerd/containerd/pull/3206) from Random-Liu/cleanup-after-deadshim-v2
* [`cfbbda910d`](https://github.com/containerd/containerd/commit/cfbbda910d8ba0d4e94f48c0e1df72eb48c0fb27) Merge pull request  [#3271](https://github.com/containerd/containerd/pull/3271) from crosbymichael/info
* [`67b45aef49`](https://github.com/containerd/containerd/commit/67b45aef49425707dce0179d58ccf17dc63b935b) Add WithoutRefreshed metadata
* [`481103c879`](https://github.com/containerd/containerd/commit/481103c8793316c118d9f795cde18060847c370e) Merge pull request  [#3270](https://github.com/containerd/containerd/pull/3270) from jcaamano/master
* [`ad25c1a9c3`](https://github.com/containerd/containerd/commit/ad25c1a9c34361e4071f508b9a91946b05fce165) Improve ARM platform matching
* [`bd27bef4ad`](https://github.com/containerd/containerd/commit/bd27bef4ad87d703cb5d3e2368fda8db0e47c826) Move checkpoint and restore commands to new files
* [`f80d285079`](https://github.com/containerd/containerd/commit/f80d2850797c8132e995bbaa14ff665db5a1d3aa) Merge pull request  [#3242](https://github.com/containerd/containerd/pull/3242) from theopenlab/containerd_openlab_ci
* [`57fbb16234`](https://github.com/containerd/containerd/commit/57fbb16234fa6c8a61e5e907a4148ea3b05bce1d) Merge pull request  [#3149](https://github.com/containerd/containerd/pull/3149) from lifubang/pidnamespace
* [`0485499d1c`](https://github.com/containerd/containerd/commit/0485499d1c632231625eaa2856f0ca3776efe381) Merge pull request  [#3266](https://github.com/containerd/containerd/pull/3266) from darfux/fix_shim_log_fd_leak
* [`6096fa2b37`](https://github.com/containerd/containerd/commit/6096fa2b37bd3eeb431fe2ef672cf6874f095b94) Merge pull request  [#3262](https://github.com/containerd/containerd/pull/3262) from renzhengeek/renzhen/devmapper-bugfix
* [`cf6e008542`](https://github.com/containerd/containerd/commit/cf6e0085423af8938a16c850ff5607dad4ca7c73) Fix fd leak of shim log
* [`6f463d3505`](https://github.com/containerd/containerd/commit/6f463d35057134cfdf6736d3c19daedc41b101e3) test/snapshots: umount before committing snapshot
* [`3887053177`](https://github.com/containerd/containerd/commit/3887053177198e9ebd4cbc4a438a3f77aa048f83) snapshots/devmapper: deactivate thin device after committed
* [`bdd7dce31f`](https://github.com/containerd/containerd/commit/bdd7dce31f8aa7151adaa0942b16330ee094a203) Add OpenLab CI configuration
* [`d68b593de4`](https://github.com/containerd/containerd/commit/d68b593de4ab10bb8b4fd64560e10d43c7156db2) Merge pull request  [#3263](https://github.com/containerd/containerd/pull/3263) from Random-Liu/fix-task-deletion
* [`7c1e88399e`](https://github.com/containerd/containerd/commit/7c1e88399ec0b0b077121d9d5ad97e647b11c870) Merge pull request  [#3245](https://github.com/containerd/containerd/pull/3245) from msg555/master
* [`660554d671`](https://github.com/containerd/containerd/commit/660554d671f41e0a96851b8012dd626e34f53f38) Fix error handling for task deletion.
* [`5cf1356c5c`](https://github.com/containerd/containerd/commit/5cf1356c5c57307162b71b9f19ab187aa247ecda) Merge pull request  [#3255](https://github.com/containerd/containerd/pull/3255) from dvrkps/usecancel
* [`836cf53e40`](https://github.com/containerd/containerd/commit/836cf53e403e539ff4fa146b3f32b82810d0c0a5) Merge pull request  [#3244](https://github.com/containerd/containerd/pull/3244) from Random-Liu/fix-container-cleanup
* [`19af235051`](https://github.com/containerd/containerd/commit/19af23505139d991f31163f08d8f211963ad1b6e) Merge pull request  [#3148](https://github.com/containerd/containerd/pull/3148) from masters-of-cats/wip-rootless-containerd
* [`2ed8e60fa1`](https://github.com/containerd/containerd/commit/2ed8e60fa1173b068fcaa2c46bdcc3f58064640c) bump google.golang.org/grpc v1.20.1
* [`d1c59513d8`](https://github.com/containerd/containerd/commit/d1c59513d8fce427ccdb02422577b786b7b243cb) bump google.golang.org/grpc v1.12.2
* [`d71c7ada27`](https://github.com/containerd/containerd/commit/d71c7ada27959fe04fad5390367e4fab215334b3) Merge pull request  [#3259](https://github.com/containerd/containerd/pull/3259) from BenTheElder/no-unpack
* [`82f2ac7ede`](https://github.com/containerd/containerd/commit/82f2ac7edec03dfc301d99d8910c9e53a9d71d90) Merge pull request  [#3252](https://github.com/containerd/containerd/pull/3252) from jterry75/remove_log_connect_error
* [`c10eb8d122`](https://github.com/containerd/containerd/commit/c10eb8d1225e1f5a8b031fa0c984a85b88d7f0cd) Merge pull request  [#3256](https://github.com/containerd/containerd/pull/3256) from dvrkps/redundant
* [`5423986111`](https://github.com/containerd/containerd/commit/5423986111c6b2b161e64d66410b16a10e81616a) Merge pull request  [#3260](https://github.com/containerd/containerd/pull/3260) from sarangjo/master
* [`2f22d8e677`](https://github.com/containerd/containerd/commit/2f22d8e67735eff5e4499c66f8a503b0c87841dc) Fix broken link to containerd logo
* [`cb7c780af2`](https://github.com/containerd/containerd/commit/cb7c780af2394ab08d5d8a3932ca7437074ae179) ctr images import: add --no-unpack option
* [`ee902afa5f`](https://github.com/containerd/containerd/commit/ee902afa5fdcb68164bd83c3413903ed997471ce) Compute manifest metadata when not provided.
* [`5c9811ded0`](https://github.com/containerd/containerd/commit/5c9811ded0dd770f83bb822647b8f5dfca0006f5) Cleanup dead v2 shim.
* [`cfc36388b3`](https://github.com/containerd/containerd/commit/cfc36388b3ed897a04fa39ff712c3958651237e3) Remove redundant error checks
* [`a17c809571`](https://github.com/containerd/containerd/commit/a17c8095716415cebb1157a27db5fccace56b0fc) Merge pull request  [#3253](https://github.com/containerd/containerd/pull/3253) from dvrkps/master
* [`38e3696574`](https://github.com/containerd/containerd/commit/38e3696574544053c8f26e8d699bb1951ec61f38) Use cancel on errors
* [`eded188f
6284
4f`](https://github.com/containerd/containerd/commit/eded188f4fbb24f7a0c3f58e61a28ddfd277c6a5) Fix misspells
* [`969035bcbd`](https://github.com/containerd/containerd/commit/969035bcbd002d0985110942af6e834defe7737c) Stop logging error on v2 multi shim log failure
* [`bf5a424679`](https://github.com/containerd/containerd/commit/bf5a4246798a6c1b1b0af4810fbb2d53eac91112) Merge pull request  [#3246](https://github.com/containerd/containerd/pull/3246) from thaJeztah/bump_ttrpc
* [`a6cd37e5c2`](https://github.com/containerd/containerd/commit/a6cd37e5c220704d9cb5923caf02eb95ea31d591) Merge pull request  [#3243](https://github.com/containerd/containerd/pull/3243) from Random-Liu/update-cri
* [`5bba53f239`](https://github.com/containerd/containerd/commit/5bba53f23947b0ab7c6a1bd2b059dd07f4bbf698) Merge pull request  [#3249](https://github.com/containerd/containerd/pull/3249) from msg555/vndr_update
* [`c7f067f278`](https://github.com/containerd/containerd/commit/c7f067f27886c1182eba77fee77c6de62c73e52f) Update vendor/ with new required vndr go.mod files
* [`53830f66fd`](https://github.com/containerd/containerd/commit/53830f66fd0364b7888b4b570eed5009080b03cb) Merge pull request  [#3240](https://github.com/containerd/containerd/pull/3240) from thaJeztah/bump_runc_1.0.0-rc.8
* [`8c5779c32b`](https://github.com/containerd/containerd/commit/8c5779c32b70a0c55e1c94eb45b305897f7cf3f1) bump containerd/ttrpc 699c4e40d1e7416e08bf7019c7ce2e9beced4636
* [`dff7456804`](https://github.com/containerd/containerd/commit/dff7456804d720a383680f27d930ef35b108fed0) Return NotFound error for kill and delete in deleted state.
* [`5d17ed2302`](https://github.com/containerd/containerd/commit/5d17ed23020b59fd6e677a27512547a47b52ac3c) Update cri to 2fc62db8146ce66f27b37306ad5fda34207835f3.
* [`3a3f0aac88`](https://github.com/containerd/containerd/commit/3a3f0aac8819165839a41fee77a4f4ac8b103097) Merge pull request  [#3241](https://github.com/containerd/containerd/pull/3241) from tonistiigi/differ-close
* [`e5aab17a0e`](https://github.com/containerd/containerd/commit/e5aab17a0ea5f169f3f4c0500b5fd3beb25bc115) bump opencontainers/selinux v1.2.2
* [`dd85aea625`](https://github.com/containerd/containerd/commit/dd85aea625698d248f34edfc57647092864225f5) bump runc v1.0.0-rc8
* [`5b9bd993a8`](https://github.com/containerd/containerd/commit/5b9bd993a87008e06a34258f0672a78564adab13) differ: fix deadlock on commit error
* [`810b3c37bb`](https://github.com/containerd/containerd/commit/810b3c37bb13662a289b9f6b028b5b5435be72b7) Merge pull request  [#3239](https://github.com/containerd/containerd/pull/3239) from sipsma/nosetuplog
* [`48f46516ad`](https://github.com/containerd/containerd/commit/48f46516ad3c5ce28f3604b819c4030fa59bf174) Support disabling default setup of shim logger.
* [`2d780a7a60`](https://github.com/containerd/containerd/commit/2d780a7a60eee7d4314ebc230927b1dc8295bc04) Merge pull request  [#3237](https://github.com/containerd/containerd/pull/3237) from thaJeztah/bump_go_units
* [`c79c7921c0`](https://github.com/containerd/containerd/commit/c79c7921c0bf2a729c7cd50beb1127472af4de90) bump docker/go-units v0.4.0
* [`dfa51c9279`](https://github.com/containerd/containerd/commit/dfa51c92799be3e435991a108fdf51e548a6770a) runtime-v1: kill shim in cleanupAfterDeadShim
* [`835e6d01fb`](https://github.com/containerd/containerd/commit/835e6d01fb46d197afdb76be6179ff7d9c75e3c4) Merge pull request  [#3231](https://github.com/containerd/containerd/pull/3231) from kevpar/dump-stacks-to-file
* [`0376dd4605`](https://github.com/containerd/containerd/commit/0376dd4605abc1de4bf2db2bdbbf61007793f6ff) Don't write dumped stacks to file for ETW capture state
* [`c2fb5d73f9`](https://github.com/containerd/containerd/commit/c2fb5d73f9db8bd6ccecd4d7d12f7c9b876113c2) Merge pull request  [#3230](https://github.com/containerd/containerd/pull/3230) from jterry75/fix_windows_image
* [`e6fc0ed22d`](https://github.com/containerd/containerd/commit/e6fc0ed22d3f670597c9a363810d5e1dbd7f192e) Convert Windows CI to use Microsoft MCR image urls
* [`a91e04356d`](https://github.com/containerd/containerd/commit/a91e04356d5179c81fcc86d2514a0987c3833af4) Merge pull request  [#3223](https://github.com/containerd/containerd/pull/3223) from thaJeztah/bump_gocapability
* [`ffe0b6927b`](https://github.com/containerd/containerd/commit/ffe0b6927bfcae8afb3334f703459a73ec5c13c9) Merge pull request  [#3190](https://github.com/containerd/containerd/pull/3190) from jhowardmsft/jjh/stack2file
* [`a905b0f0af`](https://github.com/containerd/containerd/commit/a905b0f0afc45e3f596096283e250117ed0af5db) Merge pull request  [#3224](https://github.com/containerd/containerd/pull/3224) from thaJeztah/bump_crypto
* [`06a3a480cc`](https://github.com/containerd/containerd/commit/06a3a480ccae4c2020aa36d51f257b75c6aa6a03) bump containerd/console 0650fd9eeb50bab4fc99dceb9f2e14cf58f36e7f
* [`a333dbcfb4`](https://github.com/containerd/containerd/commit/a333dbcfb4a13d7138a9e718ceea48eec7183207) Update x/crypto to 88737f569e3a9c7ab309cdc09a07fe7fc87233c3
* [`0fd02564a2`](https://github.com/containerd/containerd/commit/0fd02564a25b746db6ec1f7649ca331f03143751) bump gocapability
* [`7718d060eb`](https://github.com/containerd/containerd/commit/7718d060ebddad9f5f85386582a1a9a449057d74) Write stack dump to `os.TempDir()` as well
* [`b819d05fd0`](https://github.com/containerd/containerd/commit/b819d05fd09ff11846b5e1a6ff8d9079649a61a4) Merge pull request  [#3222](https://github.com/containerd/containerd/pull/3222) from estesp/test-appveyor
* [`a4942ca4fe`](https://github.com/containerd/containerd/commit/a4942ca4fe45b75ad4873f33d2cec44ce2d6a3e3) Fix error on pull hang in CI
* [`6bcf463b01`](https://github.com/containerd/containerd/commit/6bcf463b019461454fb2164b725ad343b42bc386) Move to sha-specified test image for nanoserver
* [`56d8a05808`](https://github.com/containerd/containerd/commit/56d8a05808e2e8b8e384192d7ae98b5193224219) Merge pull request  [#3220](https://github.com/containerd/containerd/pull/3220) from AkihiroSuda/akihirosuda-email
* [`cfb8b5573a`](https://github.com/containerd/containerd/commit/cfb8b5573aad8d9aab772dcade9cc8fde3628654) .mailmap: update Akihiro Suda's email address
* [`4c16017e2f`](https://github.com/containerd/containerd/commit/4c16017e2f372598d5169965d1c8758cc1bfcce5) Merge pull request  [#3209](https://github.com/containerd/containerd/pull/3209) from Random-Liu/fix-v1-shim-cleanup
* [`8722ec03c3`](https://github.com/containerd/containerd/commit/8722ec03c3a11874d47fbd7468d4473507d0d95f) Merge pull request  [#3213](https://github.com/containerd/containerd/pull/3213) from jcordasc/small-fixes
* [`665715b8a6`](https://github.com/containerd/containerd/commit/665715b8a6c595a1a96e6b60cbf8b544ad63cc78) Merge pull request  [#3208](https://github.com/containerd/containerd/pull/3208) from mxpv/client
* [`be2cbd0b2d`](https://github.com/containerd/containerd/commit/be2cbd0b2d10bc7a6b4aeb09da83a0c04f5572aa) Access to client's GRPC connection object
* [`cc73dc3dbd`](https://github.com/containerd/containerd/commit/cc73dc3dbdfa530bdb2d783520edd9f2b5331581) Merge pull request  [#3217](https://github.com/containerd/containerd/pull/3217) from kevpar/etw-capture-state
* [`78f3dc433c`](https://github.com/containerd/containerd/commit/78f3dc433c45d8cd86cc29441d888f56465d15c7) Allow dumping stacks via ETW capture state
* [`05dd66b2e6`](https://github.com/containerd/containerd/commit/05dd66b2e62f364380a5486b5cece422f5c6ea59) Update go-winio in vendor.conf
* [`396eba1b23`](https://github.com/containerd/containerd/commit/396eba1b23fa57994baad238287e634c147a0196) Merge pull request  [#3216](https://github.com/containerd/containerd/pull/3216) from thaJeztah/bump_mistify_zfs
* [`c9059c7673`](https://github.com/containerd/containerd/commit/c9059c76731f56bfcee5a8c726f68feb0fc5de46) bump mistifyio/go-zfs f784269be439d704d3dfa1906f45dd848fed2beb
* [`32e788a8be`](https://github.com/containerd/containerd/commit/32e788a8be3ab4418265693d9e742c30495fdd4c) Merge pull request  [#3205](https://github.com/containerd/containerd/pull/3205) from Random-Liu/test-runtime-for-cri
* [`906e8bc7dc`](https://github.com/containerd/containerd/commit/906e8bc7dccc54618dcc0e96577d95db5272e183) Merge pull request  [#3207](https://github.com/containerd/containerd/pull/3207) from crosbymichael/ttrpc-deps
* [`63c7a879b6`](https://github.com/containerd/containerd/commit/63c7a879b698c73a1e922e96f6fb8018a1975415) Requeue events in the shim publisher
* [`fc167f9578`](https://github.com/containerd/containerd/commit/fc167f9578079e854ffb6f00fb7cac636473df69) Correct PusherFunc helper to match Pusher intf
* [`a7af3c13a5`](https://github.com/containerd/containerd/commit/a7af3c13a520bc3a717bf54915701fcd42ef71eb) Correct import path in services/server package
* [`9cc58781fa`](https://github.com/containerd/containerd/commit/9cc58781fa2f63488b58877b9c1ce1b4cdc7362e) Check task list to avoid unnecessary cleanup.
* [`97d247cd0f`](https://github.com/containerd/containerd/commit/97d247cd0f63e7eaeb4145ad6d5c56ddcb8b6245) Rename `hrpc` to `tcpServer`
* [`5f4c977ba0`](https://github.com/containerd/containerd/commit/5f4c977ba0c44d6e12a0907251ca133954f0c82d) Merge pull request  [#3162](https://github.com/containerd/containerd/pull/3162) from crosbymichael/tcpservice
* [`ff90b036c7`](https://github.com/containerd/containerd/commit/ff90b036c70c4e2169bd14c265a93c8b0c45109a) Merge pull request  [#3202](https://github.com/containerd/containerd/pull/3202) from crosbymichael/nofile
* [`acca107732`](https://github.com/containerd/containerd/commit/acca10773205905a96ada4f6590a65265c535daa) Merge pull request  [#3204](https://github.com/containerd/containerd/pull/3204) from crosbymichael/fix-forward
* [`047348e198`](https://github.com/containerd/containerd/commit/047348e198cc17404e34717d00ece685bfe3fbfa) Add dialer for events service
* [`5703f415c6`](https://github.com/containerd/containerd/commit/5703f415c6d76cbf2866c388e03605f23ae7c26c) Merge pull request  [#3197](https://github.com/containerd/containerd/pull/3197) from Random-Liu/add-required-plugins
* [`ae87730ad2`](https://github.com/containerd/containerd/commit/ae87730ad2511ae39239ac7aac75074768aa3c1b) Improve shim shutdown logic
* [`a12f836d5a`](https://github.com/containerd/containerd/commit/a12f836d5a8c32a4e31bee3a446631171ac6bfa6) Use $TEST_RUNTIME for cri test.
* [`4b3b99ea11`](https://github.com/containerd/containerd/commit/4b3b99ea1129c71225b18f8a106b99f3ff2d9819) Add support for required plugins.
* [`4ba756edda`](https://github.com/containerd/containerd/commit/4ba756edda18c0afac99a32ba89bc6070c27a0f1) Fix API forward events for shims
* [`1a1f8f11a5`](https://github.com/containerd/containerd/commit/1a1f8f11a54ae2e3a1bfe770f6b7850c2c49a261) Set nofile to 1048576
* [`b911ae3428`](https://github.com/containerd/containerd/commit/b911ae3428717763377d038958597383c7ed0491) Add tcp service for grpc listeners
* [`475619c29e`](https://github.com/containerd/containerd/commit/475619c29e678fef8fb7ac55ffed6b3ea44b5b38) Merge pull request  [#3195](https://github.com/containerd/containerd/pull/3195) from crosbymichael/ttrpc-love
* [`a6f587e4c4`](https://github.com/containerd/containerd/commit/a6f587e4c47720ea779b8042485b43c1d4415111) Use ttrpc to publish runtime v2 events
* [`a8a805cad3`](https://github.com/containerd/containerd/commit/a8a805cad39960b437a0a32afec5f434423a0e93) Add ttrpc server to containerd
* [`db3a8637c1`](https://github.com/containerd/containerd/commit/db3a8637c1316809092069845724616cd4daf75c) Merge pull request  [#3194](https://github.com/containerd/containerd/pull/3194) from crosbymichael/shim-oom
* [`c93d645435`](https://github.com/containerd/containerd/commit/c93d6454358ee764bdcee9f14c37a71deb92e9d5) Add GetOOMScore function
* [`ae5ca8177d`](https://github.com/containerd/containerd/commit/ae5ca8177d6b0ab85923787f91d2aa717e1f6fd2) Refactor mount path check and add comments
* [`aaca11c40d`](https://github.com/containerd/containerd/commit/aaca11c40d6540bfccf823485c1dea20106ba7d7) Merge pull request  [#3189](https://github.com/containerd/containerd/pull/3189) from dmcgowan/extended-security-releases
* [`993fb310f6`](https://github.com/containerd/containerd/commit/993fb310f6637b9c9a69f0036db3fe7824eb9167) Merge pu...
Assets 2
Loading
0