Skip to content

Commit 550542f

Browse files
authored
Merge pull request #120 from OpenCodeIntel/docs/repo-foundations
docs: add CHANGELOG and CODEOWNERS for repo foundations
2 parents 622a852 + 49187b1 commit 550542f

2 files changed

Lines changed: 77 additions & 0 deletions

File tree

.github/CODEOWNERS

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# CODEOWNERS
2+
# This file defines who is responsible for code in this repository.
3+
# These owners will be automatically requested for review on PRs.
4+
# Learn more: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
5+
6+
# Default owners for everything in the repo
7+
* @devanshurajesh
8+
9+
# Backend
10+
/backend/ @devanshurajesh
11+
12+
# Frontend
13+
/frontend/ @devanshurajesh
14+
15+
# MCP Server
16+
/mcp-server/ @devanshurajesh
17+
18+
# Infrastructure & DevOps
19+
/docker-compose*.yml @devanshurajesh
20+
/Makefile @devanshurajesh
21+
/.github/ @devanshurajesh
22+
23+
# Documentation
24+
*.md @devanshurajesh
25+
/docs/ @devanshurajesh

CHANGELOG.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
### Added
11+
- Frontend v2 redesign (in progress)
12+
- Anonymous repo indexing flow
13+
- AI-powered search summaries
14+
15+
### Changed
16+
- Premium dark theme with glassmorphism effects
17+
- Improved search result display
18+
19+
---
20+
21+
## [0.1.0] - 2024-12-23
22+
23+
### Added
24+
- Semantic code search using vector embeddings
25+
- Dependency graph analysis
26+
- Impact analysis for code changes
27+
- Code style analysis
28+
- MCP (Model Context Protocol) server integration
29+
- Support for Python, TypeScript, JavaScript, Go, Rust
30+
- Supabase authentication
31+
- Redis caching layer
32+
- Docker deployment support
33+
- Comprehensive API documentation
34+
35+
### Infrastructure
36+
- FastAPI backend with async support
37+
- React + Vite + TypeScript frontend
38+
- Pinecone vector database integration
39+
- GitHub OAuth integration
40+
- Rate limiting and security middleware
41+
42+
---
43+
44+
## Version History
45+
46+
This project follows [Semantic Versioning](https://semver.org/):
47+
48+
- **MAJOR** version for incompatible API changes
49+
- **MINOR** version for new functionality (backwards compatible)
50+
- **PATCH** version for bug fixes (backwards compatible)
51+
52+
Pre-1.0 releases (0.x.x) may have breaking changes in minor versions as the API stabilizes.

0 commit comments

Comments
 (0)