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
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## [0.15.6] — 2026-06-04

### Fixed
- **`GET /specs?unclaimed=true` scope** (`app/routes/specs.py`): filter now restricts to active-round specs only (as `?active=true` would). Previously returned all 108+ specs with no passing submission — including Thingiverse catalog entries with `round_id=None`. Now returns 42 (the actual competition specs without a SOTA). Non-competition specs are never "claimable."

### Tests
- `test_specs_unclaimed_filter_*` tests updated: new `unclaimed_client` fixture with `SPECS_DIR=tests/fixtures/specs_round` and `ROUNDS_DIR=tests/fixtures/rounds_active`; new `tests/fixtures/specs_round/r01_001_easy.json`. `_make_client()` now reloads `app.specs` to prevent stale `SPECS_DIR` across tests. Test count: 138 (count unchanged, tests updated).

---

## [0.15.5] — 2026-06-04

### Added
Expand Down
2 changes: 1 addition & 1 deletion app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ async def lifespan(app: FastAPI):
app = FastAPI(
title="Forge API",
description="Competitive parametric CAD benchmark — specs, submissions, leaderboard, SOTA.",
version="0.15.5",
version="0.15.6",
lifespan=lifespan,
)

Expand Down
Loading