From aff020e64bca5e072991caf72e7512959d959194 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 May 2026 23:00:29 +0000 Subject: [PATCH] chore: release main --- .release-please-manifest.json | 24 ++++++++++----------- CHANGELOG.md | 19 +++++++++++++++++ package.json | 2 +- packages/analysis/CHANGELOG.md | 15 +++++++++++++ packages/analysis/package.json | 2 +- packages/cli/CHANGELOG.md | 33 +++++++++++++++++++++++++++++ packages/cli/package.json | 2 +- packages/cobol-proleap/CHANGELOG.md | 9 ++++++++ packages/cobol-proleap/package.json | 2 +- packages/ingestion/CHANGELOG.md | 11 ++++++++++ packages/ingestion/package.json | 2 +- packages/mcp/CHANGELOG.md | 23 ++++++++++++++++++++ packages/mcp/package.json | 2 +- packages/pack/CHANGELOG.md | 11 ++++++++++ packages/pack/package.json | 2 +- packages/scanners/CHANGELOG.md | 7 ++++++ packages/scanners/package.json | 2 +- packages/scip-ingest/CHANGELOG.md | 9 ++++++++ packages/scip-ingest/package.json | 2 +- packages/search/CHANGELOG.md | 9 ++++++++ packages/search/package.json | 2 +- packages/storage/CHANGELOG.md | 7 ++++++ packages/storage/package.json | 2 +- packages/wiki/CHANGELOG.md | 9 ++++++++ packages/wiki/package.json | 2 +- 25 files changed, 186 insertions(+), 24 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 733b70d..7403340 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,20 +1,20 @@ { - ".": "0.6.6", - "packages/analysis": "0.3.2", - "packages/cli": "0.5.5", - "packages/cobol-proleap": "0.1.8", + ".": "0.6.7", + "packages/analysis": "0.3.3", + "packages/cli": "0.5.6", + "packages/cobol-proleap": "0.1.9", "packages/core-types": "0.3.0", "packages/embedder": "0.1.2", "packages/frameworks": "0.1.1", - "packages/ingestion": "0.4.4", - "packages/mcp": "0.4.4", - "packages/pack": "0.2.3", + "packages/ingestion": "0.4.5", + "packages/mcp": "0.4.5", + "packages/pack": "0.2.4", "packages/policy": "0.1.1", "packages/sarif": "0.1.2", - "packages/scanners": "0.2.2", - "packages/scip-ingest": "0.2.4", - "packages/search": "0.2.2", - "packages/storage": "0.2.2", + "packages/scanners": "0.2.3", + "packages/scip-ingest": "0.2.5", + "packages/search": "0.2.3", + "packages/storage": "0.2.3", "packages/summarizer": "0.1.1", - "packages/wiki": "0.2.2" + "packages/wiki": "0.2.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a291ef..61b067c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## [0.6.7](https://github.com/theagenticguy/opencodehub/compare/root-v0.6.6...root-v0.6.7) (2026-05-29) + + +### Features + +* **cli:** expose 9 read-only graph tools as CLI subcommands ([#174](https://github.com/theagenticguy/opencodehub/issues/174)) ([be15666](https://github.com/theagenticguy/opencodehub/commit/be156663e486eaee185c800089afaa589dd8a2af)) +* **cli:** status surfaces retrieval mode (summaries / vectors / embedder) ([#172](https://github.com/theagenticguy/opencodehub/issues/172)) ([611e818](https://github.com/theagenticguy/opencodehub/commit/611e818cc76c890c4f7c4eaf8c8065d1fb5a3a1a)) + + +### Bug Fixes + +* **cli:** doctor verifies the bandit[sarif] formatter, not just the binary ([#171](https://github.com/theagenticguy/opencodehub/issues/171)) ([0d78c92](https://github.com/theagenticguy/opencodehub/commit/0d78c926bf284de8f1b22f4cba2b712e74d7bef1)) +* **scanners:** exclude indexer-ignored dirs from vulture/radon/ty (drop .venv noise) ([#168](https://github.com/theagenticguy/opencodehub/issues/168)) ([848aa34](https://github.com/theagenticguy/opencodehub/commit/848aa34eba622c976ba6be968383824f0912e6b3)) + + +### Documentation + +* **repo:** clarify `sql` targets the temporal store, not the node/edge graph ([#173](https://github.com/theagenticguy/opencodehub/issues/173)) ([814774a](https://github.com/theagenticguy/opencodehub/commit/814774a013331f5a090fb349bab10665f0ebe2ca)) + ## [0.6.6](https://github.com/theagenticguy/opencodehub/compare/root-v0.6.5...root-v0.6.6) (2026-05-29) diff --git a/package.json b/package.json index 9d0b32b..18270e6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "opencodehub-monorepo", - "version": "0.6.6", + "version": "0.6.7", "private": true, "description": "OpenCodeHub — Apache-2.0 code intelligence graph + MCP server for AI coding agents", "license": "Apache-2.0", diff --git a/packages/analysis/CHANGELOG.md b/packages/analysis/CHANGELOG.md index 0ba04f9..aac395a 100644 --- a/packages/analysis/CHANGELOG.md +++ b/packages/analysis/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [0.3.3](https://github.com/theagenticguy/opencodehub/compare/analysis-v0.3.2...analysis-v0.3.3) (2026-05-29) + + +### Features + +* **cli:** expose 9 read-only graph tools as CLI subcommands ([#174](https://github.com/theagenticguy/opencodehub/issues/174)) ([be15666](https://github.com/theagenticguy/opencodehub/commit/be156663e486eaee185c800089afaa589dd8a2af)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @opencodehub/storage bumped to 0.2.3 + * @opencodehub/wiki bumped to 0.2.3 + ## [0.3.2](https://github.com/theagenticguy/opencodehub/compare/analysis-v0.3.1...analysis-v0.3.2) (2026-05-29) diff --git a/packages/analysis/package.json b/packages/analysis/package.json index 4e11fde..b1cf3cb 100644 --- a/packages/analysis/package.json +++ b/packages/analysis/package.json @@ -1,6 +1,6 @@ { "name": "@opencodehub/analysis", - "version": "0.3.2", + "version": "0.3.3", "description": "OpenCodeHub — impact, rename, detect_changes, staleness", "license": "Apache-2.0", "repository": { diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 2bf14a4..8fb38aa 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,38 @@ # Changelog +## [0.5.6](https://github.com/theagenticguy/opencodehub/compare/cli-v0.5.5...cli-v0.5.6) (2026-05-29) + + +### Features + +* **cli:** expose 9 read-only graph tools as CLI subcommands ([#174](https://github.com/theagenticguy/opencodehub/issues/174)) ([be15666](https://github.com/theagenticguy/opencodehub/commit/be156663e486eaee185c800089afaa589dd8a2af)) +* **cli:** status surfaces retrieval mode (summaries / vectors / embedder) ([#172](https://github.com/theagenticguy/opencodehub/issues/172)) ([611e818](https://github.com/theagenticguy/opencodehub/commit/611e818cc76c890c4f7c4eaf8c8065d1fb5a3a1a)) + + +### Bug Fixes + +* **cli:** doctor verifies the bandit[sarif] formatter, not just the binary ([#171](https://github.com/theagenticguy/opencodehub/issues/171)) ([0d78c92](https://github.com/theagenticguy/opencodehub/commit/0d78c926bf284de8f1b22f4cba2b712e74d7bef1)) +* **scanners:** exclude indexer-ignored dirs from vulture/radon/ty (drop .venv noise) ([#168](https://github.com/theagenticguy/opencodehub/issues/168)) ([848aa34](https://github.com/theagenticguy/opencodehub/commit/848aa34eba622c976ba6be968383824f0912e6b3)) + + +### Documentation + +* **repo:** clarify `sql` targets the temporal store, not the node/edge graph ([#173](https://github.com/theagenticguy/opencodehub/issues/173)) ([814774a](https://github.com/theagenticguy/opencodehub/commit/814774a013331f5a090fb349bab10665f0ebe2ca)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @opencodehub/analysis bumped to 0.3.3 + * @opencodehub/ingestion bumped to 0.4.5 + * @opencodehub/mcp bumped to 0.4.5 + * @opencodehub/pack bumped to 0.2.4 + * @opencodehub/scanners bumped to 0.2.3 + * @opencodehub/search bumped to 0.2.3 + * @opencodehub/storage bumped to 0.2.3 + * @opencodehub/wiki bumped to 0.2.3 + ## [0.5.5](https://github.com/theagenticguy/opencodehub/compare/cli-v0.5.4...cli-v0.5.5) (2026-05-29) diff --git a/packages/cli/package.json b/packages/cli/package.json index 6a2e515..7269d42 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@opencodehub/cli", - "version": "0.5.5", + "version": "0.5.6", "description": "OpenCodeHub — codehub CLI (analyze, setup, mcp, list, status, clean, query, context, impact, sql)", "license": "Apache-2.0", "repository": { diff --git a/packages/cobol-proleap/CHANGELOG.md b/packages/cobol-proleap/CHANGELOG.md index 6bf5bce..6cc6efe 100644 --- a/packages/cobol-proleap/CHANGELOG.md +++ b/packages/cobol-proleap/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [0.1.9](https://github.com/theagenticguy/opencodehub/compare/cobol-proleap-v0.1.8...cobol-proleap-v0.1.9) (2026-05-29) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @opencodehub/ingestion bumped to 0.4.5 + ## [0.1.8](https://github.com/theagenticguy/opencodehub/compare/cobol-proleap-v0.1.7...cobol-proleap-v0.1.8) (2026-05-29) diff --git a/packages/cobol-proleap/package.json b/packages/cobol-proleap/package.json index e24aa40..0bd9565 100644 --- a/packages/cobol-proleap/package.json +++ b/packages/cobol-proleap/package.json @@ -1,6 +1,6 @@ { "name": "@opencodehub/cobol-proleap", - "version": "0.1.8", + "version": "0.1.9", "description": "OpenCodeHub — COBOL deep-parse bridge over the uwol/cobol-parser JVM library (v4.0.0); gated behind --allow-build-scripts=proleap", "license": "Apache-2.0", "repository": { diff --git a/packages/ingestion/CHANGELOG.md b/packages/ingestion/CHANGELOG.md index 023dbc4..77ec04e 100644 --- a/packages/ingestion/CHANGELOG.md +++ b/packages/ingestion/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [0.4.5](https://github.com/theagenticguy/opencodehub/compare/ingestion-v0.4.4...ingestion-v0.4.5) (2026-05-29) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @opencodehub/analysis bumped to 0.3.3 + * @opencodehub/scip-ingest bumped to 0.2.5 + * @opencodehub/storage bumped to 0.2.3 + ## [0.4.4](https://github.com/theagenticguy/opencodehub/compare/ingestion-v0.4.3...ingestion-v0.4.4) (2026-05-29) diff --git a/packages/ingestion/package.json b/packages/ingestion/package.json index 56af123..c17f2ee 100644 --- a/packages/ingestion/package.json +++ b/packages/ingestion/package.json @@ -1,6 +1,6 @@ { "name": "@opencodehub/ingestion", - "version": "0.4.4", + "version": "0.4.5", "description": "OpenCodeHub — indexing pipeline (12-phase DAG, tree-sitter, language providers)", "license": "Apache-2.0", "repository": { diff --git a/packages/mcp/CHANGELOG.md b/packages/mcp/CHANGELOG.md index 97b8e31..7b33db9 100644 --- a/packages/mcp/CHANGELOG.md +++ b/packages/mcp/CHANGELOG.md @@ -1,5 +1,28 @@ # Changelog +## [0.4.5](https://github.com/theagenticguy/opencodehub/compare/mcp-v0.4.4...mcp-v0.4.5) (2026-05-29) + + +### Features + +* **cli:** expose 9 read-only graph tools as CLI subcommands ([#174](https://github.com/theagenticguy/opencodehub/issues/174)) ([be15666](https://github.com/theagenticguy/opencodehub/commit/be156663e486eaee185c800089afaa589dd8a2af)) + + +### Documentation + +* **repo:** clarify `sql` targets the temporal store, not the node/edge graph ([#173](https://github.com/theagenticguy/opencodehub/issues/173)) ([814774a](https://github.com/theagenticguy/opencodehub/commit/814774a013331f5a090fb349bab10665f0ebe2ca)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @opencodehub/analysis bumped to 0.3.3 + * @opencodehub/pack bumped to 0.2.4 + * @opencodehub/scanners bumped to 0.2.3 + * @opencodehub/search bumped to 0.2.3 + * @opencodehub/storage bumped to 0.2.3 + ## [0.4.4](https://github.com/theagenticguy/opencodehub/compare/mcp-v0.4.3...mcp-v0.4.4) (2026-05-29) diff --git a/packages/mcp/package.json b/packages/mcp/package.json index 164aabe..b6dbcbc 100644 --- a/packages/mcp/package.json +++ b/packages/mcp/package.json @@ -1,6 +1,6 @@ { "name": "@opencodehub/mcp", - "version": "0.4.4", + "version": "0.4.5", "description": "OpenCodeHub — stdio MCP server exposing code-graph + group tools", "license": "Apache-2.0", "repository": { diff --git a/packages/pack/CHANGELOG.md b/packages/pack/CHANGELOG.md index 57b72f1..9468c9d 100644 --- a/packages/pack/CHANGELOG.md +++ b/packages/pack/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [0.2.4](https://github.com/theagenticguy/opencodehub/compare/pack-v0.2.3...pack-v0.2.4) (2026-05-29) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @opencodehub/analysis bumped to 0.3.3 + * @opencodehub/ingestion bumped to 0.4.5 + * @opencodehub/storage bumped to 0.2.3 + ## [0.2.3](https://github.com/theagenticguy/opencodehub/compare/pack-v0.2.2...pack-v0.2.3) (2026-05-29) diff --git a/packages/pack/package.json b/packages/pack/package.json index 3ef53a4..9c8560d 100644 --- a/packages/pack/package.json +++ b/packages/pack/package.json @@ -1,6 +1,6 @@ { "name": "@opencodehub/pack", - "version": "0.2.3", + "version": "0.2.4", "description": "OpenCodeHub — deterministic M5 9-item code-pack BOM", "license": "Apache-2.0", "repository": { diff --git a/packages/scanners/CHANGELOG.md b/packages/scanners/CHANGELOG.md index 7f379cc..c41e0be 100644 --- a/packages/scanners/CHANGELOG.md +++ b/packages/scanners/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.2.3](https://github.com/theagenticguy/opencodehub/compare/scanners-v0.2.2...scanners-v0.2.3) (2026-05-29) + + +### Bug Fixes + +* **scanners:** exclude indexer-ignored dirs from vulture/radon/ty (drop .venv noise) ([#168](https://github.com/theagenticguy/opencodehub/issues/168)) ([848aa34](https://github.com/theagenticguy/opencodehub/commit/848aa34eba622c976ba6be968383824f0912e6b3)) + ## [0.2.2](https://github.com/theagenticguy/opencodehub/compare/scanners-v0.2.1...scanners-v0.2.2) (2026-05-29) diff --git a/packages/scanners/package.json b/packages/scanners/package.json index 1f08194..e76f004 100644 --- a/packages/scanners/package.json +++ b/packages/scanners/package.json @@ -1,6 +1,6 @@ { "name": "@opencodehub/scanners", - "version": "0.2.2", + "version": "0.2.3", "description": "OpenCodeHub — Priority-1 scanner wrappers (semgrep, betterleaks, osv-scanner, bandit, biome)", "license": "Apache-2.0", "repository": { diff --git a/packages/scip-ingest/CHANGELOG.md b/packages/scip-ingest/CHANGELOG.md index c559218..a05688b 100644 --- a/packages/scip-ingest/CHANGELOG.md +++ b/packages/scip-ingest/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [0.2.5](https://github.com/theagenticguy/opencodehub/compare/scip-ingest-v0.2.4...scip-ingest-v0.2.5) (2026-05-29) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @opencodehub/analysis bumped to 0.3.3 + ## [0.2.4](https://github.com/theagenticguy/opencodehub/compare/scip-ingest-v0.2.3...scip-ingest-v0.2.4) (2026-05-29) diff --git a/packages/scip-ingest/package.json b/packages/scip-ingest/package.json index 3ac79d5..d809214 100644 --- a/packages/scip-ingest/package.json +++ b/packages/scip-ingest/package.json @@ -1,6 +1,6 @@ { "name": "@opencodehub/scip-ingest", - "version": "0.2.4", + "version": "0.2.5", "description": "OpenCodeHub — SCIP (.scip) loader + per-language indexer runners (replaces @opencodehub/lsp-oracle)", "license": "Apache-2.0", "repository": { diff --git a/packages/search/CHANGELOG.md b/packages/search/CHANGELOG.md index ebfa46e..b013090 100644 --- a/packages/search/CHANGELOG.md +++ b/packages/search/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [0.2.3](https://github.com/theagenticguy/opencodehub/compare/search-v0.2.2...search-v0.2.3) (2026-05-29) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @opencodehub/storage bumped to 0.2.3 + ## [0.2.2](https://github.com/theagenticguy/opencodehub/compare/search-v0.2.1...search-v0.2.2) (2026-05-29) diff --git a/packages/search/package.json b/packages/search/package.json index 1c6a46f..a576ae0 100644 --- a/packages/search/package.json +++ b/packages/search/package.json @@ -1,6 +1,6 @@ { "name": "@opencodehub/search", - "version": "0.2.2", + "version": "0.2.3", "description": "OpenCodeHub — BM25 + RRF hybrid search", "license": "Apache-2.0", "repository": { diff --git a/packages/storage/CHANGELOG.md b/packages/storage/CHANGELOG.md index ada11ec..e663581 100644 --- a/packages/storage/CHANGELOG.md +++ b/packages/storage/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.2.3](https://github.com/theagenticguy/opencodehub/compare/storage-v0.2.2...storage-v0.2.3) (2026-05-29) + + +### Features + +* **cli:** status surfaces retrieval mode (summaries / vectors / embedder) ([#172](https://github.com/theagenticguy/opencodehub/issues/172)) ([611e818](https://github.com/theagenticguy/opencodehub/commit/611e818cc76c890c4f7c4eaf8c8065d1fb5a3a1a)) + ## [0.2.2](https://github.com/theagenticguy/opencodehub/compare/storage-v0.2.1...storage-v0.2.2) (2026-05-29) diff --git a/packages/storage/package.json b/packages/storage/package.json index 50dd6f9..f198aab 100644 --- a/packages/storage/package.json +++ b/packages/storage/package.json @@ -1,6 +1,6 @@ { "name": "@opencodehub/storage", - "version": "0.2.2", + "version": "0.2.3", "description": "OpenCodeHub — DuckDB graph store (@duckdb/node-api + hnsw_acorn + fts)", "license": "Apache-2.0", "repository": { diff --git a/packages/wiki/CHANGELOG.md b/packages/wiki/CHANGELOG.md index 13774a2..d56fb45 100644 --- a/packages/wiki/CHANGELOG.md +++ b/packages/wiki/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [0.2.3](https://github.com/theagenticguy/opencodehub/compare/wiki-v0.2.2...wiki-v0.2.3) (2026-05-29) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @opencodehub/storage bumped to 0.2.3 + ## [0.2.2](https://github.com/theagenticguy/opencodehub/compare/wiki-v0.2.1...wiki-v0.2.2) (2026-05-29) diff --git a/packages/wiki/package.json b/packages/wiki/package.json index 9a6fbba..9f3787f 100644 --- a/packages/wiki/package.json +++ b/packages/wiki/package.json @@ -1,6 +1,6 @@ { "name": "@opencodehub/wiki", - "version": "0.2.2", + "version": "0.2.3", "description": "OpenCodeHub — Markdown wiki renderer (architecture, api-surface, dependency-map, ownership-map, risk-atlas) over the graph store", "license": "Apache-2.0", "repository": {