Skip to content

Commit e42715c

Browse files
mitchdraftsoloio-bulldozer[bot]
authored andcommitted
bump deps (#238)
* bump-deps * update test cluster name * regen, lock protobuf libs * bump dep to 1.3, fix local terminal connection * update cl
1 parent e812d28 commit e42715c

11 files changed

+106
-193
lines changed

Gopkg.lock

+14-21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gopkg.toml

+11-8
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,14 @@
2121
# version = "2.4.0"
2222

2323

24+
[[constraint]]
25+
version = "1.3.0"
26+
name = "github.com/gogo/protobuf"
27+
28+
[[override]]
29+
version = "1.3.1"
30+
name = "github.com/golang/protobuf"
31+
2432
[[constraint]]
2533
branch = "master"
2634
name = "github.com/spf13/cobra"
@@ -31,7 +39,7 @@
3139

3240
[[constraint]]
3341
name = "github.com/go-delve/delve"
34-
version = "1.2.0"
42+
version = "1.3.0"
3543

3644
[[constraint]]
3745
name = "github.com/davecgh/go-spew"
@@ -55,11 +63,11 @@
5563

5664
[[constraint]]
5765
name = "github.com/solo-io/solo-kit"
58-
version = "0.10.0"
66+
version = "0.10.10"
5967

6068
[[constraint]]
6169
name = "github.com/solo-io/go-utils"
62-
version = "0.9.10"
70+
version = "0.9.17"
6371

6472
[[constraint]]
6573
name = "github.com/solo-io/build"
@@ -77,11 +85,6 @@
7785
name = "gopkg.in/fsnotify.v1"
7886
source = "https://github.com/fsnotify/fsnotify.git"
7987

80-
[[override]]
81-
name = "github.com/lyft/protoc-gen-validate"
82-
version = "0.0.6"
83-
source = "github.com/envoyproxy/protoc-gen-validate"
84-
8588
# make sure all kubernetes code is the same version.
8689
# when updating, update all in the same time.
8790

changelog/v0.5.19/go-util.yaml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
changelog:
2+
- dependencyOwner: solo-io
3+
dependencyRepo: go-utils
4+
dependencyTag: v0.9.17
5+
description: Update go-util to version v0.9.17.
6+
type: DEPENDENCY_BUMP
7+
- dependencyOwner: solo-io
8+
dependencyRepo: solo-kit
9+
dependencyTag: v0.10.10
10+
description: Update solo-kit to version v0.10.10.
11+
type: DEPENDENCY_BUMP
12+
- type: FIX
13+
description: Fix timing issue to allow local dlv to connect to server.
14+
issueLink: https://github:com/solo-io/squash/issues/237

cloudbuild.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ steps:
4343
waitFor: ['dep']
4444

4545
- name: gcr.io/cloud-builders/gcloud
46-
args: ['container', 'clusters', 'get-credentials', 'test-cluster']
46+
args: ['container', 'clusters', 'get-credentials', 'squash-test']
4747
id: 'get-creds'
4848
waitFor: ['set-zone']
4949

@@ -84,7 +84,7 @@ steps:
8484
- 'PROJECT_ROOT=github.com/solo-io/squash'
8585
- 'GOPATH=/workspace/gopath'
8686
- 'CLOUDSDK_COMPUTE_ZONE=us-central1-a'
87-
- 'CLOUDSDK_CONTAINER_CLUSTER=test-cluster'
87+
- 'CLOUDSDK_CONTAINER_CLUSTER=squash-test'
8888
- 'RUN_KUBE_TESTS=1'
8989
- 'TAGGED_VERSION=$TAG_NAME'
9090
- 'BUILD_ID=$BUILD_ID'

pkg/api/v1/api_snapshot_emitter.sk.go

+38-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/api/v1/api_snapshot_simple_emitter.sk.go

+6-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/api/v1/debug_attachment.pb.go

+4-62
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/config/squash.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ func (s *Squash) connectUser(da *squashv1.DebugAttachment, remoteDbgPort int) er
196196
}
197197

198198
dbgCmd := debugger.GetDebugCmd(s.LocalPort)
199-
return s.callLocalDebuggerCommand(dbgCmd)
199+
return dbgCmd.Run()
200200
}
201201

202202
func (s *Squash) printEditorExtensionData(remoteDbgPort int) error {

0 commit comments

Comments
 (0)