-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update go packages * Add verbose mode to migrate command * Mock folders api * Bump CI go version * fixup! Bump CI go version * fixup! Bump CI go version
- Loading branch information
Showing
17 changed files
with
125 additions
and
367 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,30 @@ | ||
module github.com/aws-observability/amazon-managed-grafana-migrator | ||
|
||
go 1.19 | ||
go 1.21 | ||
|
||
toolchain go1.21.6 | ||
|
||
require ( | ||
github.com/hashicorp/go-cleanhttp v0.5.2 | ||
github.com/spf13/cobra v1.7.0 | ||
github.com/spf13/cobra v1.8.0 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.19 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
golang.org/x/sys v0.11.0 // indirect | ||
golang.org/x/sys v0.17.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go v1.44.332 | ||
github.com/fatih/color v1.15.0 | ||
github.com/aws/aws-sdk-go v1.50.23 | ||
github.com/fatih/color v1.16.0 | ||
github.com/golang/mock v1.6.0 | ||
github.com/grafana/grafana-api-golang-client v0.23.0 | ||
github.com/grafana/grafana-api-golang-client v0.27.0 | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/stretchr/testify v1.8.2 | ||
github.com/stretchr/testify v1.8.4 | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.