You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+20Lines changed: 20 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,25 @@ All notable changes to ExaFS will be documented in this file.
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
+
## [1.3.0] - 2026-04-20
9
+
10
+
### Changed
11
+
- Migrated entire codebase to SQLAlchemy 2.0 Query API — replaced all legacy `session.query()` / `Model.query` patterns with `session.execute(select())`, `session.scalars()`, and `db.paginate()` across models, services, and views
12
+
- Moved DB queries out of views into model classmethods following separation of concerns (`ApiKey`, `Flowspec4/6`, `RTBH`, `Community`, `Action`, `Log`, `User`, `Role`, `Organization`, `ASPath`, etc.)
13
+
- New `get_org_rule_stats()` utility replaces inline admin view queries
14
+
15
+
### Fixed
16
+
- API response discrepancy: rules returned via API now apply the same data transformation as the UI, fixing inconsistency between `/api/v3/` responses and dashboard display
17
+
18
+
### Added
19
+
- Extensive new test coverage for previously untested DB-touching code paths (`test_auth.py`, `test_model_utils.py`, `test_services_base.py`, `test_admin_models.py`, additions to `test_flowapp.py`, `test_messages.py`, `test_models.py`, `test_whitelist_service.py`)
20
+
- Tests for all new model classmethods (added before implementation, TDD-style)
21
+
- ExaBGP 5.x support via `EXABGP_MAJOR_VERSION` config option (default: `4`)
22
+
- TCP flags formatted as `tcp-flags [ syn ack ];` (lowercase, bracketed) when version is 5
23
+
- Fragment conditions use updated `!is-fragment` syntax for version 5
24
+
-`IPV4_FRAGMENT_V5` constants dict added for version 5 fragment mappings
25
+
- Unit tests for ExaBGP message formatting helpers (`tests/test_messages.py`)
26
+
8
27
## [1.2.2] - 2026-02-19
9
28
10
29
### Changed
@@ -304,6 +323,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
0 commit comments