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
41 changes: 41 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,47 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

---

## [1.88.0] - 2026-04-16

**Metrics Phase 2 — journal evidence, data freshness, observability docs.**

### Added

- **Total processed packets** (M88-1): sum of all nftables counters
(accepts + drops + flow markers). Labeled explicitly to prevent
misinterpretation.
- **Journal evidence for LoginMon** (M88-2): bounded 15m/500-line
journal query for ban and login_failed events. LoginMon promoted
from `expected_limitation` to evidence-backed correlation.
- **Feed data freshness** (M88-3): checks newest file in
`/var/lib/nftban/feeds/`, fresh if < 7 days.
- **GeoIP DB freshness** (M88-4): checks mmdb mtime, fresh if < 45 days.
- **Anchor flow counters** (M88-6): 7 pipeline stage counters displayed
as "pipeline stage transitions, not enforcement."
- **Evidence contract doc** (M88-9): `docs/EVIDENCE_CONTRACT.md` — defines
evidence states, counter/set/chain/journal semantics, correlation
rules, and nft compatibility reference.
- **Build status page** (M88-10): `docs/BUILD_STATUS.md` — 26 CI workflows,
contract gates (G1-G8 + B86 + M84 + M87/M88), host runtime gate,
health policy.

### Changed

- **LoginMon correlation**: promoted from `expected_limitation` to
evidence-backed. Bans + validator agrees = match. Bans + idle = warning.
Events only = warning. No journal = unknown.
- **Evidence schema**: bumped to 1.88.0. Added `external` (journal) and
`freshness` (data pipeline) planes.
- All evidence file metadata updated to v1.88.

### PRs

| PR | Title |
|---|---|
| #429 | feat(metrics): v1.88 Metrics Phase 2 |

---

## [1.87.2] - 2026-04-16

**nft command compatibility hotfix.**
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.87.2
1.88.0
4 changes: 2 additions & 2 deletions cli/lib/nftban/core/nftban_fhs_spec.sh
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#!/usr/bin/env bash
# =============================================================================
# NFTBan v1.87.2 - FHS Specification (GENERATED)
# NFTBan v1.88.0 - FHS Specification (GENERATED)
# =============================================================================
# SPDX-License-Identifier: MPL-2.0
#
# meta:name="nftban_fhs_spec"
# meta:type="core"
# meta:header="FHS Specification"
# meta:version="1.87.2"
# meta:version="1.88.0"
# meta:owner="Antonios Voulvoulis <[email protected]>"
# meta:homepage="https://nftban.com"
#
Expand Down
Loading