File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# CHANGELOG
22
33
4+ ## v0.48.4 (2026-03-20)
5+
6+ ### Bug Fixes
7+
8+ - Add update_browse_history handler and fix verify_apps crash
9+ ([ #156 ] ( https://github.com/OpenAdaptAI/openadapt-evals/pull/156 ) ,
10+ [ ` 56e1b63 ` ] ( https://github.com/OpenAdaptAI/openadapt-evals/commit/56e1b6383c35781977407dfad2b5ab0d9a1f0d7a ) )
11+
12+ Bug 6a: The YouTube task config uses "update_browse_history" to pre-populate Chrome's history.sqlite
13+ with URLs before the agent runs. This was being skipped as an unknown type. Now translates to a
14+ Python script that kills Chrome, finds the History DB, and INSERTs entries with proper Chrome
15+ timestamps (microseconds since 1601-01-01).
16+
17+ Bug 6b: verify_apps crashed with "AttributeError: 'list' object has no attribute 'replace'" because
18+ the WAA task JSON uses "app" (list) but the handler expected "apps" (string). Now handles both
19+ parameter names and properly serializes the list with repr().
20+
21+ Co-authored-by: Claude Opus 4.6 (1M context) < noreply@anthropic.com >
22+
23+
424## v0.48.3 (2026-03-20)
525
626### Bug Fixes
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44
55[project ]
66name = " openadapt-evals"
7- version = " 0.48.3 "
7+ version = " 0.48.4 "
88description = " Evaluation infrastructure for GUI agent benchmarks"
99readme = " README.md"
1010requires-python = " >=3.10"
You can’t perform that action at this time.
0 commit comments