Skip to content

Commit a08a0b8

Browse files
committed
Release v1.2.0: Playground history, thinking toggle, design fixes
1 parent babb0de commit a08a0b8

3 files changed

Lines changed: 26 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,30 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/), and this project adheres to [Semantic Versioning](https://semver.org/).
66

7+
## [1.2.0] - 2026-04-07
8+
9+
### Added
10+
- Playground history with SQLite persistence, auto-save on every run
11+
- History sidebar with replay: click any past run to restore prompt, config, and response
12+
- Thinking/reasoning toggle for Anthropic extended thinking and OpenAI reasoning effort
13+
- Copy response button in Playground
14+
- Long Context presets (8K/16K/32K/64K/128K) in Playground
15+
- Backend image validation (size and count limits)
16+
17+
### Fixed
18+
- Anthropic extended thinking not working (wrong API version, missing thinking params)
19+
- Anthropic required CLI headers accidentally removed
20+
- Playground upstream API calls not aborted when client disconnects (resource leak)
21+
- Gemini using fake conversation turns instead of native `systemInstruction`
22+
- Playground `/run` returning HTTP 200 on errors instead of 502
23+
- Image URLs silently dropped for Anthropic/Gemini (now fetched and converted to base64)
24+
- Backend `maxTokens` default misaligned (512 vs 4096)
25+
- Flash of empty state on Monitor, Config, and Workflow pages before data loads
26+
27+
### Changed
28+
- History sidebar defaults to open for better discoverability
29+
- Playground design polish: label sizes, config row layout, mobile responsiveness
30+
731
## [1.1.0] - 2026-04-04
832

933
### Added

backend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "llm-benchmark-backend",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"description": "LLM API Radar - Backend",
55
"main": "dist/index.js",
66
"scripts": {

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "frontend",
33
"private": true,
4-
"version": "1.1.0",
4+
"version": "1.2.0",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

0 commit comments

Comments
 (0)