Spaces:
Running
Running
Commit ·
8549189
1
Parent(s): d7760bd
chore: bump version to 0.36.0 -- Phase 35 complete
Browse filesPhase 35 -- Entity Intelligence Dashboard
Frontend entity view: 3 tabs -> 6 tabs
Before: Findings | Relationship Graph | Evidence Locker
After: Findings | Relationship Graph | Timeline | Forensics |
Network Analysis | Evidence Locker
Frontend entity view: 3 API calls -> 6 API calls
Added: Api.timeline(), Api.graphAnalytics(), Api.investigate()
New page: #/forensics
Network-wide ghost company + shadow director + circular ownership dashboard
Nav link added to desktop and mobile navbar
Home stats: 4 counters -> 6 counters
Added: Audit Reports count + total Relationship count
api.js: Api.investigate() method added
Tests: 113 total (15 new, was 98)
- api/main.py +2 -2
- config/settings.py +1 -1
api/main.py
CHANGED
|
@@ -52,7 +52,7 @@ app = FastAPI(
|
|
| 52 |
"All data sourced from official government records. "
|
| 53 |
"Outputs are structural indicators, not legal findings."
|
| 54 |
),
|
| 55 |
-
version="0.
|
| 56 |
lifespan=lifespan,
|
| 57 |
)
|
| 58 |
|
|
@@ -135,7 +135,7 @@ def health_check():
|
|
| 135 |
return HealthResponse(
|
| 136 |
status="ok" if connected else "degraded",
|
| 137 |
neo4j_connected=connected,
|
| 138 |
-
version="0.
|
| 139 |
generated_at=datetime.now().isoformat(),
|
| 140 |
)
|
| 141 |
|
|
|
|
| 52 |
"All data sourced from official government records. "
|
| 53 |
"Outputs are structural indicators, not legal findings."
|
| 54 |
),
|
| 55 |
+
version="0.36.0",
|
| 56 |
lifespan=lifespan,
|
| 57 |
)
|
| 58 |
|
|
|
|
| 135 |
return HealthResponse(
|
| 136 |
status="ok" if connected else "degraded",
|
| 137 |
neo4j_connected=connected,
|
| 138 |
+
version="0.36.0",
|
| 139 |
generated_at=datetime.now().isoformat(),
|
| 140 |
)
|
| 141 |
|
config/settings.py
CHANGED
|
@@ -6,7 +6,7 @@ load_dotenv()
|
|
| 6 |
|
| 7 |
# Project Info
|
| 8 |
PROJECT_NAME = "BharatGraph"
|
| 9 |
-
VERSION = "0.
|
| 10 |
DESCRIPTION = "AI-powered public transparency platform for India"
|
| 11 |
|
| 12 |
# Database
|
|
|
|
| 6 |
|
| 7 |
# Project Info
|
| 8 |
PROJECT_NAME = "BharatGraph"
|
| 9 |
+
VERSION = "0.36.0" # NEW-A7 FIX: bumped from 0.31.0 after 3 bug sprints
|
| 10 |
DESCRIPTION = "AI-powered public transparency platform for India"
|
| 11 |
|
| 12 |
# Database
|