Source Intelligence

DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.

All of v2.1.232 Home All releases olderv2.1.231 v2.1.233newer
Claude Code v2.1.232

GitLab token detection grows from 2 patterns to 11

You'll notice
Useful4 Signal2
Secret Redaction

Nine more GitLab token types are now redacted, and the older patterns catch modern longer tokens.

What

Secret redaction now recognises nine more GitLab credential types, and the two existing rules were rewritten to accept longer tokens. Previously only exactly-20-character glpat- and deploy tokens matched; the shared pattern now accepts 20 or more characters plus an optional 9-character checksum suffix, so current GitLab tokens are caught.

Details
  • New detectors: runner authentication (glrt-), OAuth app secret (gloas-), pipeline trigger (glptt-), Kubernetes agent (glagent-), incoming mail (glimt-), SCIM OAuth (glsoat-), CI build (glcbt-), feed (glft-) and feature flag client (glffct-) tokens.
  • All eleven are marked high confidence, and the list is built unconditionally at startup, so this is live for everyone on this build.
  • The name prettifier learned ci: "CI" and scim: "SCIM" so rule names render correctly.
Evidence

gitlab-scim-oauth-token, [\\w=-]{20,}(?:\\.[0-9a-z]{9})?

Strings lifted out of the shipped bundle, so the claim above can be checked against them.

Related

Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.

See this entry in the whole of v2.1.232 →