Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.33.0"
".": "0.34.0"
}
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,29 @@

All notable changes to CRW are documented here.

## [0.34.0](https://github.com/us/crw/compare/v0.33.0...v0.34.0) (2026-09-08)


### Features

* **renderer:** align browser locale with the proxy exit country ([6155ac6](https://github.com/us/crw/commit/6155ac6e670a65f594270f7a39157df8c66644b6)), closes [#385](https://github.com/us/crw/issues/385)
* **renderer:** let camoufox wait out a JS challenge instead of reporting it ([86766d5](https://github.com/us/crw/commit/86766d5b329bdb2fa8af0f3d197dbae098ee9e6f))


### Bug Fixes

* **batch:** retain failed scrape results ([63b00af](https://github.com/us/crw/commit/63b00aff293ee86a17f104f0a237f63a89ad5e1b))
* keep internal URLs and proxy credentials out of error strings ([59f7a15](https://github.com/us/crw/commit/59f7a15ac0fc8baea7e1ec0af5708b358efb7a7a))
* **renderer:** escalate lightpanda to a tier the pool actually holds ([5c9f6cc](https://github.com/us/crw/commit/5c9f6cc1676a7162e84778861310ad78ba95ae30))
* **renderer:** give the chrome_proxy recovery arm time to finish ([595a3c5](https://github.com/us/crw/commit/595a3c53b008fc4bc2b03f38578b7a438b0fb582))
* **renderer:** keep the HTTP shell from resurrecting a refused wall ([c74bcf3](https://github.com/us/crw/commit/c74bcf365a72d77e025ddfcefd8640f822a1d5c2))
* **renderer:** poll the interstitial camoufox actually sees ([49a3eb9](https://github.com/us/crw/commit/49a3eb93e22626b86c98f4a5988c4094bc831614))
* **renderer:** report scrape outcomes truthfully ([294eb3d](https://github.com/us/crw/commit/294eb3d8a7cfb55026da493df9951b9d058a5968))
* **renderer:** stop camoufox polling out a page that already cleared ([800a30c](https://github.com/us/crw/commit/800a30c8f7c716e293dc64bc24664ddee44c93a6))
* **renderer:** stop shipping an unclearable wall as a success ([82a56f6](https://github.com/us/crw/commit/82a56f6bfa5f097bd046789a5db647eab2f8045e))
* **server:** make the retained batch failure legible on every surface ([15e9bb9](https://github.com/us/crw/commit/15e9bb9f3e26e41311071a4c632582d281d565a5))
* **v2:** report per-URL batch and crawl failures on the errors route ([c486731](https://github.com/us/crw/commit/c486731c52c509b6f9a7d356fef8c5b4d446c450))

## [0.33.0](https://github.com/us/crw/compare/v0.32.0...v0.33.0) (2026-09-02)


Expand Down
20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ exclude = ["fuzz"]
resolver = "2"

[workspace.package]
version = "0.33.0"
version = "0.34.0"
edition = "2024"
license = "AGPL-3.0"
repository = "https://github.com/us/crw"
Expand Down Expand Up @@ -136,15 +136,15 @@ insta = { version = "1", features = ["json"] }
# and layer their own `features` / `optional` on top. `path` is resolved
# relative to THIS (root) manifest. Only crates that are depended upon by
# another crate appear here; leaf binaries (crw-mcp, crw-cli) just consume.
crw-mcp-proto = { path = "crates/crw-mcp-proto", version = "0.33.0" }
crw-core = { path = "crates/crw-core", version = "0.33.0" }
crw-extract = { path = "crates/crw-extract", version = "0.33.0" }
crw-renderer = { path = "crates/crw-renderer", version = "0.33.0" }
crw-search = { path = "crates/crw-search", version = "0.33.0" }
crw-diff = { path = "crates/crw-diff", version = "0.33.0" }
crw-crawl = { path = "crates/crw-crawl", version = "0.33.0" }
crw-server = { path = "crates/crw-server", version = "0.33.0" }
crw-browse = { path = "crates/crw-browse", version = "0.33.0" }
crw-mcp-proto = { path = "crates/crw-mcp-proto", version = "0.34.0" }
crw-core = { path = "crates/crw-core", version = "0.34.0" }
crw-extract = { path = "crates/crw-extract", version = "0.34.0" }
crw-renderer = { path = "crates/crw-renderer", version = "0.34.0" }
crw-search = { path = "crates/crw-search", version = "0.34.0" }
crw-diff = { path = "crates/crw-diff", version = "0.34.0" }
crw-crawl = { path = "crates/crw-crawl", version = "0.34.0" }
crw-server = { path = "crates/crw-server", version = "0.34.0" }
crw-browse = { path = "crates/crw-browse", version = "0.34.0" }

[profile.release]
lto = true
Expand Down
2 changes: 1 addition & 1 deletion crates/crw-server/openapi/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"openapi": "3.1.0",
"info": {
"title": "CRW REST API",
"version": "0.33.0",
"version": "0.34.0",
"description": "Firecrawl-compatible web scraping, crawling, mapping, search, and extraction API. Hosted at https://api.fastcrw.com; self-host with `docker run -p 3000:3000 ghcr.io/us/crw:latest`.",
"license": {
"name": "AGPL-3.0",
Expand Down
2 changes: 1 addition & 1 deletion docs/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"openapi": "3.1.0",
"info": {
"title": "CRW REST API",
"version": "0.33.0",
"version": "0.34.0",
"description": "Firecrawl-compatible web scraping, crawling, mapping, search, and extraction API. Hosted at https://api.fastcrw.com; self-host with `docker run -p 3000:3000 ghcr.io/us/crw:latest`.",
"license": {
"name": "AGPL-3.0",
Expand Down
2 changes: 1 addition & 1 deletion mcp/crw-mcp-darwin-arm64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "crw-mcp-darwin-arm64",
"version": "0.33.0",
"version": "0.34.0",
"description": "CRW MCP server binary for darwin arm64",
"license": "AGPL-3.0",
"author": "fastCRW <hello@fastcrw.com>",
Expand Down
2 changes: 1 addition & 1 deletion mcp/crw-mcp-darwin-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "crw-mcp-darwin-x64",
"version": "0.33.0",
"version": "0.34.0",
"description": "CRW MCP server binary for darwin x64",
"license": "AGPL-3.0",
"author": "fastCRW <hello@fastcrw.com>",
Expand Down
2 changes: 1 addition & 1 deletion mcp/crw-mcp-linux-arm64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "crw-mcp-linux-arm64",
"version": "0.33.0",
"version": "0.34.0",
"description": "CRW MCP server binary for linux arm64",
"license": "AGPL-3.0",
"author": "fastCRW <hello@fastcrw.com>",
Expand Down
2 changes: 1 addition & 1 deletion mcp/crw-mcp-linux-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "crw-mcp-linux-x64",
"version": "0.33.0",
"version": "0.34.0",
"description": "CRW MCP server binary for linux x64",
"license": "AGPL-3.0",
"author": "fastCRW <hello@fastcrw.com>",
Expand Down
10 changes: 5 additions & 5 deletions mcp/crw-mcp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "crw-mcp",
"version": "0.33.0",
"version": "0.34.0",
"description": "MCP server for CRW web scraper — scrape, crawl, map, extract, search, and PDF-parse tools for AI agents",
"license": "AGPL-3.0",
"author": "fastCRW <hello@fastcrw.com>",
Expand Down Expand Up @@ -38,9 +38,9 @@
"skills/SKILL.md"
],
"optionalDependencies": {
"crw-mcp-darwin-x64": "0.33.0",
"crw-mcp-darwin-arm64": "0.33.0",
"crw-mcp-linux-x64": "0.33.0",
"crw-mcp-linux-arm64": "0.33.0"
"crw-mcp-darwin-x64": "0.34.0",
"crw-mcp-darwin-arm64": "0.34.0",
"crw-mcp-linux-x64": "0.34.0",
"crw-mcp-linux-arm64": "0.34.0"
}
}
2 changes: 1 addition & 1 deletion sdks/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "crw"
version = "0.33.0"
version = "0.34.0"
description = "Python SDK for CRW web scraper — scrape, crawl, and map any website from Python"
readme = "README.md"
requires-python = ">=3.10"
Expand Down
2 changes: 1 addition & 1 deletion sdks/typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "crw-sdk",
"version": "0.33.0",
"version": "0.34.0",
"description": "TypeScript/JavaScript SDK for CRW — scrape, crawl, map, search, parse, and extract any website",
"license": "MIT",
"author": "fastCRW <hello@fastcrw.com>",
Expand Down
2 changes: 1 addition & 1 deletion server.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "io.github.us/crw",
"title": "CRW Web Scraper",
"description": "Open-source web scraper for AI agents with scrape, crawl, and map tools",
"version": "0.33.0",
"version": "0.34.0",
"websiteUrl": "https://fastcrw.com",
"repository": {
"url": "https://github.com/us/crw",
Expand Down
Loading