Skip to content

Commit 7c831c1

Browse files
Release v0.9.0
1 parent ce80e13 commit 7c831c1

File tree

5 files changed

+19
-5
lines changed

5 files changed

+19
-5
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.9.0] - 2026-03-28
11+
12+
### Added
13+
- **List attribute type for ABAC user attributes** — new `"list"` value type for attribute definitions, storing arrays of strings (max 100 elements)
14+
- Use with `IN ({user.KEY})` in filter expressions; list expands into comma-separated placeholders
15+
- Empty lists expand to `NULL` (effectively returning no rows)
16+
- API validates list values as JSON arrays of strings; `allowed_values` constrains individual elements
17+
- Decision function context includes list attributes as JSON arrays
18+
- Admin UI: tag/chip input for free-form lists, multi-select checkboxes for lists with allowed values
19+
- Extracted `AttributeDefinitionForm` component (matches `RoleForm`/`DataSourceForm` pattern)
20+
- Added PolicyForm validation: blocks submit when decision function toggle is on but no function is attached or reference is stale
21+
- DecisionFunctionModal: autocomplete hints for per-attribute `ctx.session.user.attributes.*`, test context pre-populated from current user's real attributes
22+
- Config JSON validation: blocks save on invalid JSON instead of silently defaulting to `{}`
23+
1024
## [0.8.0] - 2026-03-28
1125

1226
### 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.8.0",
4+
"version": "0.9.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.8.0"
3+
version = "0.9.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.8.0"
3+
version = "0.9.0"
44
edition = "2024"
55

66
[dependencies]

0 commit comments

Comments
 (0)