From 8e905bb39c33887fdcf5f72be5c6c167fca2ec4f Mon Sep 17 00:00:00 2001 From: Devanshu Rajesh Chicholikar Date: Tue, 23 Dec 2025 10:30:59 -0600 Subject: [PATCH 1/2] docs: add CHANGELOG.md for version history --- CHANGELOG.md | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..24cff84 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,52 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +### Added +- Frontend v2 redesign (in progress) +- Anonymous repo indexing flow +- AI-powered search summaries + +### Changed +- Premium dark theme with glassmorphism effects +- Improved search result display + +--- + +## [0.1.0] - 2024-12-23 + +### Added +- Semantic code search using vector embeddings +- Dependency graph analysis +- Impact analysis for code changes +- Code style analysis +- MCP (Model Context Protocol) server integration +- Support for Python, TypeScript, JavaScript, Go, Rust +- Supabase authentication +- Redis caching layer +- Docker deployment support +- Comprehensive API documentation + +### Infrastructure +- FastAPI backend with async support +- React + Vite + TypeScript frontend +- Pinecone vector database integration +- GitHub OAuth integration +- Rate limiting and security middleware + +--- + +## Version History + +This project follows [Semantic Versioning](https://semver.org/): + +- **MAJOR** version for incompatible API changes +- **MINOR** version for new functionality (backwards compatible) +- **PATCH** version for bug fixes (backwards compatible) + +Pre-1.0 releases (0.x.x) may have breaking changes in minor versions as the API stabilizes. From 49187b10efb9e7cd2eb519759fb57fabc7ad0da8 Mon Sep 17 00:00:00 2001 From: Devanshu Rajesh Chicholikar Date: Tue, 23 Dec 2025 10:32:13 -0600 Subject: [PATCH 2/2] chore: add CODEOWNERS for automatic review assignment --- .github/CODEOWNERS | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..e8c8e7b --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,25 @@ +# CODEOWNERS +# This file defines who is responsible for code in this repository. +# These owners will be automatically requested for review on PRs. +# Learn more: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners + +# Default owners for everything in the repo +* @devanshurajesh + +# Backend +/backend/ @devanshurajesh + +# Frontend +/frontend/ @devanshurajesh + +# MCP Server +/mcp-server/ @devanshurajesh + +# Infrastructure & DevOps +/docker-compose*.yml @devanshurajesh +/Makefile @devanshurajesh +/.github/ @devanshurajesh + +# Documentation +*.md @devanshurajesh +/docs/ @devanshurajesh