From 3c74aca8785f11215f2981acc45801f032843a2c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 30 Apr 2026 19:07:27 +0000 Subject: [PATCH] chore: version packages --- .changeset/agents-templates-tier-a-b7.md | 5 ----- .changeset/symbols-visibility-column.md | 5 ----- .changeset/tier-a-query-flags.md | 5 ----- CHANGELOG.md | 12 ++++++++++++ package.json | 2 +- 5 files changed, 13 insertions(+), 16 deletions(-) delete mode 100644 .changeset/agents-templates-tier-a-b7.md delete mode 100644 .changeset/symbols-visibility-column.md delete mode 100644 .changeset/tier-a-query-flags.md diff --git a/.changeset/agents-templates-tier-a-b7.md b/.changeset/agents-templates-tier-a-b7.md deleted file mode 100644 index 29635aba..00000000 --- a/.changeset/agents-templates-tier-a-b7.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@stainless-code/codemap": patch ---- - -Update bundled `templates/agents/` rule and skill to cover the recent CLI surface — `codemap query --summary` / `--changed-since ` / `--group-by owner|directory|package`, per-row recipe `actions`, and the new `symbols.visibility` column. The dev-side `.agents/` mirror is updated in lockstep so this clone stays self-consistent. diff --git a/.changeset/symbols-visibility-column.md b/.changeset/symbols-visibility-column.md deleted file mode 100644 index 34731add..00000000 --- a/.changeset/symbols-visibility-column.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@stainless-code/codemap": minor ---- - -`symbols.visibility` column — JSDoc visibility tag (`@public` / `@private` / `@internal` / `@alpha` / `@beta`) extracted at parse time and stored as a real column. Replaces the `LIKE '%@beta%'` regex in the `visibility-tags` recipe. `SCHEMA_VERSION` bumps from 3 to 4 — `.codemap.db` rebuilds automatically on next index. Helper `extractVisibility(doc)` exported from `parser.ts`. New partial index `idx_symbols_visibility` covers `WHERE visibility IS NOT NULL` queries. diff --git a/.changeset/tier-a-query-flags.md b/.changeset/tier-a-query-flags.md deleted file mode 100644 index 65bdef2b..00000000 --- a/.changeset/tier-a-query-flags.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@stainless-code/codemap": patch ---- - -`codemap query` Tier A flags — `--summary`, `--changed-since `, `--group-by owner|directory|package`, plus per-row `actions` templates on bundled recipes. All output filters; the SQL still executes against the index. Ad-hoc SQL and the `cm.query()` programmatic API stay unchanged. diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e2527cc..24b98c44 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # @stainless-code/codemap +## 0.4.0 + +### Minor Changes + +- [#28](https://github.com/stainless-code/codemap/pull/28) [`91598bc`](https://github.com/stainless-code/codemap/commit/91598bc90889d092fae04e9b51b637e61f6058e4) Thanks [@SutuSebastian](https://github.com/SutuSebastian)! - `symbols.visibility` column — JSDoc visibility tag (`@public` / `@private` / `@internal` / `@alpha` / `@beta`) extracted at parse time and stored as a real column. Replaces the `LIKE '%@beta%'` regex in the `visibility-tags` recipe. `SCHEMA_VERSION` bumps from 3 to 4 — `.codemap.db` rebuilds automatically on next index. Helper `extractVisibility(doc)` exported from `parser.ts`. New partial index `idx_symbols_visibility` covers `WHERE visibility IS NOT NULL` queries. + +### Patch Changes + +- [#29](https://github.com/stainless-code/codemap/pull/29) [`03fbddf`](https://github.com/stainless-code/codemap/commit/03fbddfc06f0eb3d7d390d3288ee290d9c4285be) Thanks [@SutuSebastian](https://github.com/SutuSebastian)! - Update bundled `templates/agents/` rule and skill to cover the recent CLI surface — `codemap query --summary` / `--changed-since ` / `--group-by owner|directory|package`, per-row recipe `actions`, and the new `symbols.visibility` column. The dev-side `.agents/` mirror is updated in lockstep so this clone stays self-consistent. + +- [#26](https://github.com/stainless-code/codemap/pull/26) [`c32f052`](https://github.com/stainless-code/codemap/commit/c32f0522321040358dcd0f2d89946dfbb533b9ca) Thanks [@SutuSebastian](https://github.com/SutuSebastian)! - `codemap query` Tier A flags — `--summary`, `--changed-since `, `--group-by owner|directory|package`, plus per-row `actions` templates on bundled recipes. All output filters; the SQL still executes against the index. Ad-hoc SQL and the `cm.query()` programmatic API stay unchanged. + ## 0.3.0 ### Minor Changes diff --git a/package.json b/package.json index 86cce4c0..159cc180 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@stainless-code/codemap", - "version": "0.3.0", + "version": "0.4.0", "description": "Query your codebase — structural SQLite index for AI agents", "keywords": [ "agents",