From d764e280b1a209c69fb4aadc3bcfbdd96a7b2175 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 May 2026 17:23:30 +0000 Subject: [PATCH 1/2] chore: release main --- .release-please-manifest.json | 6 +++--- CHANGELOG.md | 11 +++++++++++ package.json | 2 +- packages/cli/CHANGELOG.md | 9 +++++++++ packages/cli/package.json | 2 +- packages/ingestion/CHANGELOG.md | 11 +++++++++++ packages/ingestion/package.json | 2 +- 7 files changed, 37 insertions(+), 6 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 52348387..8e843266 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,10 +1,10 @@ { - ".": "0.2.0", + ".": "0.3.0", "packages/analysis": "0.1.1", - "packages/cli": "0.2.0", + "packages/cli": "0.2.1", "packages/core-types": "0.2.0", "packages/embedder": "0.1.1", - "packages/ingestion": "0.2.0", + "packages/ingestion": "0.3.0", "packages/mcp": "0.2.0", "packages/sarif": "0.1.1", "packages/scanners": "0.1.1", diff --git a/CHANGELOG.md b/CHANGELOG.md index ffcbe6c0..40487938 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [0.3.0](https://github.com/theagenticguy/opencodehub/compare/root-v0.2.0...root-v0.3.0) (2026-05-12) + + +### ⚠ BREAKING CHANGES + +* **ingestion:** OCH_NATIVE_PARSER=1 + Dart now throws instead of loading a native binding. Real impact: zero for npm installs; the binding never worked there anyway. + +### Bug Fixes + +* **ingestion:** drop tree-sitter-dart git-URL dep — Dart is WASM-only on npm ([b709f64](https://github.com/theagenticguy/opencodehub/commit/b709f64f73080ca1444e8f52f961009d581c3fdf)) + ## [0.2.0](https://github.com/theagenticguy/opencodehub/compare/root-v0.1.1...root-v0.2.0) (2026-05-12) diff --git a/package.json b/package.json index 3ba873f9..c5d59b1f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "opencodehub-monorepo", - "version": "0.2.0", + "version": "0.3.0", "private": true, "description": "OpenCodeHub — Apache-2.0 code intelligence graph + MCP server for AI coding agents", "license": "Apache-2.0", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 83d2db63..56985ba4 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [0.2.1](https://github.com/theagenticguy/opencodehub/compare/cli-v0.2.0...cli-v0.2.1) (2026-05-12) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @opencodehub/ingestion bumped to 0.3.0 + ## [0.2.0](https://github.com/theagenticguy/opencodehub/compare/cli-v0.1.0...cli-v0.2.0) (2026-05-12) diff --git a/packages/cli/package.json b/packages/cli/package.json index cf9bb9ee..cb5af075 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@opencodehub/cli", - "version": "0.2.0", + "version": "0.2.1", "description": "OpenCodeHub — codehub CLI (analyze, setup, mcp, list, status, clean, query, context, impact, sql)", "license": "Apache-2.0", "repository": { diff --git a/packages/ingestion/CHANGELOG.md b/packages/ingestion/CHANGELOG.md index 8e6c045b..a562d658 100644 --- a/packages/ingestion/CHANGELOG.md +++ b/packages/ingestion/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [0.3.0](https://github.com/theagenticguy/opencodehub/compare/ingestion-v0.2.0...ingestion-v0.3.0) (2026-05-12) + + +### ⚠ BREAKING CHANGES + +* **ingestion:** OCH_NATIVE_PARSER=1 + Dart now throws instead of loading a native binding. Real impact: zero for npm installs; the binding never worked there anyway. + +### Bug Fixes + +* **ingestion:** drop tree-sitter-dart git-URL dep — Dart is WASM-only on npm ([b709f64](https://github.com/theagenticguy/opencodehub/commit/b709f64f73080ca1444e8f52f961009d581c3fdf)) + ## [0.2.0](https://github.com/theagenticguy/opencodehub/compare/ingestion-v0.1.0...ingestion-v0.2.0) (2026-05-12) diff --git a/packages/ingestion/package.json b/packages/ingestion/package.json index 9d7ba358..8277c124 100644 --- a/packages/ingestion/package.json +++ b/packages/ingestion/package.json @@ -1,6 +1,6 @@ { "name": "@opencodehub/ingestion", - "version": "0.2.0", + "version": "0.3.0", "description": "OpenCodeHub — indexing pipeline (12-phase DAG, tree-sitter, language providers)", "license": "Apache-2.0", "repository": { From 0db4f96ed2e26534a0c0d3cfaa988998a249f0dc Mon Sep 17 00:00:00 2001 From: Laith Al-Saadoon Date: Tue, 12 May 2026 17:25:25 +0000 Subject: [PATCH 2/2] ci: trigger checks on release PR