From 214702aeccf6d9707e1dc0e5d6fd689e9c6cecdb Mon Sep 17 00:00:00 2001 From: Jai Pradeesh Date: Wed, 25 Mar 2026 12:34:39 -0700 Subject: [PATCH 1/2] Increase update download timeout from 30s to 5min - 30s was too short for downloading the ~15MB binary on slower connections - Users were hitting "context deadline exceeded" during `deepsource update` --- command/update/update.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/update/update.go b/command/update/update.go index 828e1dac..a6146b66 100644 --- a/command/update/update.go +++ b/command/update/update.go @@ -45,7 +45,7 @@ func runUpdate(cmd *cobra.Command) error { fmt.Fprintln(w, pterm.Green("✓")+" Platform: "+runtime.GOOS+"/"+runtime.GOARCH) fmt.Fprintln(w, pterm.Green("✓")+" Version: v"+state.Version) - applyClient := &http.Client{Timeout: 30 * time.Second} + applyClient := &http.Client{Timeout: 5 * time.Minute} data, err := update.DownloadUpdate(applyClient, state) if err != nil { return fmt.Errorf("downloading update: %w", err) From 5916356386824ba00e8be4c70d06f9e8624f7e69 Mon Sep 17 00:00:00 2001 From: Jai Pradeesh Date: Wed, 25 Mar 2026 12:34:55 -0700 Subject: [PATCH 2/2] Bump version to 2.0.53 --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index c6c5f9cc..e1c2ab6c 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.0.52 +2.0.53