From d5aebe20401655232ab71d62bea8a990ef5efa79 Mon Sep 17 00:00:00 2001 From: Warren Gifford Date: Thu, 6 Jun 2024 13:16:36 -0700 Subject: [PATCH] bug(release): update hard coded consts (#63133) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This updates the consts that control upgradeReadiness i.e. banners and latest version indicators ## Test plan no test ## Changelog - tmp process: update release consts to 5.4.5099 --- internal/updatecheck/handler.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/updatecheck/handler.go b/internal/updatecheck/handler.go index 691289f9cb2..140dfc172c6 100644 --- a/internal/updatecheck/handler.go +++ b/internal/updatecheck/handler.go @@ -32,17 +32,17 @@ var ( // non-cluster, non-docker-compose, and non-pure-docker installations what the latest // version is. The version here _must_ be available at https://hub.docker.com/r/sourcegraph/server/tags/ // before landing in master. - latestReleaseDockerServerImageBuild = newPingResponse("5.4.3643") + latestReleaseDockerServerImageBuild = newPingResponse("5.4.5099") // latestReleaseKubernetesBuild is only used by sourcegraph.com to tell existing Sourcegraph // cluster deployments what the latest version is. The version here _must_ be available in // a tag at https://github.com/sourcegraph/deploy-sourcegraph before landing in master. - latestReleaseKubernetesBuild = newPingResponse("5.4.3643") + latestReleaseKubernetesBuild = newPingResponse("5.4.5099") // latestReleaseDockerComposeOrPureDocker is only used by sourcegraph.com to tell existing Sourcegraph // Docker Compose or Pure Docker deployments what the latest version is. The version here _must_ be // available in a tag at https://github.com/sourcegraph/deploy-sourcegraph-docker before landing in master. - latestReleaseDockerComposeOrPureDocker = newPingResponse("5.4.3643") + latestReleaseDockerComposeOrPureDocker = newPingResponse("5.4.5099") ) func getLatestRelease(deployType string) pingResponse {