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.0.42 Home All releases olderv2.0.41 v2.0.43newer
Claude Code v2.0.42

LSP Workspace Initialization

What: LSP servers now receive proper workspace root information during initialization instead of null values.

Details:

  • Changed rootPath from null to actual workspace folder path in LSP initialize request at x$Q() at line 283755
  • Changed rootUri from null to file:// URI of workspace folder at line 283756
  • Improves backward compatibility with LSP servers that rely on deprecated rootPath/rootUri fields
  • Evidence: x$Q() at line 283750-283756

Why it matters: Some language servers use the deprecated rootPath and rootUri fields for workspace detection. Providing actual values instead of null improves compatibility with older LSP implementations.

See this entry in the whole of v2.0.42 →