[CI] Unblock main: bump Claude 2.1.280 + tolerate UC/gateway model-catalog lag - #801
Merged
Merged
Conversation
The AI Gateway now rejects Claude Code 2.1.268 for its models with `400 ... does not support this model; version 2.1.280 or newer is required`, so every integration job that launches Claude (Managed config / Smoke / Full journeys) fails on the pinned 2.1.268. 2.1.280 is the current published release and the version the gateway requires. Bump the pinned default so the required `e2e` gate passes again.
sunishsheth2009
marked this pull request as ready for review
September 23, 2026 01:26
sunishsheth2009
requested review from
AarushiShah-db,
lilly-luo and
rohita5l
as code owners
September 23, 2026 01:26
xsh310
approved these changes
Sep 23, 2026
sunishsheth2009
enabled auto-merge (squash)
September 23, 2026 04:33
sunishsheth2009
force-pushed
the
sunish/ci-bump-claude-version
branch
from
September 23, 2026 04:38
06520d9 to
587e614
Compare
…atalog lag `test_case_07/09` asserted every ug-cached family default (newest per family from UC model-services) is a strict subset of Claude Code's own gateway-model picker cache. UC model-services can list a just-released model (e.g. a new opus tier) before Claude Code's gateway discovery surfaces it, so the strict subset fails on `main` even though discovery is working. Require the cached defaults to be well-formed `system.ai.claude-*` ids that overlap Claude Code's catalog instead.
rohita5l
approved these changes
Sep 23, 2026
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
Fixes the two failures currently red on
main's integration suite (both are test-workspace/catalog drift, unrelated to any feature PR). They must ship together: each alone leaves thee2egate red, so they can't be validated/merged on green CI independently.Claude Code version pin (
.github/workflows/integration.yml). The AI Gateway now rejects Claude Code2.1.268(400 ... version 2.1.280 or newer is required), failing Managed config · Claude, Smoke · Claude, and Full journeys · Claude. Bump the pinnedCLAUDE_VERSION(input default + env fallback) to2.1.280, the current published release the gateway requires. This is the only place the version is pinned.Claude system-model discovery test (
tests/integration/test_ug_claude_model_discovery.py).test_case_07/09asserted every ug-cached family default (newest per family from UC model-services) is a strict subset of Claude Code's gateway-model picker cache. UC model-services can list a just-released model (e.g.claude-opus-5-5) before Claude Code's discovery surfaces it, so the strict subset fails. The assertion now requires the defaults to be well-formedsystem.ai.claude-*ids that overlap the picker, tolerating the lag (same spirit as excluded gpt-6 from tests #797).Note: this touches
.github/, so it needs a CODEOWNERS approval (@rohita5l/@AarushiShah-db/@lilly-luo) — unavoidable, since the version pin lives only in the owned workflow file.Testing
Verified on this branch: with 2.1.280 + the tolerant assertion, Managed config · Claude, Smoke · Claude, and Full journeys · Claude all pass, and the required
testande2egates go green (all 18 checks).This pull request and its description were written by Isaac.