From 3d95b2d4913647f2952c5705edfd587553089c31 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Tue, 2 Jun 2026 22:10:09 +0200 Subject: [PATCH] fix(signup): bump gleam_httpc to >= 4.2.0 for result.try gleam_httpc 4.1.1 still calls result.then, which was removed from gleam_stdlib 0.71.0. Bumping the lower bound forces the resolver to pick 4.2.x or later, which uses result.try. The < 5.0.0 cap is also widened to < 6.0.0; the public API is unchanged between 4.2 and 5.0. Long term: committing a manifest.toml lockfile would stop transitive deps from drifting on every fresh build. --- signup/gleam.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/signup/gleam.toml b/signup/gleam.toml index 9214b20..1ea7e3b 100644 --- a/signup/gleam.toml +++ b/signup/gleam.toml @@ -5,7 +5,7 @@ target = "erlang" [dependencies] gleam_stdlib = ">= 0.59.0 and < 2.0.0" gleam_http = ">= 4.0.0 and < 5.0.0" -gleam_httpc = ">= 4.0.0 and < 5.0.0" +gleam_httpc = ">= 4.2.0 and < 6.0.0" gleam_json = ">= 3.0.0 and < 4.0.0" gleam_erlang = ">= 1.0.0 and < 2.0.0" envoy = ">= 1.0.0 and < 2.0.0"