-
Notifications
You must be signed in to change notification settings - Fork 3.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add cosmos-sdk Version #9429
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
5ad32cd
add version flag in node_info
tac0turtle 0a9f0f2
modify test
tac0turtle 600a91c
add changelog entry
tac0turtle 9b470da
Merge branch 'master' into marko/version_info
tac0turtle 9cb048c
use buildinfo
tac0turtle 36b71d5
Merge branch 'master' into marko/version_info
tac0turtle aa117e9
Update CHANGELOG.md
tac0turtle a150949
Merge branch 'master' into marko/version_info
tac0turtle aad7ca0
remove contrib edit
tac0turtle 9311221
Merge branch 'master' into marko/version_info
tac0turtle b6f317c
Merge branch 'master' into marko/version_info
tac0turtle File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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 | ||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -36,26 +36,44 @@ var ( | |||||||||||||||||||||||||||||||||
BuildTags = "" | ||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
func getSDKVersion() string { | ||||||||||||||||||||||||||||||||||
deps, ok := debug.ReadBuildInfo() | ||||||||||||||||||||||||||||||||||
if !ok { | ||||||||||||||||||||||||||||||||||
return "unable to read deps" | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
var sdkVersion string | ||||||||||||||||||||||||||||||||||
for _, dep := range deps.Deps { | ||||||||||||||||||||||||||||||||||
if dep.Path == "github.com/cosmos/cosmos-sdk" { | ||||||||||||||||||||||||||||||||||
sdkVersion = dep.Version | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
return sdkVersion | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
// Info defines the application version information. | ||||||||||||||||||||||||||||||||||
type Info struct { | ||||||||||||||||||||||||||||||||||
Name string `json:"name" yaml:"name"` | ||||||||||||||||||||||||||||||||||
AppName string `json:"server_name" yaml:"server_name"` | ||||||||||||||||||||||||||||||||||
Version string `json:"version" yaml:"version"` | ||||||||||||||||||||||||||||||||||
GitCommit string `json:"commit" yaml:"commit"` | ||||||||||||||||||||||||||||||||||
BuildTags string `json:"build_tags" yaml:"build_tags"` | ||||||||||||||||||||||||||||||||||
GoVersion string `json:"go" yaml:"go"` | ||||||||||||||||||||||||||||||||||
BuildDeps []buildDep `json:"build_deps" yaml:"build_deps"` | ||||||||||||||||||||||||||||||||||
Name string `json:"name" yaml:"name"` | ||||||||||||||||||||||||||||||||||
AppName string `json:"server_name" yaml:"server_name"` | ||||||||||||||||||||||||||||||||||
Version string `json:"version" yaml:"version"` | ||||||||||||||||||||||||||||||||||
GitCommit string `json:"commit" yaml:"commit"` | ||||||||||||||||||||||||||||||||||
BuildTags string `json:"build_tags" yaml:"build_tags"` | ||||||||||||||||||||||||||||||||||
GoVersion string `json:"go" yaml:"go"` | ||||||||||||||||||||||||||||||||||
BuildDeps []buildDep `json:"build_deps" yaml:"build_deps"` | ||||||||||||||||||||||||||||||||||
CosmosSdkVersion string `json:"cosmos_sdk_version" yaml:"cosmos_sdk_version"` | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
func NewInfo() Info { | ||||||||||||||||||||||||||||||||||
sdkVersion := getSDKVersion() | ||||||||||||||||||||||||||||||||||
return Info{ | ||||||||||||||||||||||||||||||||||
Name: Name, | ||||||||||||||||||||||||||||||||||
AppName: AppName, | ||||||||||||||||||||||||||||||||||
Version: Version, | ||||||||||||||||||||||||||||||||||
GitCommit: Commit, | ||||||||||||||||||||||||||||||||||
BuildTags: BuildTags, | ||||||||||||||||||||||||||||||||||
GoVersion: fmt.Sprintf("go version %s %s/%s", runtime.Version(), runtime.GOOS, runtime.GOARCH), | ||||||||||||||||||||||||||||||||||
BuildDeps: depsFromBuildInfo(), | ||||||||||||||||||||||||||||||||||
Name: Name, | ||||||||||||||||||||||||||||||||||
AppName: AppName, | ||||||||||||||||||||||||||||||||||
Version: Version, | ||||||||||||||||||||||||||||||||||
GitCommit: Commit, | ||||||||||||||||||||||||||||||||||
BuildTags: BuildTags, | ||||||||||||||||||||||||||||||||||
GoVersion: fmt.Sprintf("go version %s %s/%s", runtime.Version(), runtime.GOOS, runtime.GOARCH), | ||||||||||||||||||||||||||||||||||
BuildDeps: depsFromBuildInfo(), | ||||||||||||||||||||||||||||||||||
CosmosSdkVersion: sdkVersion, | ||||||||||||||||||||||||||||||||||
Comment on lines
+69
to
+76
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
|
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
dam, will make the changes