Releases: mattbirchler/claude-code-obsidian
Releases · mattbirchler/claude-code-obsidian
Release list
1.0.3
Small maintenance release for Obsidian's plugin review — no functional changes.
- Reformatted the lint suppression for the filename-sanitizing regex so its justification lives inline on the directive comment (the
-- descriptionsyntax the review tooling requires). Matching control characters there remains intentional, since they're illegal in Windows filenames.
If you're on 1.0.2, there's nothing new to see — this just keeps the plugin review moving.
1.0.2
Housekeeping release that cleans up two warnings flagged by Obsidian's plugin review — no functional changes.
- Replaced the third-party
builtin-modulesbuild dependency with Node's built-inbuiltinModuleslist (build tooling only; the shipped plugin code is byte-identical). - Documented and suppressed a lint warning about control characters in the filename-sanitizing regex — matching those characters is intentional, since they're illegal in Windows filenames.
Note: the remaining "direct filesystem access" notice is inherent to what this plugin does — it reads Claude Code session files from ~/.claude/projects/, which lives outside the vault. That access is read-only; all writes go through the Obsidian vault API.