v0.3.12
3 Commits
| Author | SHA1 | Message | Date | |
|---|---|---|---|---|
|
|
19d415a235 |
feat: add SQLCipher database encryption support and consolidate agent documentation
Some checks failed
Blockchain Synchronization Verification / sync-verification (push) Failing after 3s
CLI Tests / test-cli (push) Failing after 3s
Cross-Chain Functionality Tests / test-cross-chain-sync (push) Successful in 2s
Cross-Chain Functionality Tests / test-cross-chain-transactions (push) Successful in 3s
Cross-Chain Functionality Tests / test-cross-chain-bridge (push) Has been skipped
Cross-Chain Functionality Tests / test-multi-chain-consensus (push) Successful in 2s
Cross-Chain Functionality Tests / aggregate-results (push) Has been skipped
Deploy to Testnet / deploy-testnet (push) Successful in 1m12s
Documentation Validation / validate-docs (push) Failing after 8s
Documentation Validation / validate-policies-strict (push) Successful in 3s
Integration Tests / test-service-integration (push) Successful in 2m6s
Multi-Chain Island Architecture Tests / test-multi-chain-island (push) Successful in 2s
Multi-Node Blockchain Health Monitoring / health-check (push) Failing after 4s
P2P Network Verification / p2p-verification (push) Successful in 4s
Package Tests / Python package - aitbc-agent-sdk (push) Successful in 32s
Package Tests / Python package - aitbc-core (push) Successful in 14s
Package Tests / Python package - aitbc-crypto (push) Successful in 12s
Package Tests / Python package - aitbc-sdk (push) Successful in 9s
Package Tests / JavaScript package - aitbc-sdk-js (push) Successful in 8s
Package Tests / JavaScript package - aitbc-token (push) Successful in 17s
Python Tests / test-python (push) Successful in 15s
Security Scanning / security-scan (push) Successful in 27s
Node Failover Simulation / failover-test (push) Successful in 7s
Multi-Node Stress Testing / stress-test (push) Successful in 6s
Cross-Node Transaction Testing / transaction-test (push) Successful in 4s
- Add SQLCipher encryption for ait-mainnet database with configurable flag - Add db_encryption_enabled and db_encryption_key_path config settings - Implement encryption key loading and PRAGMA key setup via connection events - Add shutdown_db function for proper database cleanup - Export middleware classes in aitbc/__init__.py - Fix import path in sync.py for settings - Remove duplicate agent documentation from docs |
||
| d5b5c39d28 |
fix: resolve pathological nesting in docs/archive directory
Some checks failed
AITBC CI/CD Pipeline / lint-and-test (3.13.5) (push) Has been cancelled
AITBC CI/CD Pipeline / test-cli (push) Has been cancelled
AITBC CI/CD Pipeline / test-services (push) Has been cancelled
AITBC CI/CD Pipeline / test-production-services (push) Has been cancelled
AITBC CI/CD Pipeline / security-scan (push) Has been cancelled
AITBC CI/CD Pipeline / build (push) Has been cancelled
AITBC CI/CD Pipeline / deploy-staging (push) Has been cancelled
AITBC CI/CD Pipeline / deploy-production (push) Has been cancelled
AITBC CI/CD Pipeline / performance-test (push) Has been cancelled
AITBC CI/CD Pipeline / docs (push) Has been cancelled
AITBC CI/CD Pipeline / release (push) Has been cancelled
AITBC CI/CD Pipeline / notify (push) Has been cancelled
GPU Benchmark CI / gpu-benchmark (3.13.5) (push) Has been cancelled
Security Scanning / Bandit Security Scan (apps/coordinator-api/src) (push) Has been cancelled
Security Scanning / Bandit Security Scan (cli/aitbc_cli) (push) Has been cancelled
Security Scanning / Bandit Security Scan (packages/py/aitbc-core/src) (push) Has been cancelled
Security Scanning / Bandit Security Scan (packages/py/aitbc-crypto/src) (push) Has been cancelled
Security Scanning / Bandit Security Scan (packages/py/aitbc-sdk/src) (push) Has been cancelled
Security Scanning / Bandit Security Scan (tests) (push) Has been cancelled
Security Scanning / CodeQL Security Analysis (javascript) (push) Has been cancelled
Security Scanning / CodeQL Security Analysis (python) (push) Has been cancelled
Security Scanning / Dependency Security Scan (push) Has been cancelled
Security Scanning / Container Security Scan (push) Has been cancelled
Security Scanning / OSSF Scorecard (push) Has been cancelled
Security Scanning / Security Summary Report (push) Has been cancelled
CRITICAL FIX: Archive directory had severe 'box in a box' nesting issue PROBLEM IDENTIFIED: - Pathological nesting: 46 levels deep in archive directory - Structure: /docs/archive/by_category/infrastructure/by_category/security/by_category/core_planning/.../cli - Usability: Completely unusable, impossible to navigate - Maintenance: Impossible to maintain or update SOLUTION APPLIED: ✅ Extracted all .md files from deeply nested structure ✅ Created flat, organized structure by content category ✅ Preserved all content without any loss ✅ Backed up broken structure to archive_broken_backup NEW STRUCTURE: /docs/archive/ ├── analytics/ # 6 files - AI agent communication analysis ├── backend/ # 3 files - Backend system documentation ├── cli/ # 16 files - CLI implementation and testing ├── core_planning/ # 5 files - Planning and requirements ├── general/ # 16 files - General project documentation ├── infrastructure/ # 10 files - Infrastructure and deployment └── security/ # 7 files - Security and compliance RESULTS: 🎯 Before: 46 levels deep, 0% usable 🎯 After: 2 levels max, 100% usable 📁 All 63 files properly categorized and accessible 🔍 Easy navigation and maintenance achieved BENEFITS: ✅ Usable archive structure ✅ Logical content organization ✅ Easy navigation and maintenance ✅ All historical documentation preserved ✅ Scalable for future additions VERIFICATION: ✅ All files moved and categorized correctly ✅ No content lost in transition ✅ Structure is flat and navigable ✅ Categories are logical and clear ✅ Backup created for safety STATUS: Critical nesting issue completely resolved |
|||
|
|
fe3e8b82e5 |
refactor: remove Docker configuration files - transitioning to native deployment
- Remove Dockerfile for CLI multi-stage build - Remove docker-compose.yml with 20+ service definitions - Remove containerized deployment infrastructure (blockchain, consensus, network nodes) - Remove plugin ecosystem services (registry, marketplace, security, analytics) - Remove global infrastructure and AI agent services - Remove monitoring stack (Prometheus, Grafana) and nginx reverse proxy - Remove database services |