Skip to content

Commit f12a1cd

Browse files
authored
Merge pull request #1821 from FabianKramm/master
chore: bump devspace dependencies
2 parents 862a9f3 + 0f87065 commit f12a1cd

File tree

734 files changed

+50614
-13458
lines changed

Some content is hidden

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

734 files changed

+50614
-13458
lines changed

go.mod

Lines changed: 13 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,15 @@ module github.com/loft-sh/devspace
33
go 1.15
44

55
require (
6-
github.com/AlecAivazis/survey/v2 v2.2.9
6+
github.com/AlecAivazis/survey/v2 v2.3.2
77
github.com/blang/semver v3.5.1+incompatible
88
github.com/bmatcuk/doublestar v1.1.1
99
github.com/compose-spec/compose-go v1.0.1
10-
github.com/containerd/containerd v1.4.1 // indirect
11-
github.com/containerd/continuity v0.0.0-20200928162600-f2cc35102c2a // indirect
1210
github.com/docker/cli v20.10.0-beta1.0.20201029214301-1d20b15adc38+incompatible
1311
github.com/docker/distribution v2.7.1+incompatible
1412
github.com/docker/docker v20.10.5+incompatible
1513
github.com/docker/go-connections v0.4.0
16-
github.com/docker/libtrust v0.0.0-20160708172513-aabc10ec26b7 // indirect
17-
github.com/evanphx/json-patch v4.11.0+incompatible
14+
github.com/evanphx/json-patch v4.12.0+incompatible
1815
github.com/evanphx/json-patch/v5 v5.1.0
1916
github.com/ghodss/yaml v1.0.0
2017
github.com/golang/protobuf v1.5.2
@@ -23,47 +20,44 @@ require (
2320
github.com/hashicorp/go-version v1.3.0
2421
github.com/inconshreveable/go-update v0.0.0-20160112193335-8152e7eb6ccf // indirect
2522
github.com/joho/godotenv v1.3.0
26-
github.com/json-iterator/go v1.1.11
23+
github.com/json-iterator/go v1.1.12
2724
github.com/juju/ratelimit v1.0.1
2825
github.com/k0kubun/go-ansi v0.0.0-20180517002512-3bf9e2903213
2926
github.com/loft-sh/notify v0.0.0-20210827094439-0720dcc7feee
3027
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b
3128
github.com/mitchellh/go-homedir v1.1.0
3229
github.com/moby/buildkit v0.8.2
33-
github.com/moby/sys/mount v0.2.0 // indirect
34-
github.com/moby/sys/symlink v0.1.0 // indirect
30+
github.com/moby/sys/symlink v0.2.0 // indirect
3531
github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6
3632
github.com/onsi/ginkgo v1.14.0
3733
github.com/onsi/gomega v1.10.1
3834
github.com/otiai10/copy v0.0.0-20180813030456-0046ee23fdbd
39-
github.com/otiai10/mint v1.3.2 // indirect
35+
github.com/otiai10/mint v1.3.3 // indirect
4036
github.com/pkg/errors v0.9.1
4137
github.com/rhysd/go-github-selfupdate v0.0.0-20180520142321-41c1bbb0804a
4238
github.com/sabhiram/go-gitignore v0.0.0-20180611051255-d3107576ba94
4339
github.com/sirupsen/logrus v1.8.1
4440
github.com/skratchdot/open-golang v0.0.0-20160302144031-75fb7ed4208c
45-
github.com/spf13/cobra v1.1.3
41+
github.com/spf13/cobra v1.2.1
4642
github.com/spf13/pflag v1.0.5
4743
github.com/syncthing/notify v0.0.0-20210616190510-c6b7342338d2 // indirect
4844
github.com/tcnksm/go-gitconfig v0.1.2 // indirect
4945
github.com/toqueteos/trie v1.0.0 // indirect
5046
github.com/vmware-labs/yaml-jsonpath v0.3.2
51-
golang.org/x/net v0.0.0-20210520170846-37e1c6afe023
52-
google.golang.org/grpc v1.38.0
47+
golang.org/x/net v0.0.0-20210825183410-e898025ed96a
48+
google.golang.org/grpc v1.40.0
5349
gopkg.in/natefinch/lumberjack.v2 v2.0.0
5450
gopkg.in/src-d/enry.v1 v1.6.4
5551
gopkg.in/src-d/go-git.v4 v4.13.1
5652
gopkg.in/toqueteos/substring.v1 v1.0.2 // indirect
5753
gopkg.in/yaml.v2 v2.4.0
5854
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
5955
gotest.tools v2.2.0+incompatible
60-
k8s.io/api v0.22.2
61-
k8s.io/apimachinery v0.22.2
62-
k8s.io/client-go v0.22.2
56+
k8s.io/api v0.23.0
57+
k8s.io/apimachinery v0.23.0
58+
k8s.io/client-go v0.23.0
6359
k8s.io/klog v1.0.0
64-
k8s.io/klog/v2 v2.9.0
65-
k8s.io/kubectl v0.22.2
60+
k8s.io/klog/v2 v2.30.0
61+
k8s.io/kubectl v0.23.0
6662
mvdan.cc/sh/v3 v3.4.1
6763
)
68-
69-
replace github.com/agl/ed25519 => github.com/agl/ed25519 v0.0.0-20170116200512-5312a6153412

go.sum

Lines changed: 197 additions & 61 deletions
Large diffs are not rendered by default.

pkg/devspace/sync/symlink.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ func NewSymlink(upstream *upstream, symlinkPath, targetPath string, isDir bool)
5050
watchPath += "/**"
5151
}
5252

53-
watcher, err := watch.New([]string{watchPath}, []string{}, time.Millisecond*500, symlink.handleChange, log.Discard)
53+
watcher, err := watch.New([]string{watchPath}, []string{}, time.Second*4, symlink.handleChange, log.Discard)
5454
if err != nil {
5555
return nil, err
5656
}

vendor/cloud.google.com/go/compute/metadata/metadata.go

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

vendor/github.com/AlecAivazis/survey/v2/README.md

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

vendor/github.com/AlecAivazis/survey/v2/_tasks.hcl

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

vendor/github.com/AlecAivazis/survey/v2/core/template.go

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

vendor/github.com/AlecAivazis/survey/v2/core/write.go

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

vendor/github.com/AlecAivazis/survey/v2/go.mod

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

vendor/github.com/AlecAivazis/survey/v2/go.sum

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

0 commit comments

Comments
 (0)