**metrics:** Update metrics collectors and exporters to support HTTP metrics (59cd526)
Bug Fixes
**router:** fix trailing slash normalization in BunRouter adapter to prevent 301 redirects for paths like `/dashboard/` when route is registered as `/dashboard`, ensuring consistent behavior for both forms and fixing 404s on API endpoints with trailing slashes
Maintenance
Merge branch 'main' of github.com:xraph/forge (f52633d)
**changelog:** update CHANGELOG.md for v1.0.0 (120f1ef)
**validation:** resolve zero-value validation bug for all primitive types - Fixed critical validation bug where required query/header/path parameters with zero values (`false`, `0`, `0.0`) were incorrectly rejected as missing. The validator now properly skips zero-value validation for parameter fields since they're already validated during binding where we can distinguish between missing and explicit zero values. Adds 9 comprehensive test cases covering all primitive types.
**validation:** fix required boolean query parameters incorrectly failing when set to false - Previously, required boolean query parameters would fail validation with "field is required" error when explicitly set to `false`. The validator was incorrectly treating Go's zero value (`false`) as a missing parameter. This fix excludes boolean fields from the zero-value required check since they are already validated during the binding phase.
**ci:** Release automation now uses Release Please instead of custom workflow. Version tracking moved from .github/version.json to .release-please-manifest.json.
Features
add initial documentation structure and configuration files (a14bc4f)
**app:** introduce functional options for AppConfig and update app creation methods (69e2319)
**banner:** implement startup banner display with configuration options (c1faf4d)
**ci:** implement comprehensive CI/CD workflows and documentation (5e3c81e)
**ci:** migrate to Release Please for automated releases (412e43b)
**config:** enhance DI container integration and update license (f41a2ba)
**consensus:** enhance RaftNode interface and implement new methods (75423fe)
**dev:** implement hot reload functionality and update command syntax (5ee99c6)
**discovery:** remove outdated discovery examples and introduce database helpers (25f2ab0)
**docs:** add comprehensive documentation and branding for Forge framework (cf770d2)
**docs:** add themed logo component and update extensions documentation (b6a9838)
**docs:** update metrics and add logo assets (d1e4c55)
enhance client generator with new features and error handling (51692e5)
**extension:** enhance process management with wait channel (76427c0)
**farp:** add new FARP extension with initial implementation (67fed23)
**health:** add Windows-specific disk and system metrics collectors (d61f475)
introduce new CLI framework and dashboard extension (c64dac8)
**license:** add Forge License Decision Tree for quick licensing guidance (e73443c)
**lifecycle:** introduce LifecycleManager for managing application lifecycle hooks (b831e50)
**lifecycle:** introduce LifecycleManager for managing application lifecycle hooks (52b2cff)
**local:** add stubs for presence and room store methods (fe50c28)
**logger:** introduce BeautifulLogger for enhanced logging experience (e2415d9)
**logo:** add new SVG logo asset (3103a69)
**memory:** enhance memory manager with embedding function and consolidation testing (69a56d5)
**observability:** add metrics and health endpoints to app (a253e7d)
**process:** implement platform-specific process management for Unix and Windows (7ae559e)
**scripts:** add script to fix gosec SARIF file format (96ce0a0)
**tests:** add logger and metrics configuration to runnable extension tests (4704e6b)
Bug Fixes
add comprehensive README for Forge v2 framework (fc02c41)
**app:** enhance error handling for endpoint setup and response writing (5316849)
cast page.data to any to avoid type errors (004a2d3)
**ci:** add continue-on-error to quality job and improve vulnerability check step (d295ec6)
**ci:** disable snapcraft builds in GoReleaser - snapcraft not available in GitHub Actions (0fffc76)
**ci:** enable snapcraft builds and install snapcraft in release workflow (9ad702e)
**ci:** exclude Windows from release tests due to flaky AI extension tests (27a5b6d)