File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 31
31
- (Feature) Member restarts metric
32
32
- (Bugfix) Infinite loop fix in ArangoD AsyncClient
33
33
- (Bugfix) Add Panic Handler
34
+ - (Bugfix) Unify yaml packages
34
35
35
36
## [ 1.2.13] ( https://github.com/arangodb/kube-arangodb/tree/1.2.13 ) (2022-06-07)
36
37
- (Bugfix) Fix arangosync members state inspection
Original file line number Diff line number Diff line change @@ -97,10 +97,10 @@ require (
97
97
google.golang.org/appengine v1.6.7 // indirect
98
98
google.golang.org/protobuf v1.27.1 // indirect
99
99
gopkg.in/inf.v0 v0.9.1 // indirect
100
- gopkg.in/yaml.v2 v2.4.0
100
+ gopkg.in/yaml.v2 v2.4.0 // indirect
101
101
k8s.io/klog/v2 v2.9.0 // indirect
102
102
k8s.io/kube-openapi v0.0.0-20211110012726-3cc51fd1e909 // indirect
103
103
k8s.io/utils v0.0.0-20210521133846-da695404a2bc // indirect
104
104
sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect
105
- sigs.k8s.io/yaml v1.2.0 // indirect
105
+ sigs.k8s.io/yaml v1.2.0
106
106
)
Original file line number Diff line number Diff line change @@ -25,9 +25,9 @@ import (
25
25
"strings"
26
26
"time"
27
27
28
- "gopkg.in/yaml.v2"
29
28
core "k8s.io/api/core/v1"
30
29
meta "k8s.io/apimachinery/pkg/apis/meta/v1"
30
+ "sigs.k8s.io/yaml"
31
31
32
32
certificates "github.com/arangodb-helper/go-certificates"
33
33
You can’t perform that action at this time.
0 commit comments