This repository has been archived by the owner on Sep 30, 2024. It is now read-only.
[Backport 5.5.x] Upgrade cody web experimental package to 0.2.7 (#63863) #63901
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
backport https://github.com/sourcegraph/sourcegraph/pull/63863
S2 Cody Web is broken at the moment. New client-config handlers fail with 401 status because we don't send custom headers, this works for gql queries since they all are POST requests and the browser automatically sends an Origin header for them and this is enough for our auth middleware to check cookies, but with client-config which is rest it's not the case and we should send
X-Requested-Client: Sourcegraph
header to make our auth middleware to pass this query correctlyNote that this problem doesn't exist in local builds since we proxy all requests and add
X-Requested-Client: Sourcegraph
in dev server.See Cody latest build PR for more details
sourcegraph/cody#4898
Test plan
CI