Skip to content

Commit

Permalink
prepare release v0.11.3
Browse files Browse the repository at this point in the history
  • Loading branch information
apenella committed Jan 12, 2024
1 parent 8335c7a commit 1da28e9
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 4 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down
7 changes: 4 additions & 3 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
# RELEASE NOTES

## [undefined]
## [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

- 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

Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.11.2
0.11.3

0 comments on commit 1da28e9

Please sign in to comment.