cloakbrowser 0.4.11 → 0.4.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -11,7 +11,7 @@
11
11
 
12
12
  Drop-in Playwright/Puppeteer replacement. Same API, same code — just swap the import. **3 lines of code, 30 seconds to unblock.**
13
13
 
14
- - **66 source-level C++ patches** — canvas, WebGL, audio, fonts, GPU, screen, WebRTC, network timing, automation signals
14
+ - **71 source-level C++ patches** — canvas, WebGL, audio, fonts, GPU, screen, WebRTC, network timing, automation signals
15
15
  - **0.9 reCAPTCHA v3 score** — human-level, server-verified
16
16
  - **Passes Cloudflare Turnstile**, FingerprintJS, BrowserScan — tested against 30+ detection sites
17
17
  - **`npm install cloakbrowser`** — binary auto-downloads, auto-updates, zero config
@@ -233,13 +233,13 @@ const page = await browser.newPage();
233
233
 
234
234
  ## Platforms
235
235
 
236
- | Platform | Chromium | Patches | Status |
236
+ | Platform | Free | Pro | Status |
237
237
  |---|---|---|---|
238
- | Linux x86_64 | 146 | 58 | ✅ Latest |
239
- | Linux arm64 (RPi, Graviton) | 146 | 58 | ✅ |
240
- | macOS arm64 (Apple Silicon) | 145 | 26 | ✅ |
241
- | macOS x86_64 (Intel) | 145 | 26 | ✅ |
242
- | Windows x86_64 | 146 | 58 | ✅ Latest |
238
+ | Linux x86_64 | Chromium 146 (58 patches) | Chromium 150 (71 patches) | ✅ |
239
+ | Linux arm64 (RPi, Graviton) | Chromium 146 (58 patches) | Chromium 150 (71 patches) | ✅ |
240
+ | macOS arm64 (Apple Silicon) | Chromium 145 (26 patches) | Chromium 150 (71 patches) | ✅ |
241
+ | macOS x86_64 (Intel) | Chromium 145 (26 patches) | Chromium 150 (71 patches) | ✅ |
242
+ | Windows x86_64 | Chromium 146 (58 patches) | Chromium 150 (71 patches) | ✅ |
243
243
 
244
244
  ## CloakBrowser Pro
245
245
 
@@ -247,12 +247,12 @@ The wrapper (Python + JS) is MIT, free forever. The binary uses a delayed
247
247
  free-release model:
248
248
 
249
249
  - **Free (v146)** — free forever on [GitHub Releases](https://github.com/CloakHQ/cloakbrowser/releases). Unlimited sessions. Works today, goes stale as detection evolves.
250
- - **Pro (latest, v148)** — the newest patches and Chromium upgrades first, so the [test results](#test-results) stay green as anti-bot systems change. Linux, Windows, and macOS (Apple Silicon + Intel).
250
+ - **Pro (latest, v150)** — the newest patches and Chromium upgrades first, so the [test results](#test-results) stay green as anti-bot systems change. Linux, Windows, and macOS (Apple Silicon + Intel).
251
251
 
252
252
  Anti-bot detection updates constantly — an older binary degrades within weeks.
253
253
  Pro keeps you on the build that's actively maintained against it.
254
254
 
255
- **New: try the latest Pro binary (Chromium 148) free for 7 days** — see how it
255
+ **New: try the latest Pro binary (Chromium 150) free for 7 days** — see how it
256
256
  performs against your targets. Cancel anytime.
257
257
 
258
258
  Activate with your license key (env var, `licenseKey` option, or `~/.cloakbrowser/license.key`):
package/dist/cli.js CHANGED
@@ -19,7 +19,7 @@ import { pathToFileURL } from "node:url";
19
19
  import fs from "node:fs";
20
20
  import os from "node:os";
21
21
  import path from "node:path";
22
- const UPGRADE_HINT = "→ Try the latest Pro binary (Chromium 148) free for 7 days: https://cloakbrowser.dev";
22
+ const UPGRADE_HINT = "→ Try the latest Pro binary (Chromium 150) free for 7 days: https://cloakbrowser.dev";
23
23
  const USAGE = `Usage: cloakbrowser <command>
24
24
 
25
25
  Commands:
package/dist/download.js CHANGED
@@ -23,7 +23,7 @@ export const WELCOME_FREE_INTERVAL_SEC = 3 * 24 * 60 * 60;
23
23
  // Pro Chromium major shown in the welcome banner. Bump at each Pro major release
24
24
  // (no local constant to derive it from — the live Pro version comes from the
25
25
  // network, which we don't call just to print a banner). Mirrors download.py.
26
- const PRO_MAJOR = "148";
26
+ const PRO_MAJOR = "150";
27
27
  /**
28
28
  * A downloaded binary could not be authenticated (bad/missing signature,
29
29
  * version mismatch, or checksum failure). Distinct from transient
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cloakbrowser",
3
- "version": "0.4.11",
3
+ "version": "0.4.12",
4
4
  "description": "Stealth Chromium that passes every bot detection test. Drop-in Playwright/Puppeteer replacement with source-level fingerprint patches.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",