# v0.12.2 Release Notes
### 🚨 Breaking Changes
- **Removed `delete_document` tool**:
- The `delete_document` tool has been removed from the server.
- Extensive testing revealed that the ClickUp API (V3) does not reliably support programmatic deletion of documents created via the API.
- This removal prevents 405 Method Not Allowed and 404 Not Found errors that users were experiencing.
- Please use the ClickUp interface for deleting documents.
### 🚀 New Features
- **Document Name Resolution**:
- Interact with documents by name instead of just IDs!
- Supported in `get_document`, `update_document`, `create_document_page`, and other capabilities.
- Automatically resolves ambiguous names using fuzzy matching (e.g., "Architecture Specs" will match "Architecture Specifications").
- Supports specifying parent folders/lists by name for context (e.g., `parent: "Engineering"`).
- **Parent Task Name Resolution**:
- Creating subtasks is now easier than ever.
- You can now specify the `parent` argument as a task name (e.g., "Implement Login") instead of needing the specific Task ID.
- Works in both `create_task` and `update_task` tools.
### ⚡️ Improvements
- **Optimized Tool Descriptions**:
- Comprehensive rewrite of all tool descriptions to be more token-efficient and clearer for LLMs.
- Improved success rate for complex operations by providing better context to the model.
- Reduced overhead for tool discovery.