Skip to content

Commit 028f299

Browse files
authored
fix: retrieve latest cli version from github (#2458)
* fix: get latest cli version from github * fix: remove blob upload on release
1 parent e8b2b35 commit 028f299

6 files changed

+173
-58
lines changed

.goreleaser.yml

-11
Original file line numberDiff line numberDiff line change
@@ -69,14 +69,3 @@ release:
6969
prerelease: auto
7070
draft: true
7171
name_template: "{{ .Tag }}"
72-
73-
# We deploy a flag to a bucket that will be checked regularly by the CLI in the wild to check whether a new version is available.
74-
blobs:
75-
- provider: s3
76-
endpoint: s3.fr-par.scw.cloud
77-
bucket: scw-devtools
78-
folder: "/"
79-
extra_files:
80-
- glob: scw-cli-v2-version
81-
ids:
82-
- binaries

internal/core/build_info.go

+12-3
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ func (b *BuildInfo) MarshalJSON() ([]byte, error) {
3636

3737
const (
3838
scwDisableCheckVersionEnv = "SCW_DISABLE_CHECK_VERSION"
39-
latestVersionFileURL = "https://scw-devtools.s3.nl-ams.scw.cloud/scw-cli-v2-version"
39+
latestGithubReleaseURL = "https://api.github.com/repos/scaleway/scaleway-cli/releases/latest"
4040
latestVersionUpdateFileLocalName = "latest-cli-version"
4141
latestVersionRequestTimeout = 1 * time.Second
4242
userAgentPrefix = "scaleway-cli"
@@ -100,7 +100,7 @@ func getLatestVersion(client *http.Client) (*version.Version, error) {
100100
ctx, cancelTimeout := context.WithTimeout(context.Background(), latestVersionRequestTimeout)
101101
defer cancelTimeout()
102102

103-
req, err := http.NewRequestWithContext(ctx, http.MethodGet, latestVersionFileURL, nil)
103+
req, err := http.NewRequestWithContext(ctx, http.MethodGet, latestGithubReleaseURL, nil)
104104
if err != nil {
105105
return nil, err
106106
}
@@ -116,7 +116,16 @@ func getLatestVersion(client *http.Client) (*version.Version, error) {
116116
return nil, err
117117
}
118118

119-
return version.NewSemver(strings.Trim(string(body), "\n"))
119+
jsonBody := struct {
120+
TagName string `json:"tag_name"`
121+
}{}
122+
123+
err = json.Unmarshal(body, &jsonBody)
124+
if err != nil {
125+
return nil, fmt.Errorf("failed to unmarshal version from remote: %w", err)
126+
}
127+
128+
return version.NewSemver(strings.TrimPrefix(jsonBody.TagName, "v"))
120129
}
121130

122131
// wasFileModifiedLast24h checks whether the file has been updated during last 24 hours.

internal/core/build_info_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ func Test_CheckVersion(t *testing.T) {
3333
Cmd: "scw plop",
3434
Check: TestCheckCombine(
3535
func(t *testing.T, ctx *CheckFuncCtx) {
36-
assert.Equal(t, "a new version of scw is available (2.0.0-beta.4), beware that you are currently running 1.20.0\n", ctx.LogBuffer)
36+
assert.Equal(t, "a new version of scw is available (2.5.4), beware that you are currently running 1.20.0\n", ctx.LogBuffer)
3737
},
3838
),
3939
TmpHomeDir: true,
@@ -85,7 +85,7 @@ func Test_CheckVersion(t *testing.T) {
8585
Cmd: "scw plop",
8686
Check: TestCheckCombine(
8787
func(t *testing.T, ctx *CheckFuncCtx) {
88-
assert.Contains(t, ctx.LogBuffer, "a new version of scw is available (2.0.0-beta.4), beware that you are currently running 1.0.0\n")
88+
assert.Contains(t, ctx.LogBuffer, "a new version of scw is available (2.5.4), beware that you are currently running 1.0.0\n")
8989
},
9090
),
9191
TmpHomeDir: true,

internal/core/testdata/test-check-version-check-more-than24h-ago.cassette.yaml

+53-14
Large diffs are not rendered by default.

internal/core/testdata/test-check-version-outdated-version.cassette.yaml

+53-14
Large diffs are not rendered by default.

internal/core/testdata/test-check-version-up-to-date-version.cassette.yaml

+53-14
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)