All checks were successful
CI/CD / go-lint (push) Has been skipped
CI/CD / python-lint (push) Has been skipped
CI/CD / nodejs-lint (push) Has been skipped
CI/CD / test-go-ai-compliance (push) Successful in 32s
CI/CD / test-python-backend-compliance (push) Successful in 34s
CI/CD / test-python-document-crawler (push) Successful in 23s
CI/CD / test-python-dsms-gateway (push) Successful in 21s
CI/CD / validate-canonical-controls (push) Successful in 11s
CI/CD / Deploy (push) Successful in 2s
Module 2: Extended Compliance Dashboard with roadmap, module-status, next-actions, snapshots, score-history Module 3: 7 German security document templates (IT-Sicherheitskonzept, Datenschutz, Backup, Logging, Incident-Response, Zugriff, Risikomanagement) Module 4: Compliance Process Manager with CRUD, complete/skip/seed, ~50 seed tasks, 3-tab UI Module 5: Evidence Collector Extended with automated checks, control-mapping, coverage report, 4-tab UI Also includes: canonical control library enhancements (verification method, categories, dedup), control generator improvements, RAG client extensions 52 tests pass, frontend builds clean. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
18 lines
875 B
SQL
18 lines
875 B
SQL
-- 048: Expand processing_path CHECK constraint for new pipeline paths
|
|
-- New values: prefilter_skip, no_control, store_failed, error
|
|
|
|
ALTER TABLE canonical_processed_chunks
|
|
DROP CONSTRAINT IF EXISTS canonical_processed_chunks_processing_path_check;
|
|
|
|
ALTER TABLE canonical_processed_chunks
|
|
ADD CONSTRAINT canonical_processed_chunks_processing_path_check
|
|
CHECK (processing_path IN (
|
|
'structured', -- Rule 1/2: structured from original text
|
|
'llm_reform', -- Rule 3: LLM reformulated
|
|
'skipped', -- Legacy: skipped for other reasons
|
|
'prefilter_skip', -- Local LLM determined chunk has no requirement
|
|
'no_control', -- Processing ran but no control could be derived
|
|
'store_failed', -- Control generated but DB store failed
|
|
'error' -- Processing error occurred
|
|
));
|