Skip to content

Commit 72fa781

Browse files
authored
Use restic 0.13.0 (#159)
/cherry-pick Signed-off-by: 1gtm <1gtm@appscode.com>
1 parent aa89dd4 commit 72fa781

File tree

252 files changed

+12566
-7081
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

252 files changed

+12566
-7081
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ ARCH := $(if $(GOARCH),$(GOARCH),$(shell go env GOARCH))
5656
GO_VERSION ?= 1.18
5757
BUILD_IMAGE ?= appscode/golang-dev:$(GO_VERSION)
5858

59-
RESTIC_VER := 0.12.1
59+
RESTIC_VER := 0.13.0
6060

6161
OUTBIN = bin/$(BIN)-$(OS)-$(ARCH)
6262
ifeq ($(OS),windows)

go.mod

Lines changed: 27 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,28 +3,50 @@ module stash.appscode.dev/cli
33
go 1.15
44

55
require (
6-
github.com/evanphx/json-patch v4.11.0+incompatible
6+
github.com/evanphx/json-patch v4.12.0+incompatible
7+
github.com/go-openapi/jsonpointer v0.19.5 // indirect
8+
github.com/go-openapi/jsonreference v0.19.5 // indirect
9+
github.com/go-openapi/spec v0.19.8 // indirect
10+
github.com/go-openapi/swag v0.19.14 // indirect
11+
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
12+
github.com/google/gofuzz v1.2.0 // indirect
713
github.com/json-iterator/go v1.1.12
814
github.com/kubernetes-csi/external-snapshotter/client/v4 v4.1.0
15+
github.com/mailru/easyjson v0.7.7 // indirect
16+
github.com/onsi/ginkgo v1.16.5 // indirect
17+
github.com/onsi/gomega v1.17.0 // indirect
918
github.com/pkg/errors v0.9.1
19+
github.com/prometheus/common v0.28.0 // indirect
1020
github.com/spf13/cobra v1.2.1
21+
go.uber.org/zap v1.19.1 // indirect
22+
golang.org/x/net v0.0.0-20211209124913-491a49abca63 // indirect
23+
golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f // indirect
24+
golang.org/x/sys v0.0.0-20211029165221-6e7872819dc8 // indirect
25+
golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b // indirect
1126
golang.org/x/text v0.3.7
1227
gomodules.xyz/go-sh v0.1.0
1328
gomodules.xyz/logs v0.0.6
1429
gomodules.xyz/pointer v0.1.0
1530
gomodules.xyz/runtime v0.2.0
16-
gomodules.xyz/x v0.0.10
31+
gomodules.xyz/x v0.0.13
32+
google.golang.org/protobuf v1.27.1 // indirect
1733
k8s.io/api v0.21.1
1834
k8s.io/apimachinery v0.21.1
1935
k8s.io/cli-runtime v0.21.1
2036
k8s.io/client-go v0.21.1
2137
k8s.io/klog/v2 v2.9.0
2238
k8s.io/kube-aggregator v0.21.1
39+
k8s.io/kube-openapi v0.0.0-20211115234752-e816edb12b65 // indirect
2340
k8s.io/kubectl v0.21.1
24-
kmodules.xyz/client-go v0.0.0-20220203031013-1de48437aaf3
25-
kmodules.xyz/objectstore-api v0.0.0-20211207131029-3271069de43e
26-
kmodules.xyz/offshoot-api v0.0.0-20211207130839-cc7187e020cf
41+
k8s.io/utils v0.0.0-20210930125809-cb0fa318a74b // indirect
42+
kmodules.xyz/client-go v0.0.0-20220317213815-2a6d5a5784f2
43+
kmodules.xyz/custom-resources v0.0.0-20220317220154-7beb809b1f5e // indirect
44+
kmodules.xyz/objectstore-api v0.0.0-20220317220441-f1d593d0a778
45+
kmodules.xyz/offshoot-api v0.0.0-20220323112402-3b0fd2ea77d6
2746
kmodules.xyz/openshift v0.0.0-20210618001443-f2507caa512f
47+
kmodules.xyz/webhook-runtime v0.0.0-20220317222714-0ddfc9e4c221 // indirect
48+
sigs.k8s.io/structured-merge-diff/v4 v4.2.0 // indirect
49+
sigs.k8s.io/yaml v1.3.0 // indirect
2850
stash.appscode.dev/apimachinery v0.18.1-0.20220308093046-7df8eca4f066
2951
stash.appscode.dev/stash v0.18.1-0.20220308112550-f1c381ec7e7a
3052
)

go.sum

Lines changed: 59 additions & 24 deletions
Large diffs are not rendered by default.

vendor/github.com/evanphx/json-patch/.gitignore

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/evanphx/json-patch/patch.go

Lines changed: 63 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/google/gofuzz/.travis.yml

Lines changed: 4 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/google/gofuzz/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/google/gofuzz/README.md

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/google/gofuzz/bytesource/bytesource.go

Lines changed: 81 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)