Open
Conversation
28b09e9 to
22afdfb
Compare
The testudo-api now requires X-API-Key authentication on all /api/v1/* routes. Read TESTUDO_API_KEY from env at build time and send as header. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
425d7b4 to
d8fa19b
Compare
Synpress 4.1.2 internally uses playwright-core@1.48.2 which expects chromium-1200. The workspace Playwright 1.59.1 installs a newer Chromium. When the Synpress cache is invalidated (lockfile changed), cache generation fails because the old Chromium isn't installed. Fix: install both the workspace Chromium (for tests) and the Synpress-compatible Chromium 1.48.2 (for cache generation). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
The testudo-api now requires
X-API-Keyauthentication on all/api/v1/*routes. Without this header, all extension API calls return 401.TESTUDO_API_KEYfromprocess.envat build time (baked into extension bundle)X-API-Keyheader on allfetchWithTimeoutcallsapiKeyoption toApiClientOptionsfor per-call overrideTESTUDO_API_KEYto.env.exampleDeployment notes
Set
TESTUDO_API_KEYin the extension's build environment to one of the keys from the API'sAPI_KEYSenv var.🤖 Generated with Claude Code