-
Notifications
You must be signed in to change notification settings - Fork 25
bug: fixes #221 wrong latest version #222
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
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
649c335
bug: fixes #221 wrong latest version
kevincobain2000 c0c5461
ci: golang lint vup to latest for 1.25
kevincobain2000 e40e015
ci: golang lint vup to latest for 1.25
kevincobain2000 716c969
ci: golang lint vup to latest for 1.25
kevincobain2000 f460938
ci: golang lint vet
kevincobain2000 9540a3e
ci: fix tests new semantics
kevincobain2000 48a7fad
ci: fix tests new semantics
kevincobain2000 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 hidden or 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 hidden or 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,24 +1,37 @@ | ||
| version: "2" | ||
| linters: | ||
| # Disable all linters. | ||
| # Default: false | ||
| disable-all: true | ||
| # Enable specific linter | ||
| # https://golangci-lint.run/usage/linters/#enabled-by-default | ||
| default: none | ||
| enable: | ||
| - errcheck | ||
| - gosimple | ||
| - govet | ||
| - ineffassign | ||
| - staticcheck | ||
| - copyloopvar | ||
| - dupl | ||
| - errcheck | ||
| - errorlint | ||
| - copyloopvar | ||
| - goconst | ||
| - gocritic | ||
| - gocyclo | ||
| - goprintffuncname | ||
| - gosec | ||
| - govet | ||
| - ineffassign | ||
| - prealloc | ||
| - revive | ||
| - stylecheck | ||
| - staticcheck | ||
| - whitespace | ||
| exclusions: | ||
| generated: lax | ||
| presets: | ||
| - comments | ||
| - common-false-positives | ||
| - legacy | ||
| - std-error-handling | ||
| paths: | ||
| - third_party$ | ||
| - builtin$ | ||
| - examples$ | ||
| formatters: | ||
| exclusions: | ||
| generated: lax | ||
| paths: | ||
| - third_party$ | ||
| - builtin$ | ||
| - examples$ |
This file contains hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -108,7 +108,7 @@ func (gb *GoBrew) Interactive(ask bool) { | |
| modVersion := NoneVersion | ||
| if gb.hasModFile() { | ||
| modVersion = gb.getModVersion() | ||
| modVersion = extractMajorVersion(modVersion) | ||
| // modVersion = extractMajorVersion(modVersion) | ||
| } | ||
|
|
||
| fmt.Println() | ||
|
|
@@ -135,7 +135,7 @@ func (gb *GoBrew) Interactive(ask bool) { | |
| } | ||
|
|
||
| if modVersion != NoneVersion && latestMajorVersion != modVersion { | ||
| label := " " + color.FgYellow.Render("\t⚠️ not latest") | ||
| label := " " + color.FgYellow.Render("\t⚠️ not latest") | ||
| color.Successln("📄 go.mod Version", " .......", modVersion+label) | ||
| } else { | ||
| color.Successln("📄 go.mod Version", " .......", modVersion) | ||
|
|
@@ -156,7 +156,7 @@ func (gb *GoBrew) Interactive(ask bool) { | |
| } | ||
|
|
||
| if modVersion != NoneVersion && currentMajorVersion != modVersion { | ||
| color.Warnf("⚠️ GO Installed Version (%s) and go.mod Version (%s) are different.\n", currentMajorVersion, modVersion) | ||
| color.Warnf("⚠️ GO Installed Version (%s) and go.mod Version (%s) are different.\n", currentMajorVersion, modVersion) | ||
| fmt.Println(" Please consider updating your go.mod file") | ||
| c := true | ||
| if ask { | ||
|
|
@@ -169,7 +169,7 @@ func (gb *GoBrew) Interactive(ask bool) { | |
| } | ||
|
|
||
| if currentVersion != latestVersion { | ||
| color.Warnf("⚠️ GO Installed Version (%s) and GO Latest Version (%s) are different.\n", currentVersion, latestVersion) | ||
| color.Warnf("⚠️ GO Installed Version (%s) and GO Latest Version (%s) are different.\n", currentVersion, latestVersion) | ||
| c := true | ||
| if ask { | ||
| c = askForConfirmation("🤔 Do you want to update GO to latest version (" + latestVersion + ")?") | ||
|
|
@@ -321,9 +321,17 @@ func (gb *GoBrew) Install(version string) string { | |
| color.Errorln("[Error] No version provided") | ||
| os.Exit(1) | ||
| } | ||
| // if version has 2 dots, then remove the @latest or @dev-latest | ||
| if strings.Count(version, ".") == 2 { | ||
|
Owner
Author
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. not sure when this was pushed by GO but seems like all the old versions are now following proper semantics. Current remote tags are as: |
||
| if strings.HasSuffix(version, "@latest") || strings.HasSuffix(version, "@dev-latest") { | ||
| version = strings.TrimSuffix(version, "@latest") | ||
| version = strings.TrimSuffix(version, "@dev-latest") | ||
| } | ||
| } | ||
| tmpVersion := version | ||
| version = gb.judgeVersion(version) | ||
| if version == NoneVersion { | ||
| color.Errorln("[Error] Version non exists") | ||
| color.Errorln("[Error] Version", tmpVersion, "does not exists") | ||
| os.Exit(1) | ||
| } | ||
| if gb.existsVersion(version) { | ||
|
|
||
This file contains hidden or 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 hidden or 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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.
Oops, something went wrong.
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.
no longer needed, should provide full version