Skip to content
This repository has been archived by the owner on May 23, 2024. It is now read-only.

Commit

Permalink
Upgrade jaeger-lib to 2.2 and unpin Prom client (#434)
Browse files Browse the repository at this point in the history
* Upgrade jaeger-lib to 2.2 and unpin Prom client

Signed-off-by: Yuri Shkuro <[email protected]>

* Use official jaeger-lib release

Signed-off-by: Yuri Shkuro <[email protected]>

* Update glide

Signed-off-by: Yuri Shkuro <[email protected]>

* Restore prom in dep

Signed-off-by: Yuri Shkuro <[email protected]>
  • Loading branch information
yurishkuro authored Sep 23, 2019
1 parent f349093 commit e95cd44
Show file tree
Hide file tree
Showing 5 changed files with 88 additions and 60 deletions.
87 changes: 52 additions & 35 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

[[constraint]]
name = "github.com/prometheus/client_golang"
version = "0.8.0"
version = "^1"

[[constraint]]
name = "github.com/stretchr/testify"
Expand All @@ -20,7 +20,7 @@

[[constraint]]
name = "github.com/uber/jaeger-lib"
version = "^2.0"
version = "^2.2"

[[constraint]]
name = "go.uber.org/zap"
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PROJECT_ROOT=github.com/uber/jaeger-client-go
PACKAGES := $(go list ./... | awk -F/ 'NR>1 {print "./"$4"/..."}' | grep -v -e ./thrift-gen/... -e ./thrift/... | sort -u)
PACKAGES := $(shell go list ./... | awk -F/ 'NR>1 {print "./"$$4"/..."}' | grep -v -e ./thrift-gen/... -e ./thrift/... | sort -u)
# all .go files that don't exist in hidden directories
ALL_SRC := $(shell find . -name "*.go" | grep -v -e vendor -e thrift-gen -e ./thrift/ \
-e ".*/\..*" \
Expand Down
46 changes: 26 additions & 20 deletions glide.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions glide.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,16 @@ import:
- metrics
- package: github.com/pkg/errors
version: ~0.8.0
- package: go.uber.org/zap
source: https://github.com/uber-go/zap.git
version: ^1
- package: github.com/uber-go/atomic
version: ^1
- package: github.com/prometheus/client_golang
version: ^1
testImport:
- package: github.com/stretchr/testify
subpackages:
- assert
- require
- suite
- package: github.com/prometheus/client_golang
version: v0.8.0

0 comments on commit e95cd44

Please sign in to comment.