Full deployment history for this project.
chore: add auto approve+merge workflow
chore: add auto approve+merge workflow
chore: bump package version
chore: normalize package metadata and bump version
feat: trace real COBOL model generations
feat: trace real COBOL model generations
Replace v0 assets with original product branding
release: harden COBOL platform contract v0.6.0
release: harden COBOL platform contract v0.6.0
fix: support Vercel alias compliance status
fix: support Vercel alias compliance status
fix: use stable typescript for vercel build
Merge pull request #107 from mbarbine/copilot/merge-all-pull-requests
๐ก๏ธ ๐งน Security fixes and API enhancements - Implement 100KB payload size limits in analyze, modernize, ascii, and kanban routes. - Sanitize validation error responses by removing Zod format details. - Add AbortSignal timeouts to all outbound fetch calls in mcp, jobs, and kanban-client. - Update modernize endpoint to use claude-3-5-sonnet-20240620. - Update OpenAPI documentation (docs/route.ts) to reflect new security responses. - Add comprehensive unit tests in lib/api-routes.test.ts. Co-authored-by: mbarbine <3211492+mbarbine@users.noreply.github.com>
๐ก๏ธ ๐งน Security fixes and API enhancements - Implement 100KB payload size limits in analyze, modernize, ascii, and kanban routes. - Sanitize validation error responses by removing Zod format details. - Add AbortSignal timeouts to all outbound fetch calls in mcp, jobs, and kanban-client. - Update modernize endpoint to use claude-3-5-sonnet-20240620. - Update OpenAPI documentation (docs/route.ts) to reflect new security responses. - Add comprehensive unit tests in lib/api-routes.test.ts. Co-authored-by: mbarbine <3211492+mbarbine@users.noreply.github.com>
Merge pull request #77 from mbarbine/๐งน-extract-modernize-hook-15617014032345639447 ๐งน Extract handleModernize to useModernize hook
Merge pull request #86 from mbarbine/jules-365528326048694280-ff5d09d8 ๐งน Refactor AnalysisPanel to extract complex JSX sub-components
Merge pull request #92 from mbarbine/performance-ascii-svg-generation-opt-15049739776636782583 โก Optimize ASCII SVG generation by reducing string re-allocations
โก Optimize ASCII SVG generation by reducing string re-allocations - Consolidate multiple .split("\n") calls into one. - Replace chained .replace() calls with a single regex pass and lookup map. - Move ESCAPE_MAP to module scope to avoid re-allocation per request. - Preserves exact functional parity (escaping and truncation). Co-authored-by: mbarbine <3211492+mbarbine@users.noreply.github.com>
security: add .max() constraints to session schemas to prevent DoS Added length validation to string fields in SessionHistoryItemSchema and SessionDataSchema. This provides defense-in-depth against oversized payloads. Added unit tests to verify the new constraints. Co-authored-by: mbarbine <3211492+mbarbine@users.noreply.github.com>
๐ก๏ธ Jules here! I've addressed a medium-severity vulnerability regarding missing input validation in the Kanban API. To prevent potential Denial of Service (DoS) attacks from oversized payloads, I implemented string length constraints in the Zod schema and added explicit checks for query parameters. I have verified these changes through a thorough code review and by running the necessary unit tests. Co-authored-by: mbarbine <3211492+mbarbine@users.noreply.github.com>
Merge pull request #85 from mbarbine/test/mcp-error-handling-836283076298208166 ๐งช Test MCP JSON-RPC Internal Error Handler
Merge pull request #81 from mbarbine/jules-refactor-homepage-4973653721063206151 ๐งน [Refactor HomePage into smaller semantic components]
feat: Add Content-Security-Policy header to next.config.mjs Co-authored-by: mbarbine <3211492+mbarbine@users.noreply.github.com>
perf: Pre-allocate array for trimmed lines in cobol analyzer Co-authored-by: mbarbine <3211492+mbarbine@users.noreply.github.com>
๐ [security fix] Implement secure server-side logging for API errors Added console.error logging to all API route catch blocks and upstream failure points to improve observability while maintaining generic error responses for clients. Affected routes: - app/api/ascii/route.ts - app/api/analyze/route.ts - app/api/modernize/route.ts - app/api/kanban/route.ts - app/api/mcp/route.ts - app/api/jobs/route.ts Co-authored-by: mbarbine <3211492+mbarbine@users.noreply.github.com>
๐งช Add unit tests for computeComplexity function in cobol-analyzer.ts - Implement comprehensive tests for all complexity tiers (trivial to enterprise). - Verify scoring logic for line counts, control flow, file I/O, risks, and dependencies. - Validate score caps and descriptive factor reporting. Co-authored-by: mbarbine <3211492+mbarbine@users.noreply.github.com>
Add Content-Security-Policy header to global Next.js configuration Implemented a foundational CSP policy in `next.config.mjs` to add defense-in-depth against XSS and cross-site injections. Co-authored-by: mbarbine <3211492+mbarbine@users.noreply.github.com>
๐จ Palette: Add skip to content link ๐ก What: Added a 'Skip to content' link for keyboard users. ๐ฏ Why: Improves accessibility by allowing keyboard users to bypass the navigation. ๐ธ Before/After: Added a visually-hidden link in `layout.tsx` that appears on focus. โฟ Accessibility: Ensures WCAG compliance for keyboard navigation bypass blocks. Co-authored-by: mbarbine <3211492+mbarbine@users.noreply.github.com>
Add skip to main content link Adds a visually hidden skip to content link in layout.tsx that becomes visible on keyboard focus, allowing users to bypass navigation. Also adds the required `id="main-content"` target to the `<main>` element in page.tsx. Co-authored-by: mbarbine <3211492+mbarbine@users.noreply.github.com>
Refactor AnalysisPanel to extract complex JSX sub-components Co-authored-by: mbarbine <3211492+mbarbine@users.noreply.github.com>
Add unit test for MCP API error handling fallback Co-authored-by: mbarbine <3211492+mbarbine@users.noreply.github.com>
๐งน [Extract handleToolCall to reduce POST function length] Co-authored-by: mbarbine <3211492+mbarbine@users.noreply.github.com>
๐งน Extract LanguageSwitcher from TopBar to improve code health Co-authored-by: mbarbine <3211492+mbarbine@users.noreply.github.com>
Merge pull request #73 from mbarbine/sentinel-security-headers-15181664421721662096 ๐ก๏ธ Sentinel: [security improvement] apply global security headers
๐ก๏ธ Sentinel: [security improvement] apply global security headers Co-authored-by: mbarbine <3211492+mbarbine@users.noreply.github.com>
Performance: short circuit regex checks inside computeMetrics. Co-authored-by: mbarbine <3211492+mbarbine@users.noreply.github.com>
Merge pull request #69 from mbarbine/bolt-optimization-16972739294323949241 โก Bolt: [performance improvement] Hoist procedure division regular expressions
โก Bolt: [performance improvement] Hoist procedure division regular expressions Moved procedural regexes out of `computeMetrics` to global scope. Co-authored-by: mbarbine <3211492+mbarbine@users.noreply.github.com>
perf: optimize Y2K regex checks in `detectRisks` with early return Co-authored-by: mbarbine <3211492+mbarbine@users.noreply.github.com>
perf: optimize Y2K regex checks in `detectRisks` with early return Co-authored-by: mbarbine <3211492+mbarbine@users.noreply.github.com>
Merge pull request #47 from mbarbine/palette-focus-rings-12040544371199261219 ๐จ Palette: [UX] Add focus states to static navigation elements
Add files via upload
Add title for Cobol Modernization project
Merge branch 'main' into palette-fix-history-close-btn-a11y-15130137813028816306
Merge pull request #28 from mbarbine/palette-fix-history-close-btn-a11y-15130137813028816306 ๐จ Palette: Improve accessibility of history panel controls
Merge pull request #30 from mbarbine/bolt-precompute-string-trim-5959791127491200822 โก Bolt: [performance improvement] Optimize string trim and regex exec