diff --git a/CHANGELOG.md b/CHANGELOG.md index e51cefa83..fc7bbc9ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [1.7.2] - 2020-02-05 + ### Added - Support for OpenShift 4.3 and 4.5. [conjurdemos/kubernetes-conjur-demo#122](https://github.com/conjurdemos/kubernetes-conjur-demo/issues/122) @@ -15,11 +17,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. [conjurdemos/kubernetes-conjur-demo#122](https://github.com/conjurdemos/kubernetes-conjur-demo/issues/122) ### Fixed -- Automatic endpoint discovery for the aws connector was updated. This - functionality modifies the request endpoint. There were 2 bugs where (1) the - request host header was not being updated to the discovered endpoint, and (2) - the request modification was being done after signing the request which would - result in a failing integrity check. +- Automatic endpoint discovery for the AWS connector was updated to address two + bugs where (1) the request host header was not being updated to the discovered + endpoint, and (2) the request modification was being done after signing the + request which would result in a failing integrity check. [cyberark/secretless-broker#1369](https://github.com/cyberark/secretless-broker/issues/1369) ## [1.7.1] - 2020-10-20 @@ -544,7 +545,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ### Added - The first tagged version. -[Unreleased]: https://github.com/cyberark/secretless-broker/compare/v1.7.1...HEAD +[Unreleased]: https://github.com/cyberark/secretless-broker/compare/v1.7.2...HEAD [0.2.0]: https://github.com/cyberark/secretless-broker/compare/v0.1.0...v0.2.0 [0.3.0]: https://github.com/cyberark/secretless-broker/compare/v0.2.0...v0.3.0 [0.4.0]: https://github.com/cyberark/secretless-broker/compare/v0.3.0...v0.4.0 @@ -572,3 +573,4 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. [1.6.0]: https://github.com/cyberark/secretless-broker/compare/v1.5.2...v1.6.0 [1.7.0]: https://github.com/cyberark/secretless-broker/compare/v1.6.0...v1.7.0 [1.7.1]: https://github.com/cyberark/secretless-broker/compare/v1.7.0...v1.7.1 +[1.7.2]: https://github.com/cyberark/secretless-broker/compare/v1.7.1...v1.7.2 diff --git a/NOTICES.txt b/NOTICES.txt index 77b30d8bd..267795266 100644 --- a/NOTICES.txt +++ b/NOTICES.txt @@ -22,7 +22,6 @@ SECTION 1: Apache License 2.0 >>> github.com/googleapis/gnostic-0.3.1 >>> github.com/heptiolabs/healthcheck-0.0.0-20180807145615-6ff867650f40 >>> github.com/modern-go/reflect2-1.0.1 ->>> github.com/opencontainers/go-digest-1.0.0-rc1 >>> github.com/opencontainers/image-spec-1.0.1 >>> github.com/prometheus/client_golang-1.2.1 >>> google.golang.org/appengine-1.4.0 @@ -316,24 +315,6 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. - ->>> github.com/opencontainers/go-digest-1.0.0-rc1 - -Copyright 2016 Docker, Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - https://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. - - >>> github.com/opencontainers/image-spec-1.0.1 Copyright 2016 The Linux Foundation. diff --git a/pkg/secretless/version.go b/pkg/secretless/version.go index cab47a0f8..d2e7f51e6 100644 --- a/pkg/secretless/version.go +++ b/pkg/secretless/version.go @@ -4,7 +4,7 @@ import "fmt" // Version field is a SemVer that should indicate the baked-in version // of the broker -var Version = "1.7.1" +var Version = "1.7.2" // Tag field denotes the specific build type for the broker. It may // be replaced by compile-time variables if needed to provide the git