Skip to content

Commit 5bfeab4

Browse files
EItanyasoloio-bulldozer[bot]
authored andcommitted
Dep update (#37)
* dep-update * changelog * bump machine type * cleaned up solo-kit version bump errors
1 parent b7af295 commit 5bfeab4

File tree

69 files changed

+1842
-890
lines changed

Some content is hidden

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

69 files changed

+1842
-890
lines changed

Gopkg.lock

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

Gopkg.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@
4545

4646
[[constraint]]
4747
name = "github.com/solo-io/solo-kit"
48-
version = "0.3.1"
48+
version = "0.9.6"
4949

5050
[[constraint]]
5151
name = "github.com/solo-io/gloo"
52-
version = "0.10.2"
52+
version = "0.13.25"
5353

5454
[[override]]
5555
name = "github.com/hashicorp/consul"
@@ -66,4 +66,4 @@
6666

6767
[[override]]
6868
name = "github.com/solo-io/go-utils"
69-
version = "0.7.11"
69+
version = "0.8.16"

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ update-deps:
3131
go get -u golang.org/x/tools/cmd/goimports
3232
go get -u github.com/gogo/protobuf/gogoproto
3333
go get -u github.com/gogo/protobuf/protoc-gen-gogo
34-
go get -u github.com/lyft/protoc-gen-validate
34+
go get -u github.com/envoyproxy/protoc-gen-validate
3535
go get -u github.com/paulvollmer/2gobytes
3636

3737
.PHONY: pin-repos
@@ -50,8 +50,8 @@ generated-code: $(OUTPUT_DIR)/.generated-code
5050

5151
SUBDIRS:=pkg cmd
5252
$(OUTPUT_DIR)/.generated-code:
53-
go generate ./...
54-
(rm docs/cli/sqoopctl* && go run cli/cmd/docs/main.go)
53+
SKIP_MOCK_GEN=1 go generate ./...
54+
(rm -f docs/cli/sqoopctl*; go run cli/cmd/docs/main.go)
5555
gofmt -w $(SUBDIRS)
5656
goimports -w $(SUBDIRS)
5757
mkdir -p $(OUTPUT_DIR)
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
11
changelog:
2-
- type: NON_USER_FACING
3-
description: Added auto update of packagement management formulas as part of release process
2+
- type: DEPENDENCY_BUMP
3+
dependencyOwner: solo-io
4+
dependencyRepo: gloo
5+
dependencyTag: v0.13.25
6+
description: Update gloo to version v0.13.25.
7+
- type: DEPENDENCY_BUMP
8+
dependencyOwner: solo-io
9+
dependencyRepo: solo-kit
10+
dependencyTag: v0.9.6
11+
description: Update solo-kit to version v0.9.6.
12+
- type: DEPENDENCY_BUMP
13+
dependencyOwner: solo-io
14+
dependencyRepo: go-utils
15+
dependencyTag: v0.8.16
16+
description: Update gloo to version v0.8.16.

changelog/v0.2.6/dep-update.yaml

Whitespace-only changes.

ci/pin_repos.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package main
22

33
import (
44
version "github.com/solo-io/go-utils/versionutils"
5-
"github.com/solo-io/solo-kit/pkg/utils/log"
5+
"github.com/solo-io/go-utils/log"
66
)
77

88
func main() {

0 commit comments

Comments
 (0)