moby--moby/pkg/plugins
Sebastiaan van Stijn 303ea8e820
pkg/plugins: fix compatibility with go1.16
commit c55a4ac779 changed the ioutil utilities
to use the new os variants, per recommendation from the go 1.16 release notes:
https://golang.org/doc/go1.16#ioutil

> we encourage new code to use the new definitions in the io and os packages.
> Here is a list of the new locations of the names exported by io/ioutil:

However, the devil is in the detail, and io.ReadDir() is not a direct
replacement for ioutil.ReadDir();

> ReadDir => os.ReadDir (note: returns a slice of os.DirEntry rather than a slice of fs.FileInfo)

go1.16 added a io.FileInfoToDirEntry() utility to concert a DirEntry to
a FileInfo, but it's not available in go1.16

This patch copies the FileInfoToDirEntry code, and uses it for go1.16.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2021-08-31 15:42:54 +02:00
..
pluginrpc-gen refactor: move from io/ioutil to io and os package 2021-08-27 14:56:57 +08:00
transport
client.go refactor: move from io/ioutil to io and os package 2021-08-27 14:56:57 +08:00
client_test.go
discovery.go pkg/plugins: fix compatibility with go1.16 2021-08-31 15:42:54 +02:00
discovery_test.go refactor: move from io/ioutil to io and os package 2021-08-27 14:56:57 +08:00
discovery_unix.go
discovery_unix_test.go refactor: move from io/ioutil to io and os package 2021-08-27 14:56:57 +08:00
discovery_windows.go
errors.go
plugin_test.go refactor: move from io/ioutil to io and os package 2021-08-27 14:56:57 +08:00
plugins.go
plugins_unix.go
plugins_windows.go
utils.go pkg/plugins: fix compatibility with go1.16 2021-08-31 15:42:54 +02:00
utils_go1.16.go pkg/plugins: fix compatibility with go1.16 2021-08-31 15:42:54 +02:00