Source Intelligence
Reading a new release v2.1.251 Analysing changes · 2/5 Writing the entries · 2/4 steps 470 findings $18.91 so far

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.0.33 Home All releases olderv2.0.32 v2.0.34newer
Claude Code v2.0.33

LSP File Lifecycle Management

What: Four new methods for synchronizing file state with Language Server Protocol servers

Details:

  • getAllServers() - Returns Map of all initialized LSP servers for monitoring
  • openFile(path, content) - Sends textDocument/didOpen with proper languageId mapping
  • changeFile(path, content) - Sends textDocument/didChange, falls back to openFile if server not running
  • closeFile(path) - Sends textDocument/didClose for cleanup
  • Configuration changed from fileExtensions array to extensionToLanguage object for proper language ID support
  • Evidence: ym2() at line 446307, methods at lines 446405-446454

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.0.33 →