From 1da28e95447f3fb90970f2c31b751451991d9019 Mon Sep 17 00:00:00 2001 From: Aleix Penella Date: Fri, 12 Jan 2024 07:47:16 +0100 Subject: [PATCH] prepare release v0.11.3 --- CHANGELOG.md | 27 +++++++++++++++++++++++++++ README.md | 2 ++ RELEASE_NOTES.md | 7 ++++--- version | 2 +- 4 files changed, 34 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 47d1a4b5..6d0b4cc1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,32 @@ # CHANGELOG +## [v0.11.3] + +## Fixed + +- Fixed a bug in Console's ReadPassword function that always returned an error in the defer function. Now it is using the package golang.org/x/term v0.16.0 to read the password from the console. + +## Added + +- Include a message notifying the user when a credential is successfully deleted +- Include a message notifying the user when a configuration is successfully created +- Add a unit test to read password. It being used the package github.com/kr/pty v1.1.8 to create a pty and read the password from it. + +## Bumped + +- Bump github.com/apenella/go-docker-builder from v0.8.1 to v0.8.3. +- Bump github.com/apenella/go-ansible v1.2.2 +- Bump github.com/aws/aws-sdk-go-v2 v1.24.1 +- Bump github.com/aws/aws-sdk-go-v2/config v1.26.3 +- Bump github.com/aws/aws-sdk-go-v2/credentials v1.16.14 +- Bump github.com/aws/aws-sdk-go-v2/service/ecr v1.24.7 +- Bump github.com/aws/aws-sdk-go-v2/service/sts v1.26.7 +- Bump github.com/fatih/color v1.16.0 +- Bump github.com/gruntwork-io/terratest v0.46.9 +- Bump github.com/spf13/afero v1.11.0 +- Bump github.com/spf13/viper v1.18.2 +- Bump golang.org/x/term v0.16.0 + ## [v0.11.2] ### Fixed diff --git a/README.md b/README.md index ebd7a213..133ba92e 100644 --- a/README.md +++ b/README.md @@ -56,6 +56,7 @@ We create a configuration file for this guide, but it can be also defined on env ```sh / $ cd /docker /docker $ stevedore initialize --builders-path builders --credentials-storage-type local --generate-credentials-encryption-key --images-path images --log-path-file /dev/null + Stevedore configuration successfully created ``` After running this command, you can validate the configuration by using the _get configuration_ subcommand. @@ -84,6 +85,7 @@ Since you create a credential using a username and password, Stevedore prompts y ```sh /docker $ stevedore create credentials registry.stevedore.test --username admin Password: + Credentials 'registry.stevedore.test' successfully created ``` - Validate that the credentials have been stored. diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index a6bba131..f4296410 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,6 +1,6 @@ # RELEASE NOTES -## [undefined] +## [v0.11.3] ## Fixed @@ -8,8 +8,9 @@ ## Added -- Included a message to notify the user when a credential is successfully created -- Included test to read password. It being used the package github.com/kr/pty v1.1.8 to create a pty and read the password from it. +- Include a message notifying the user when a credential is successfully deleted +- Include a message notifying the user when a configuration is successfully created +- Add a unit test to read password. It being used the package github.com/kr/pty v1.1.8 to create a pty and read the password from it. ## Bumped diff --git a/version b/version index bc859cbd..1a96df19 100644 --- a/version +++ b/version @@ -1 +1 @@ -0.11.2 +0.11.3