Skip to content

Commit e3b0b5f

Browse files
committed
release: v0.18.1
1 parent 814db7a commit e3b0b5f

9 files changed

Lines changed: 12 additions & 12 deletions

File tree

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ docker compose logs prefixd # View daemon logs
239239

240240
Services: nginx (80), prefixd (8080), dashboard (3000), postgres (5432), gobgp (50051/179), prometheus (9091), grafana (3001)
241241

242-
## Current State (v0.18.0)
242+
## Current State (v0.18.1)
243243

244244
Completed:
245245
- HTTP API with mode-aware auth and rate limiting

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "prefixd"
3-
version = "0.18.0"
3+
version = "0.18.1"
44
edition = "2024"
55
rust-version = "1.85"
66
description = "BGP FlowSpec routing policy daemon for DDoS mitigation"

FEATURES.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,7 @@ All state-changing operations logged:
643643
```json
644644
{
645645
"status": "ok",
646-
"version": "0.18.0",
646+
"version": "0.18.1",
647647
"auth_mode": "none"
648648
}
649649
```
@@ -653,7 +653,7 @@ All state-changing operations logged:
653653
```json
654654
{
655655
"status": "ok",
656-
"version": "0.18.0",
656+
"version": "0.18.1",
657657
"pop": "iad1",
658658
"uptime_seconds": 86400,
659659
"active_mitigations": 3,

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ docker compose ps
6969

7070
# Test the API
7171
curl http://localhost/v1/health
72-
# {"status":"ok","version":"0.18.0","auth_mode":"none"}
72+
# {"status":"ok","version":"0.18.1","auth_mode":"none"}
7373
```
7474

7575
### 4. Create an admin account
@@ -273,7 +273,7 @@ Database migrations run automatically on startup. See **[docs/upgrading.md](docs
273273

274274
## Project Status
275275

276-
Current version: **v0.18.0**
276+
Current version: **v0.18.1**
277277

278278
- Core functionality stable and tested
279279
- Real-time dashboard with WebSocket updates, toast notifications, and mitigation detail views

ROADMAP.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ What's next for prefixd.
44

55
---
66

7-
## Current Status: v0.18.0
7+
## Current Status: v0.18.1
88

99
Core functionality is stable:
1010

docs/api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1307,7 +1307,7 @@ Lightweight liveness check. No authentication required. Does not query database
13071307
```json
13081308
{
13091309
"status": "ok",
1310-
"version": "0.18.0",
1310+
"version": "0.18.1",
13111311
"auth_mode": "none"
13121312
}
13131313
```
@@ -1332,7 +1332,7 @@ Full operational health. Requires authentication.
13321332
```json
13331333
{
13341334
"status": "healthy",
1335-
"version": "0.18.0",
1335+
"version": "0.18.1",
13361336
"pop": "iad1",
13371337
"uptime_seconds": 86400,
13381338
"bgp_sessions": {

docs/cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ prefixdctl -a http://127.0.0.1:8080 -t $TOKEN <command>
5252
prefixdctl status
5353

5454
# Example output:
55-
# prefixd v0.18.0 (iad1)
55+
# prefixd v0.18.1 (iad1)
5656
# Status: healthy
5757
# Uptime: 2d 4h 30m
5858
# Active mitigations: 12

docs/deployment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -756,7 +756,7 @@ groups:
756756
```bash
757757
# Liveness check (public, lightweight - no DB/GoBGP calls)
758758
curl http://localhost/v1/health
759-
# Returns: {"status":"ok","version":"0.18.0","auth_mode":"none"}
759+
# Returns: {"status":"ok","version":"0.18.1","auth_mode":"none"}
760760
761761
# Full operational health (authenticated)
762762
curl -H "Authorization: Bearer $TOKEN" http://localhost/v1/health/detail

0 commit comments

Comments
 (0)