v2.48.2
cloudflare/artifact-fsv2.48.2Mar 25, 2026by github-actions[bot]
AI Summary
This release enables users to run multiple browser engines concurrently, allowing the system to select the best HTML result based on a quality validator, adding robustness to web scraping operations.
Key Highlights
- Introduced parallel crawl backends allowing race conditions between different engines.
- Added support for custom backends via `BackendEngine::Custom`.
- Enhanced network interception parity with Chrome.
- Zero overhead when disabled, anti-fingerprint jitter, and auto-disable on failures.
New Features
- Parallel Crawl Backends (race alternative browser engines)
- Custom backend support via BackendEngine::Custom
- Network interception parity with Chrome
Full Release Notes
Race alternative browser engines alongside your primary crawl. Best HTML wins.
```rust
use spider::configuration::{BackendEndpoint, BackendEngine, ParallelBackendsConfig};
let mut website = Website::new("https://example.com");
website.configuration.parallel_backends = Some(ParallelBackendsConfig {
backends: vec![BackendEndpoint {
engine: BackendEngine::LightPanda,
endpoint: Some("ws://127.0.0.1:9222".to_string()),
binary_path: None,
protocol: None,
}],
..Default::default()
});
website.crawl().await;
// page.backend_source → "primary" | "lightpanda" | "servo" | "custom"
```
Features: `lightpanda`, `servo`, `parallel_backends_full`, custom backends via `BackendEngine::Custom`.
Zero overhead when disabled, anti-fingerprint jitter, auto-disable on failures, custom quality validator, full network interception parity with Chrome.