Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions .changeset/richer-symbol-metadata.md

This file was deleted.

15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @stainless-code/codemap

## 0.2.0

### Minor Changes

- [#19](https://github.com/stainless-code/codemap/pull/19) [`53b2c52`](https://github.com/stainless-code/codemap/commit/53b2c5238fa7c1ccf4ee2081e524da13c5604f52) Thanks [@SutuSebastian](https://github.com/SutuSebastian)! - Richer symbol metadata: generics, return types, JSDoc, type members, const values, symbol nesting, call graph
- Signatures now include generic type parameters, return type annotations, and heritage clauses (extends/implements)
- New `doc_comment` column on symbols extracts leading JSDoc comments
- New `type_members` table indexes properties and methods of interfaces and object-literal types
- New `value` column on symbols captures const literal values (strings, numbers, booleans, null)
- New `parent_name` column on symbols tracks scope nesting; class methods/properties/getters extracted as individual symbols
- New `calls` table tracks function-scoped call edges with `caller_scope` for qualified disambiguation (deduped per file)
- Enum members extracted into `members` column as JSON
- Performance: cached scope strings, hoisted hot-path regex, batch deletes, reduced redundant I/O, BATCH_SIZE 100→500
- SCHEMA_VERSION bumped to 2

## 0.1.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stainless-code/codemap",
"version": "0.1.9",
"version": "0.2.0",
"description": "Query your codebase — structural SQLite index for AI agents",
"keywords": [
"agents",
Expand Down