Bump github.com/containers/storage from 1.30.1 to 1.30.2

Bumps [github.com/containers/storage](https://github.com/containers/storage) from 1.30.1 to 1.30.2.
- [Release notes](https://github.com/containers/storage/releases)
- [Changelog](https://github.com/containers/storage/blob/master/docs/containers-storage-changes.md)
- [Commits](https://github.com/containers/storage/compare/v1.30.1...v1.30.2)

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot]
2021-05-10 10:16:27 +00:00
committed by GitHub
parent 54bed1025d
commit d2f7d5cbab
61 changed files with 48 additions and 17031 deletions

View File

@@ -2,7 +2,6 @@ package graphdriver
import (
"bytes"
"encoding/json"
"fmt"
"os"

View File

@@ -5,7 +5,6 @@ package devmapper
import (
"bufio"
"bytes"
"encoding/json"
"fmt"
"io/ioutil"
"os"

View File

@@ -4,7 +4,6 @@ package devmapper
import (
"bufio"
"encoding/json"
"fmt"
"io"
"io/ioutil"

View File

@@ -0,0 +1,5 @@
package devmapper
import jsoniter "github.com/json-iterator/go"
var json = jsoniter.ConfigCompatibleWithStandardLibrary

View File

@@ -0,0 +1,5 @@
package graphdriver
import jsoniter "github.com/json-iterator/go"
var json = jsoniter.ConfigCompatibleWithStandardLibrary

View File

@@ -0,0 +1,5 @@
package overlay
import jsoniter "github.com/json-iterator/go"
var json = jsoniter.ConfigCompatibleWithStandardLibrary

View File

@@ -4,7 +4,6 @@ package overlay
import (
"bytes"
"encoding/json"
"flag"
"fmt"
"os"

View File

@@ -620,7 +620,7 @@ func supportsOverlay(home string, homeMagic graphdriver.FsMagic, rootUID, rootGI
if len(flags) < unix.Getpagesize() {
err := unix.Mount("overlay", mergedDir, "overlay", 0, flags)
if err == nil {
logrus.Errorf("overlay test mount with multiple lowers failed, but succeeded with a single lower")
logrus.StandardLogger().Logf(logLevel, "overlay test mount with multiple lowers failed, but succeeded with a single lower")
return supportsDType, errors.Wrap(graphdriver.ErrNotSupported, "kernel too old to provide multiple lowers feature for overlay")
}
logrus.Debugf("overlay test mount with a single lower failed %v", err)

View File

@@ -0,0 +1,5 @@
package windows
import jsoniter "github.com/json-iterator/go"
var json = jsoniter.ConfigCompatibleWithStandardLibrary

View File

@@ -6,7 +6,6 @@ import (
"archive/tar"
"bufio"
"bytes"
"encoding/json"
"errors"
"fmt"
"io"