aura-security 0.4.7 → 0.4.8

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.
package/dist/cli.js CHANGED
@@ -24,7 +24,7 @@ import { existsSync, writeFileSync, mkdirSync } from 'fs';
24
24
  import { join, resolve, basename } from 'path';
25
25
  import { spawnSync } from 'child_process';
26
26
  const AURA_URL = process.env.AURA_URL ?? 'http://127.0.0.1:3000';
27
- const VERSION = '0.4.7';
27
+ const VERSION = '0.4.8';
28
28
  // ANSI colors for terminal output
29
29
  const colors = {
30
30
  reset: '\x1b[0m',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aura-security",
3
- "version": "0.4.7",
3
+ "version": "0.4.8",
4
4
  "description": "Deterministic security auditing engine with optional AI advisory layer. Run as CLI, CI step, or service. AI does not make enforcement decisions.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -436,6 +436,13 @@
436
436
  overflow-y: auto;
437
437
  }
438
438
 
439
+ /* Mobile: hide details panel */
440
+ @media (max-width: 768px) {
441
+ #details-panel {
442
+ display: none;
443
+ }
444
+ }
445
+
439
446
  .selected-repo-header {
440
447
  display: none;
441
448
  padding: 12px;