Skip to content

Commit

Permalink
Update depenedencies and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanFrench committed Jan 5, 2023
1 parent b46c7d1 commit a48852d
Show file tree
Hide file tree
Showing 3 changed files with 120 additions and 20 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,40 @@
## 0.3.3

### Changed

- Migrated from CircleCI to GitHub Actions
- Updated all dependencies

## 0.3.2

### Changed

- Migrated build images to `circleci/golang:1.15`

## 0.3.1

### Changed

- Remove unused dependencies from `go.mod`

## 0.3.0

### Added

- Deploy package to github via [ghr](https://github.com/tcnksm/ghr)

### Changed

- Return the version without extra text in command line

### Removed

- Remove check for aws-cli, that's not our responsibility

## 0.2.0

### Added

- Add a `version` command
- Add an optional flag, `duration`, to allow setting the duration in seconds for the role to be assumed

Expand Down
42 changes: 22 additions & 20 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,32 +3,34 @@ module github.com/ryanfrench/aws-auth
go 1.17

require (
github.com/aws/aws-sdk-go v1.29.5
github.com/google/uuid v1.1.2
github.com/sirupsen/logrus v1.4.2
github.com/spf13/cobra v1.2.1
github.com/spf13/viper v1.8.1
github.com/aws/aws-sdk-go v1.44.173
github.com/google/uuid v1.3.0
github.com/sirupsen/logrus v1.9.0
github.com/spf13/cobra v1.6.1
github.com/spf13/viper v1.14.0
)

require (
github.com/cpuguy83/go-md2man/v2 v2.0.0 // indirect
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
github.com/magiconair/properties v1.8.5 // indirect
github.com/mitchellh/mapstructure v1.4.1 // indirect
github.com/pelletier/go-toml v1.9.3 // indirect
github.com/russross/blackfriday/v2 v2.0.1 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.3 // indirect
github.com/magiconair/properties v1.8.7 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/pelletier/go-toml v1.9.5 // indirect
github.com/pelletier/go-toml/v2 v2.0.6 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
github.com/spf13/afero v1.6.0 // indirect
github.com/spf13/cast v1.3.1 // indirect
github.com/spf13/afero v1.9.3 // indirect
github.com/spf13/cast v1.5.0 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/subosito/gotenv v1.2.0 // indirect
golang.org/x/sys v0.0.0-20210510120138-977fb7262007 // indirect
golang.org/x/text v0.3.5 // indirect
gopkg.in/ini.v1 v1.62.0 // indirect
github.com/subosito/gotenv v1.4.1 // indirect
golang.org/x/sys v0.4.0 // indirect
golang.org/x/text v0.6.0 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)

0 comments on commit a48852d

Please sign in to comment.