Skip to content

Commit

Permalink
update release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
apenella committed Jan 10, 2024
1 parent 96f1c65 commit 9890ee9
Show file tree
Hide file tree
Showing 3 changed files with 108 additions and 475 deletions.
22 changes: 22 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,26 @@

## [undefined]

## Changed

- Refactored the Console's ReadPassword 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.

## 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
54 changes: 28 additions & 26 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,30 +4,32 @@ go 1.19

require (
github.com/Masterminds/semver/v3 v3.2.1
github.com/apenella/go-ansible v1.2.1
github.com/apenella/go-ansible v1.2.2
github.com/apenella/go-common-utils/data v0.0.0-20221227202648-5452d804e940
github.com/apenella/go-common-utils/error v0.0.0-20221227202648-5452d804e940
github.com/apenella/go-common-utils/transformer/string v0.0.0-20221227202648-5452d804e940
github.com/apenella/go-data-structures/extendedTree v0.0.0-20221117064317-a3b6d9f69cda
github.com/apenella/go-docker-builder v0.8.3
github.com/aws/aws-sdk-go-v2 v1.23.1
github.com/aws/aws-sdk-go-v2/config v1.25.5
github.com/aws/aws-sdk-go-v2/credentials v1.16.4
github.com/aws/aws-sdk-go-v2/service/ecr v1.23.1
github.com/aws/aws-sdk-go-v2/service/sts v1.25.4
github.com/aws/aws-sdk-go-v2 v1.24.1
github.com/aws/aws-sdk-go-v2/config v1.26.3
github.com/aws/aws-sdk-go-v2/credentials v1.16.14
github.com/aws/aws-sdk-go-v2/service/ecr v1.24.7
github.com/aws/aws-sdk-go-v2/service/sts v1.26.7
github.com/creack/pty v1.1.21
github.com/docker/distribution v2.8.3+incompatible
github.com/docker/docker v24.0.7+incompatible
github.com/fatih/color v1.14.1
github.com/fatih/color v1.16.0
github.com/go-errors/errors v1.4.2
github.com/go-git/go-git/v5 v5.11.0
github.com/gruntwork-io/terratest v0.46.3
github.com/gruntwork-io/terratest v0.46.9
github.com/mattn/go-shellwords v1.0.12
github.com/ryanuber/columnize v2.1.2+incompatible
github.com/spf13/afero v1.10.0
github.com/spf13/afero v1.11.0
github.com/spf13/cobra v1.8.0
github.com/spf13/viper v1.17.0
github.com/spf13/viper v1.18.2
github.com/stretchr/testify v1.8.4
go.uber.org/zap v1.26.0
golang.org/x/term v0.15.0
golang.org/x/term v0.16.0
gopkg.in/yaml.v3 v3.0.1
)

Expand All @@ -37,23 +39,23 @@ require (
github.com/Microsoft/go-winio v0.6.1 // indirect
github.com/ProtonMail/go-crypto v0.0.0-20230828082145-3c4c8a2d2371 // indirect
github.com/ahmetb/go-cursor v0.0.0-20131010032410-8136607ea412 // indirect
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.14.5 // indirect
github.com/aws/aws-sdk-go-v2/internal/configsources v1.2.4 // indirect
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.5.4 // indirect
github.com/aws/aws-sdk-go-v2/internal/ini v1.7.1 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.10.1 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.10.4 // indirect
github.com/aws/aws-sdk-go-v2/service/sso v1.17.3 // indirect
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.20.1 // indirect
github.com/aws/smithy-go v1.17.0 // indirect
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.14.11 // indirect
github.com/aws/aws-sdk-go-v2/internal/configsources v1.2.10 // indirect
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.5.10 // indirect
github.com/aws/aws-sdk-go-v2/internal/ini v1.7.2 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.10.4 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.10.10 // indirect
github.com/aws/aws-sdk-go-v2/service/sso v1.18.6 // indirect
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.21.6 // indirect
github.com/aws/smithy-go v1.19.0 // indirect
github.com/cloudflare/circl v1.3.7 // indirect
github.com/cyphar/filepath-securejoin v0.2.4 // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/distribution/reference v0.5.0 // indirect
github.com/docker/go-connections v0.4.0 // indirect
github.com/docker/go-units v0.5.0 // indirect
github.com/emirpasic/gods v1.18.1 // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
github.com/go-git/go-billy/v5 v5.5.0 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
Expand All @@ -68,20 +70,20 @@ require (
github.com/kevinburke/ssh_config v1.2.0 // indirect
github.com/magiconair/properties v1.8.7 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.17 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.0.2 // indirect
github.com/pelletier/go-toml/v2 v2.1.0 // indirect
github.com/pjbgf/sha1cd v0.3.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/sagikazarmark/locafero v0.3.0 // indirect
github.com/sagikazarmark/locafero v0.4.0 // indirect
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
github.com/sergi/go-diff v1.1.0 // indirect
github.com/sergi/go-diff v1.3.1 // indirect
github.com/skeema/knownhosts v1.2.1 // indirect
github.com/sourcegraph/conc v0.3.0 // indirect
github.com/spf13/cast v1.5.1 // indirect
github.com/spf13/cast v1.6.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/stretchr/objx v0.5.0 // indirect
github.com/subosito/gotenv v1.6.0 // indirect
Expand All @@ -92,7 +94,7 @@ require (
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect
golang.org/x/mod v0.12.0 // indirect
golang.org/x/net v0.19.0 // indirect
golang.org/x/sys v0.15.0 // indirect
golang.org/x/sys v0.16.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/tools v0.13.0 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
Expand Down
Loading

0 comments on commit 9890ee9

Please sign in to comment.