Skip to content

Commit e2af387

Browse files
Release v0.5.0
1 parent 0788a6c commit e2af387

5 files changed

Lines changed: 29 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.5.0] - 2026-03-16
11+
12+
### Added
13+
- **Flat policy type model** — replaced the obligation model with a flat `policy_type` field
14+
- 5 types: `row_filter`, `column_mask`, `column_allow`, `column_deny`, `table_deny`
15+
- Removed `column_access` action field; type alone determines behavior
16+
- 5 new migrations (019–023) to migrate existing schema
17+
- **Zero-trust column model** — qualified projection for JOINs; per-user column visibility enforcement
18+
- **Cast support** — SQL type cast expressions now handled in query processing
19+
- **Catalog hints** — contextual hints surfaced in the catalog discovery UI
20+
- **Policy-centric assignment panel** — rule assignment UI redesigned around policies rather than datasources
21+
- **Datasource assignment on create** — assign a datasource when creating a new rule
22+
- **Audit status tracking** — queries now record a status field in the audit log
23+
- **Audit write rejections** — rejected write queries are now captured in the audit log
24+
- **Container-based integration tests** — replaced manual test scripts with a Docker-based test suite
25+
26+
### Fixed
27+
- **Column mask and row filter bugs** — fixed incorrect mask application and cross-policy row filter interactions
28+
- **Audit duration and rewritten query** — fixed these fields not being recorded correctly
29+
- **SPA routing** — production build now serves `index.html` for client-side routes
30+
31+
### Infrastructure
32+
- **LICENSE** — added license file
33+
1034
## [0.4.0] - 2026-03-08
1135

1236
### Added

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

admin-ui/package.json

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

migration/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "migration"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
edition = "2024"
55

66
[dependencies]

proxy/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "proxy"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
edition = "2024"
55

66
[dependencies]

0 commit comments

Comments
 (0)