Skip to content

Commit

Permalink
Merge pull request #131 from xmidt-org/feature/bump_deps
Browse files Browse the repository at this point in the history
bump dependencies
  • Loading branch information
kcajmagic authored Apr 11, 2022
2 parents cdc28f5 + 34384db commit c8f8f82
Show file tree
Hide file tree
Showing 10 changed files with 419 additions and 278 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [v0.14.3]
- bump dependencies [#131](https://github.com/xmidt-org/gungnir/pull/131)
- Migrate to github actions, normalize analysis tools, Dockerfiles and Makefiles. [#118](https://github.com/xmidt-org/gungnir/pull/118)
- bumped bascule to remove security vulnerability. [#125](https://github.com/xmidt-org/gungnir/pull/125)
- Added the ability to filter events by the partnerID from the request. [#126](https://github.com/xmidt-org/gungnir/pull/126)
Expand Down Expand Up @@ -166,7 +169,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Initial creation
- Bumped codex version, modified code to match changes

[Unreleased]: https://github.com/xmidt-org/gungnir/compare/v0.14.2...HEAD
[Unreleased]: https://github.com/xmidt-org/gungnir/compare/v0.14.3...HEAD
[v0.14.3]: https://github.com/xmidt-org/gungnir/compare/v0.14.2...v0.14.3
[v0.14.2]: https://github.com/xmidt-org/gungnir/compare/v0.14.1...v0.14.2
[v0.14.1]: https://github.com/xmidt-org/gungnir/compare/v0.14.0...v0.14.1
[v0.14.0]: https://github.com/xmidt-org/gungnir/compare/v0.13.1...v0.14.0
Expand Down
2 changes: 1 addition & 1 deletion deviceStatus.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import (
"github.com/goph/emperror"
"github.com/gorilla/mux"
db "github.com/xmidt-org/codex-db"
"github.com/xmidt-org/webpa-common/logging"
"github.com/xmidt-org/webpa-common/v2/logging"
"github.com/xmidt-org/wrp-go/v3"
)

Expand Down
4 changes: 2 additions & 2 deletions deviceStatus_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ import (
"github.com/gorilla/mux"
"github.com/stretchr/testify/assert"
"github.com/xmidt-org/voynicrypto"
"github.com/xmidt-org/webpa-common/logging"
"github.com/xmidt-org/webpa-common/xmetrics/xmetricstest"
"github.com/xmidt-org/webpa-common/v2/logging"
"github.com/xmidt-org/webpa-common/v2/xmetrics/xmetricstest"
"github.com/xmidt-org/wrp-go/v3"

db "github.com/xmidt-org/codex-db"
Expand Down
20 changes: 11 additions & 9 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,22 @@ go 1.15
require (
github.com/InVisionApp/go-health/v2 v2.1.2
github.com/c9s/goprocinfo v0.0.0-20190309065803-0b2ad9ac246b // indirect
github.com/go-kit/kit v0.10.0
github.com/go-kit/kit v0.12.0
github.com/goph/emperror v0.17.3-0.20190703203600-60a8d9faa17b
github.com/gorilla/mux v1.8.0
github.com/justinas/alice v1.2.0
github.com/spf13/cast v1.3.1
github.com/spf13/cast v1.4.1
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.7.1
github.com/spf13/viper v1.9.0
github.com/stretchr/testify v1.7.0
github.com/ugorji/go/codec v1.1.7
github.com/xmidt-org/arrange v0.3.0 // indirect
github.com/ugorji/go/codec v1.2.7
github.com/xmidt-org/bascule v0.10.2
github.com/xmidt-org/codex-db v0.7.0
github.com/xmidt-org/themis v0.4.7 // indirect
github.com/xmidt-org/codex-db v0.7.1
github.com/xmidt-org/voynicrypto v0.1.1
github.com/xmidt-org/webpa-common v1.11.5
github.com/xmidt-org/wrp-go/v3 v3.0.1
github.com/xmidt-org/webpa-common/v2 v2.0.4
github.com/xmidt-org/wrp-go/v3 v3.1.0
golang.org/x/mod v0.6.0-dev.0.20220330205332-605edab4323b // indirect
golang.org/x/sys v0.0.0-20220408201424-a24fb2fb8a0f // indirect
golang.org/x/tools v0.1.10 // indirect
golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f // indirect
)
354 changes: 286 additions & 68 deletions go.sum

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ import (
"github.com/spf13/viper"

"github.com/xmidt-org/codex-db/healthlogger"
"github.com/xmidt-org/webpa-common/basculechecks"
"github.com/xmidt-org/webpa-common/basculemetrics"
"github.com/xmidt-org/webpa-common/concurrent"
"github.com/xmidt-org/webpa-common/logging"
"github.com/xmidt-org/webpa-common/server"
"github.com/xmidt-org/webpa-common/v2/basculechecks"
"github.com/xmidt-org/webpa-common/v2/basculemetrics"
"github.com/xmidt-org/webpa-common/v2/concurrent"
"github.com/xmidt-org/webpa-common/v2/logging"
"github.com/xmidt-org/webpa-common/v2/server"

"github.com/InVisionApp/go-health/v2"
"github.com/InVisionApp/go-health/v2/handlers"
Expand Down
2 changes: 1 addition & 1 deletion metrics.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ package main
import (
"github.com/go-kit/kit/metrics"
"github.com/go-kit/kit/metrics/provider"
"github.com/xmidt-org/webpa-common/xmetrics"
"github.com/xmidt-org/webpa-common/v2/xmetrics"
)

const (
Expand Down
Loading

0 comments on commit c8f8f82

Please sign in to comment.