# v1.1 Update / v1.1 アップデート
Release Date: 2025-01
## Summary / 概要
v1.1 adds Impact Analysis phase and Context Provider for automatic project context loading.
v1.1 では影響分析フェーズと、プロジェクトコンテキストの自動ロード機能を追加。
## New Features / 新機能
### Impact Analysis Phase
New phase between VERIFICATION and READY that analyzes the impact of changes before implementation.
**Features:**
- Static reference detection (callers, type hints)
- Naming convention matching (tests, factories, seeders)
- Document keyword search (v1.1.1)
- Markup relaxation for pure HTML/CSS files
**Usage:**
```
mcp__code-intel__analyze_impact
target_files: ["app/Models/Product.php"]
change_description: "Change price field type"
```
### Context Provider
Automatic loading of project rules and design document summaries at session start.
**Configuration (`context.yml`):**
```yaml
project_rules:
source: "CLAUDE.md"
document_search:
include_patterns:
- "**/*.md"
exclude_patterns:
- "node_modules/**"
```
### Markup Relaxation
Pure markup files (`.html`, `.css`, `.md`) have relaxed exploration requirements:
- `symbols_identified`: Not required
- `find_definitions`/`find_references`: Not required
- `search_text` alone is sufficient
**Excluded (contains logic):**
- `.blade.php`, `.vue`, `.jsx`, `.tsx`
## Bug Fixes / バグ修正
- None