projecta-rrr 1.21.5 → 1.21.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -4,6 +4,18 @@ All notable changes to RRR will be documented in this file.
4
4
 
5
5
  Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
6
6
 
7
+ ## [1.21.6] - 2026-04-18
8
+
9
+ ### Fixed
10
+
11
+ - **`index_repo` NOT NULL violation on `ingestion_jobs.repo_id`.** The tool's
12
+ initial INSERT used `NULL` for repo_id (planning to fill in post-clone)
13
+ but the column schema is NOT NULL. Every `index_repo` call returned
14
+ `{error: internal_error}`. Caught during second-repo dogfood onboarding.
15
+ Fix: insert the same `pending:{slug}` placeholder the tool already
16
+ passes to `enqueueIndexRepo`; worker overwrites with real repo_id
17
+ after clone + root_sha computation.
18
+
7
19
  ## [1.21.5] - 2026-04-18
8
20
 
9
21
  **Stale-global-CLI detection + `/rrr:update` global-binary refresh.**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "projecta-rrr",
3
- "version": "1.21.5",
3
+ "version": "1.21.6",
4
4
  "description": "A meta-prompting, context engineering and spec-driven development system for Claude Code by Projecta.ai",
5
5
  "bin": {
6
6
  "projecta-rrr": "bin/install.js",