Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,30 @@

All notable changes to this project will be documented in this file.

## [Unreleased] — 2025-09-06

(placeholder)

## [v0.6.3] — 2025-09-06

### Added
- **Cursor MCP Audit**: Comprehensive audit and hardening of IDE/MCP integration
- **MCP Server Health Endpoints**: Added `/healthz` and `/` endpoints for CI compatibility
- **VS Code Configuration**: Added `.vscode/settings.json` for development environment
- **Evidence Documentation**: Created comprehensive audit evidence and artifacts
- **CI Guardrails**: Enhanced CI with MCP server health checks and configuration validation

### Changed
- **Pre-commit Configuration**: Resolved all linting and formatting issues
- **Ruff Rules**: Updated configuration to handle common patterns appropriately
- **PR Size Limits**: Increased to 1500 LOC for audit and configuration changes
- **MCP Server**: Enhanced with additional health check endpoints

### Fixed
- **CI Workflows**: Fixed missing health endpoints and JSON validation issues
- **Pre-commit Hooks**: Resolved all formatting and linting conflicts
- **Security Configuration**: Fixed detect-secrets false positives

## [0.6.2] - 2025-09-06

### Added
Expand Down
2 changes: 2 additions & 0 deletions FREEZE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Code Freeze: v0.6.3 on 2025-09-06 (America/New_York)
Rules: config/docs/tests only; evidence required; squash merges.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6.0
0.6.3
5 changes: 5 additions & 0 deletions evidence/2025-09-06_v0.6.3_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# v0.6.3 Evidence Index — 2025-09-06 (NY)

- Cursor manual review
- MCP health & tool exec
- TZ echo + CI tzdata proof
2 changes: 1 addition & 1 deletion mcp_server/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
with tools for document search and text summarization.
"""

__version__ = "0.6.0"
__version__ = "0.6.3"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "ai-dev-lab"
version = "0.6.0"
version = "0.6.3"
description = "AI Development Lab with MCP Server"
authors = [{name = "AI Dev Lab Team"}]
readme = "README.md"
Expand Down
Loading