From bb2bd709acf7047aef033bfd527df7961d2c18a8 Mon Sep 17 00:00:00 2001 From: John Tuttle Date: Wed, 30 Jun 2021 09:28:20 -0400 Subject: [PATCH] Bump version to 1.7.4 --- CHANGELOG.md | 9 ++++++--- NOTICES.txt | 36 ++++++++++++++++++++++++++++++++++-- pkg/secretless/version.go | 2 +- 3 files changed, 41 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e985d743..d596363f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,11 +6,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [1.7.4] - 2021-06-30 + ### Changed - Update RH base image to `ubi8/ubi` instead of `rhel7/rhel`. [PR cyberark/secretless-broker#1411](https://github.com/cyberark/secretless-broker/pull/1411) -## [1.7.3] - 2020-03-09 +## [1.7.3] - 2021-03-09 ### Changed - Updated k8s authenticator client version to @@ -36,7 +38,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Support for OpenShift 4.6 has been certified as of this release. - Support for OpenShift 4.7 has been certified as of this release. -## [1.7.2] - 2020-02-05 +## [1.7.2] - 2021-02-05 ### Added - Support for OpenShift 4.3 and 4.5. @@ -575,7 +577,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.3...HEAD +[Unreleased]: https://github.com/cyberark/secretless-broker/compare/v1.7.4...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 @@ -605,3 +607,4 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.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 [1.7.3]: https://github.com/cyberark/secretless-broker/compare/v1.7.2...v1.7.3 +[1.7.4]: https://github.com/cyberark/secretless-broker/compare/v1.7.3...v1.7.4 diff --git a/NOTICES.txt b/NOTICES.txt index ecf6ab502..4a41005da 100644 --- a/NOTICES.txt +++ b/NOTICES.txt @@ -46,7 +46,8 @@ SECTION 3: BSD 3-clause "New" or "Revised" License >>> github.com/fsnotify/fsnotify-1.4.7 >>> github.com/imdario/mergo-0.3.8 >>> github.com/spf13/pflag-1.0.5 ->>> golang.org/x/crypto-0.0.0-20200323165209-0ec3e9974c59 +>>> golang.org/x/crypto-0.0.0-20201216223049-8b5274cf687f +>>> golang.org/x/text-0.3.3 @@ -644,7 +645,38 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ->>> golang.org/x/crypto-0.0.0-20200323165209-0ec3e9974c59 +>>> golang.org/x/crypto-0.0.0-20201216223049-8b5274cf687f + +Copyright (c) 2009 The Go Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +>>> golang.org/x/text-0.3.3 Copyright (c) 2009 The Go Authors. All rights reserved. diff --git a/pkg/secretless/version.go b/pkg/secretless/version.go index 2d58fcacd..159d3534a 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.3" +var Version = "1.7.4" // Tag field denotes the specific build type for the broker. It may // be replaced by compile-time variables if needed to provide the git