- Remove unused StealthConfig from browser_manager.py
- Update LinkPreviewConfig import path in __init__.py and examples
- Fix infinity handling in content_scraping_strategy.py (use 0 instead of float('inf'))
- Remove sanitize_json_data functions from API endpoints
- Add comprehensive C4A Script documentation to release notes
- Update v0.7.0 release notes with improved code examples
- Create v0.7.1 release notes focusing on cleanup and documentation improvements
- Update demo files with corrected import paths and examples
- Fix virtual scroll and adaptive crawling examples across documentation
🤖 Generated with Claude Code
Co-Authored-By: Claude <noreply@anthropic.com>
43 lines
1.2 KiB
Markdown
43 lines
1.2 KiB
Markdown
# 🛠️ Crawl4AI v0.7.1: Minor Cleanup Update
|
|
|
|
*July 17, 2025 • 2 min read*
|
|
|
|
---
|
|
|
|
A small maintenance release that removes unused code and improves documentation.
|
|
|
|
## 🎯 What's Changed
|
|
|
|
- **Removed unused StealthConfig** from `crawl4ai/browser_manager.py`
|
|
- **Updated documentation** with better examples and parameter explanations
|
|
- **Fixed virtual scroll configuration** examples in docs
|
|
|
|
## 🧹 Code Cleanup
|
|
|
|
Removed unused `StealthConfig` import and configuration that wasn't being used anywhere in the codebase. The project uses its own custom stealth implementation through JavaScript injection instead.
|
|
|
|
```python
|
|
# Removed unused code:
|
|
from playwright_stealth import StealthConfig
|
|
stealth_config = StealthConfig(...) # This was never used
|
|
```
|
|
|
|
## 📖 Documentation Updates
|
|
|
|
- Fixed adaptive crawling parameter examples
|
|
- Updated session management documentation
|
|
- Corrected virtual scroll configuration examples
|
|
|
|
## 🚀 Installation
|
|
|
|
```bash
|
|
pip install crawl4ai==0.7.1
|
|
```
|
|
|
|
No breaking changes - upgrade directly from v0.7.0.
|
|
|
|
---
|
|
|
|
Questions? Issues?
|
|
- GitHub: [github.com/unclecode/crawl4ai](https://github.com/unclecode/crawl4ai)
|
|
- Discord: [discord.gg/crawl4ai](https://discord.gg/jP8KfhDhyN) |