Bump radiance to pick up resilient front-retry#8919
Conversation
Bumps radiance to d7290e5, which carries the domainfront resilient front-retry work (getlantern/domainfront#15 → kindling#43 → radiance#571) into the client. domainfront (=> db7c158) and kindling (=> ef87ee2) move with it as indirect deps. Fronted config fetches now retry on retryable error responses (default 403 / 5xx) instead of accepting the bad response, and retries prefer a different fronting provider — so a provider that connects and vets but won't forward the request (e.g. an Aliyun edge behind the GFW) is escaped rather than re-picked. This targets the "config fetch completely fails" reports from China/Iran. go.mod / go.sum only; ran `go mod tidy`. `go build ./...` passes. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Plus Run ID: ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (1)
📝 WalkthroughWalkthroughUpdates ChangesDependency updates
Estimated code review effort: 1 (Trivial) | ~2 minutes Possibly related PRs
Suggested reviewers: 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Pull request overview
Updates the Go module dependencies to pull in the latest github.com/getlantern/radiance revision that includes the “resilient front-retry” behavior (via updated indirect domainfront and kindling), with no direct Lantern code changes.
Changes:
- Bump
github.com/getlantern/radiancetov0.0.0-20260721174611-d7290e50e7b4. - Update indirect dependencies
github.com/getlantern/domainfrontandgithub.com/getlantern/kindlingto the corresponding newer pseudo-versions. - Refresh
go.sumentries to match the new module versions.
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| go.mod | Updates required radiance version and aligns indirect domainfront/kindling versions. |
| go.sum | Updates checksum entries to reflect the new dependency versions. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Bumps
radiance→d7290e5, carrying the domainfront resilient front-retry work into the client.domainfront(→db7c158) andkindling(→ef87ee2) move with it as indirect deps.Why
This is the last hop of the chain domainfront#15 → kindling#43 → radiance#571 → here.
It targets the "config fetch completely fails" reports from China/Iran, where
domainfrontconnects (and even vets) hundreds of times but the fronted request never reaches the origin — a provider (e.g. an Aliyun edge behind the GFW) that accepts the TLS handshake but then answers403/5xxor silently drops the request.After this bump, fronted config fetches:
403or>= 500) instead of accepting the bad response, andThis PR
go.mod / go.sum only — no lantern code changes (the new behavior is automatic; the only new domainfront API is opt-in). Ran
go mod tidy;go build ./...passes.Summary by CodeRabbit