Skip to content

Commit 7c28956

Browse files
committed
1.2.5 - IID-preferring Role Player Matching
- RelationManager prefers IID for role player matching (PR #91) - Falls back to key attributes when IID not available - Updated CHANGELOG.md and version numbers
1 parent cd6855d commit 7c28956

3 files changed

Lines changed: 19 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
22

33
All notable changes to TypeBridge will be documented in this file.
44

5+
## [1.2.5] - 2026-01-31
6+
7+
### New Features
8+
9+
#### IID-preferring Role Player Matching (PR #91)
10+
- **RelationManager now prefers IID for role player matching**
11+
- Uses IID for precise matching when available
12+
- Falls back to key attribute matching when IID not set
13+
- Raises clear `ValueError` when neither IID nor key attributes available
14+
- Location: `type_bridge/crud/relation/manager.py`
15+
16+
**Affected Methods:** `insert()`, `put()`, `update()`, `delete()` and `*_many` variants
17+
18+
### Documentation
19+
20+
- Updated role player matching docs in `docs/SKILL.md` and `docs/api/crud.md`
21+
522
## [1.2.4] - 2026-01-30
623

724
### New Features

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "type-bridge"
7-
version = "1.2.4"
7+
version = "1.2.5"
88
description = "A modern, Pythonic ORM for TypeDB with an Attribute-based API"
99
readme = "README.md"
1010
requires-python = ">=3.13"

type_bridge/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
from type_bridge.session import Connection, Database, TransactionContext
4747
from type_bridge.typedb_driver import Credentials, TransactionType, TypeDB
4848

49-
__version__ = "1.2.3"
49+
__version__ = "1.2.5"
5050

5151
__all__ = [
5252
# Database and session

0 commit comments

Comments
 (0)