chore(release): prepare v1.3.0 dependencies

This commit is contained in:
germondai
2026-08-02 03:07:04 +02:00
parent 0fb4097388
commit 3a3226ed20
9 changed files with 347 additions and 808 deletions
+6 -1
View File
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
## [1.3.0] - 2026-07-27
### Added
- Detect and resolve Akamai Bot Manager behavioral interstitials across scraper tiers and the HTTP/HTTPS proxy (#33).
@@ -16,6 +16,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Recover stalled browser checkouts and bound browser close/launch operations so wedged Firefox processes cannot silently exhaust the pool (#36, #37).
- Report HTTP 503 from `/health` whenever the browser pool has no live capacity.
- Pass authenticated proxy credentials to Firefox separately from the proxy server URL in Tier 3 and Tier 4 (#40).
- Record the correct architecture-specific Camoufox release metadata in API images.
### Changed
- Bump all application and internal package versions to `1.3.0`.
- Update workspace dependencies to their latest compatible releases. TypeScript remains on 5.9 for the Nuxt app until `vue-tsc` supports TypeScript 7.
## [1.2.0] - 2026-07-26
+3 -4
View File
@@ -1,6 +1,6 @@
{
"name": "@trawl/api",
"version": "1.2.0",
"version": "1.3.0",
"private": true,
"scripts": {
"dev": "bun run --watch src/index.ts",
@@ -11,13 +11,12 @@
"@trawl/browser": "workspace:*",
"@trawl/tiers": "workspace:*",
"@trawl/types": "workspace:*",
"camoufox-js": "0.11.2",
"elysia": "^1.4.29",
"memoirist": "1.2.0",
"memoirist": "1.2.1",
"node-forge": "^1.4.0"
},
"devDependencies": {
"typescript": "^5.9.3",
"typescript": "^7.0.2",
"@types/bun": "^1.3.14",
"@types/node-forge": "^1.3.14"
}
+3 -5
View File
@@ -1,6 +1,6 @@
{
"name": "@trawl/web",
"version": "1.2.0",
"version": "1.3.0",
"private": true,
"scripts": {
"dev": "nuxt dev",
@@ -10,13 +10,11 @@
},
"devDependencies": {
"@nuxt/fonts": "^0.14.0",
"@nuxt/image": "^2.0.0",
"@nuxtjs/color-mode": "^4.0.1",
"@nuxtjs/seo": "5.3.6",
"@takumi-rs/core": "^2.4.1",
"@vueuse/motion": "^3.0.3",
"nuxt": "^4.5.0",
"nuxt": "^4.5.1",
"typescript": "^5.9.3",
"vue-tsc": "^3.3.8"
"vue-tsc": "^3.3.9"
}
}
+1 -1
View File
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/2.5.5/schema.json",
"$schema": "https://biomejs.dev/schemas/2.5.6/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git"
+324 -787
View File
File diff suppressed because it is too large Load Diff
+2 -2
View File
@@ -1,7 +1,7 @@
{
"private": true,
"name": "trawl",
"version": "1.2.0",
"version": "1.3.0",
"workspaces": [
"apps/*",
"packages/*"
@@ -16,6 +16,6 @@
"test": "bun test"
},
"devDependencies": {
"@biomejs/biome": "2.5.5"
"@biomejs/biome": "2.5.6"
}
}
+4 -4
View File
@@ -1,6 +1,6 @@
{
"name": "@trawl/browser",
"version": "1.2.0",
"version": "1.3.0",
"private": true,
"main": "./src/index.ts",
"types": "./src/index.ts",
@@ -9,12 +9,12 @@
},
"dependencies": {
"@trawl/types": "workspace:*",
"camoufox-js": "^0.11.2"
"camoufox-js": "0.12.0",
"playwright-core": "1.60.0"
},
"devDependencies": {
"typescript": "^5.9.3",
"typescript": "^7.0.2",
"@types/bun": "^1.3.14",
"playwright-core": "^1.61.1",
"patchright": "^1.61.1"
}
}
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "@trawl/tiers",
"version": "1.2.0",
"version": "1.3.0",
"private": true,
"main": "./src/index.ts",
"types": "./src/index.ts",
@@ -14,6 +14,6 @@
},
"devDependencies": {
"@types/bun": "^1.3.14",
"typescript": "^5.9.3"
"typescript": "^7.0.2"
}
}
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "@trawl/types",
"version": "1.2.0",
"version": "1.3.0",
"private": true,
"main": "./src/index.ts",
"types": "./src/index.ts",
@@ -8,6 +8,6 @@
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"typescript": "^5.9.3"
"typescript": "^7.0.2"
}
}