gitdataai/libs/observability/src
ZhenYi 09645d8641 fix: resolve multiple bugs across backend and frontend
Security fixes:
- Remove WS token from plaintext log output (ws_universal.rs)
- Replace weak LCG PRNG with rand::thread_rng() for access key generation
- Add project membership check to issue triage endpoint (prevent unauthorized AI usage)
- Validate deepLinkUrl to prevent javascript: navigation (XSS defense-in-depth)

Data integrity fixes:
- Fix UUID truncation in AI model sync (as_u128() as i64 -> timestamp_millis)
- Wrap PR cascade delete in database transaction
- Add missing cascade deletes for room_message_reaction, room_message_edit_history, room_notifications
- Fix N+1 query for last_commit_times (single grouped query instead of per-repo)

Panic prevention:
- Replace unwrap() with safe fallbacks in health/metrics endpoints (email, git-hook apps)
- Replace unwrap() in access key scopes serialization
- Replace expect() in tool executor result map with synthetic error
- Replace expect() in log level parsing with default fallback

Logic bugs:
- Fix users_online metric double-decrement (decrement only when count reaches 0)
- Fix Map iteration + deletion bug in universal-ws.ts onclose handler
- Fix stale audioStream reference in catch block (use local stream variable)
- Add missing reInit event cleanup in carousel.tsx
- Fix email retry backoff integer overflow ((1 << i) as u64 -> 1u64 << i)

React fixes:
- Use message.id instead of index as key in message-list
- Add audio stream cleanup on unmount in use-audio-recording
2026-04-27 13:54:21 +08:00
..
lib.rs feat(observability): inject _msg field for VictoriaLogs compatibility 2026-04-26 13:31:05 +08:00
metrics_middleware.rs fix: remaining unwrap panics and new bugs discovered during audit 2026-04-27 11:30:01 +08:00
msg_json_fmt.rs feat(observability): use human-readable log format for terminals 2026-04-26 16:39:03 +08:00
otlp.rs feat(observability): inject _msg field for VictoriaLogs compatibility 2026-04-26 13:31:05 +08:00
prometheus_exporter.rs feat(observability): Phase 6 OTLP tracing + Prometheus metrics endpoint 2026-04-22 10:27:54 +08:00
slog_json.rs feat(observability): Phase 6 OTLP tracing + Prometheus /metrics endpoint 2026-04-21 22:28:15 +08:00
tracing_fmt.rs fix: resolve multiple bugs across backend and frontend 2026-04-27 13:54:21 +08:00
tracing_init.rs feat(observability): Phase 1-5 slog structured logging across platform 2026-04-21 13:44:12 +08:00
tracing_middleware.rs feat(observability): inject _msg field for VictoriaLogs compatibility 2026-04-26 13:31:05 +08:00