Skip to content

Commit 38bb324

Browse files
chriswaynehclaude
andcommitted
Finalize RedDock Phase 1 patch release
Bring every version statement into agreement with the Phase 1 release: the API and UI, the backend and frontend package metadata, and the HTTP probe User-Agent that identifies RedDock to a scoped origin. Present v0.2.1 as the current release while keeping v0.2.0 in the history it belongs to. Screenshots re-captured against the rebuilt container. Phase 1 behaviour is unchanged: no DockGuard, discovery, inventory, or evidence logic was touched. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
1 parent fe83e91 commit 38bb324

11 files changed

Lines changed: 25 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
All notable changes to RedDock are documented here.
44

5+
## [0.2.1] — Phase 1 Discovery, finalized
6+
7+
Phase 1 remains as released in 0.2.0; this is a corrective patch release.
8+
9+
### Changed
10+
11+
- The application, API, and backend/frontend package metadata now all report the current release version
12+
- The HTTP probe User-Agent identifies the current RedDock version
13+
- README and screenshots present Phase 1 as released rather than pending
14+
15+
### Notes
16+
17+
- No change to DockGuard, discovery, inventory, or evidence behaviour
18+
519
## [0.2.0] — Phase 1 Discovery
620

721
### Added

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Container-native security assessment and validation platform with controlled exe
1313
[![License](https://img.shields.io/github/license/chriswayneh/RedDock)](LICENSE)
1414
[![Phase](https://img.shields.io/badge/phase-1%20Discovery-C1121F)](ROADMAP.md)
1515

16-
**Current release:** [v0.2.0](https://github.com/chriswayneh/RedDock/tags) — Phase 1 Discovery · Active development
16+
**Current release:** [v0.2.1](https://github.com/chriswayneh/RedDock/tags) — Phase 1 Discovery · Active development
1717

1818
[Quick Start](#quick-start) · [Current Capabilities](#what-you-get) · [Architecture](#architecture) · [Security](#security-by-design) · [Roadmap](ROADMAP.md) · [Contributing](CONTRIBUTING.md)
1919

@@ -133,7 +133,9 @@ docs/ Architecture decisions and project documentation
133133

134134
## Project Status
135135

136-
**v0.2.0 delivers Phase 1 — Discovery:** DockGuard scope enforcement, asset/service/observation models, the Nmap and HTTP discovery adapters, discovery-run auditing, and the RedLedger evidence foundation.
136+
**v0.2.1 is the current release:** it finalizes Phase 1 with consistent version metadata across the application, API, and packages.
137+
138+
**v0.2.0 delivered Phase 1 — Discovery:** DockGuard scope enforcement, asset/service/observation models, the Nmap and HTTP discovery adapters, discovery-run auditing, and the RedLedger evidence foundation.
137139

138140
**v0.1.0 delivered Phase 0 — Foundation:** a containerized React/FastAPI application, local Dockyard persistence, a dashboard, documentation, tests, and CI.
139141

ROADMAP.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Containerized application, React UI shell, FastAPI API, SQLite Dockyards, safety
66

77
## Completed — Phase 1: Discovery
88

9-
DockGuard scope definitions, asset/service/observation models, the Nmap and HTTP discovery adapters, discovery-run auditing, and the RedLedger evidence foundation. Scoped discovery now produces auditable asset observations with hashed evidence. Released as v0.2.0.
9+
DockGuard scope definitions, asset/service/observation models, the Nmap and HTTP discovery adapters, discovery-run auditing, and the RedLedger evidence foundation. Scoped discovery now produces auditable asset observations with hashed evidence. Released as v0.2.0 and finalized in v0.2.1.
1010

1111
## Next — Phase 2: Detection
1212

backend/app/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class Settings(BaseModel):
99
"""Runtime settings kept intentionally small for the local foundation."""
1010

1111
app_name: str = "RedDock"
12-
version: str = "0.2.0"
12+
version: str = "0.2.1"
1313
phase: str = "Phase 1 — Discovery"
1414
database_url: str = "sqlite:///./data/reddock.db"
1515
evidence_dir: str = "./data/evidence"

backend/app/discovery/http_probe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
from app.targets import Target, TargetKind
3131

3232
HTTP_PROBE = "http_probe"
33-
USER_AGENT = "RedDock/0.1 (+https://github.com/chriswayneh/RedDock)"
33+
USER_AGENT = "RedDock/0.2.1 (+https://github.com/chriswayneh/RedDock)"
3434

3535
# Headers worth retaining. Everything else is dropped so that cookies and other
3636
# session material a target may return are never written to evidence.

backend/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "reddock-backend"
7-
version = "0.1.0"
7+
version = "0.2.1"
88
description = "RedDock Core API"
99
requires-python = ">=3.13"
1010
dependencies = [

backend/tests/test_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def test_version_endpoint(client):
88
response = client.get("/api/version")
99
assert response.status_code == 200
1010
assert response.json()["name"] == "RedDock"
11-
assert response.json()["version"] == "0.2.0"
11+
assert response.json()["version"] == "0.2.1"
1212

1313

1414
def test_create_list_and_retrieve_dockyard(client):

docs/screenshots/dashboard.png

-1.24 KB
Loading

docs/screenshots/workspace.png

-217 Bytes
Loading

frontend/package.json

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

0 commit comments

Comments
 (0)