Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

webpa-common update with tls server config fix #242

Merged
merged 2 commits into from
Nov 11, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]


## [v0.4.2]
### Fixed
- Bug in which only mTLS was allowed as valid config for a webpa server. [#242](https://github.com/xmidt-org/caduceus/pull/242)

## [v0.4.1]
- update argus integration [#239](https://github.com/xmidt-org/caduceus/pull/239)
- switch webhook configuration from sns to argus [#202](https://github.com/xmidt-org/caduceus/pull/202)
Expand Down Expand Up @@ -116,7 +121,8 @@ fixed build upload
### Added
- Initial creation

[Unreleased]: https://github.com/Comcast/caduceus/compare/v0.4.1...HEAD
[Unreleased]: https://github.com/Comcast/caduceus/compare/v0.4.2...HEAD
[v0.4.2]: https://github.com/Comcast/caduceus/compare/v0.4.1...v0.4.2
[v0.4.1]: https://github.com/Comcast/caduceus/compare/v0.4.0...v0.4.1
[v0.4.0]: https://github.com/Comcast/caduceus/compare/v0.3.0...v0.4.0
[v0.3.0]: https://github.com/Comcast/caduceus/compare/v0.2.8...v0.3.0
Expand Down
6 changes: 2 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,14 @@ require (
github.com/SermoDigital/jose v0.9.2-0.20161205224733-f6df55f235c2
github.com/c9s/goprocinfo v0.0.0-20190309065803-0b2ad9ac246b // indirect
github.com/davecgh/go-spew v1.1.1
github.com/go-kit/kit v0.9.0
github.com/go-kit/kit v0.10.0
github.com/gorilla/mux v1.7.4
github.com/justinas/alice v1.2.0
github.com/samuel/go-zookeeper v0.0.0-20190810000440-0ceca61e4d75 // indirect
github.com/satori/go.uuid v1.2.0
github.com/spaolacci/murmur3 v1.1.0 // indirect
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.7.0
github.com/stretchr/testify v1.5.1
github.com/xmidt-org/argus v0.3.9 // indirect
github.com/xmidt-org/webpa-common v1.11.2
github.com/xmidt-org/webpa-common v1.11.3
github.com/xmidt-org/wrp-go/v2 v2.0.0
)
Loading