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
10 changes: 10 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 9.7.3 (May 25, 2026)

### New Features

- **`skillArtifactContent` attribute on `SkillArtifact`**: Adds the `skill_artifact_content` (`skillArtifactContent`) field to `SkillArtifact` in both `pyatlan` and `pyatlan_v9`. The Atlas API returns this attribute on SkillArtifact entities but PyAtlan was silently dropping it. This unblocks surfacing skill `.md` body content via `get_asset` / `search_assets` without needing a raw HTTP fallback. (#937)

### Bug Fixes

- **`Connection.creator` validates connector_type slug (BLDX-1294)**: `Connection.creator` and `Connection.creator_async` (both pyatlan and pyatlan_v9) now validate `connector_type.value` against `^[a-z0-9-]+$` — the same pattern the Atlan platform's server-side asset-import (RAB) path enforces. Raises `InvalidRequestError` (`ATLAN-PYTHON-400-079`) on violation. Mirrors the Java SDK constraint. Root cause: a customer-created `dev_cmdr` connection (underscore in slug) caused RAB to reject every asset-import referencing it, leaving phantom `Connection` rows in Atlas. (#939)

## 9.7.2 (May 18, 2026)

### New Features
Expand Down
2 changes: 1 addition & 1 deletion pyatlan/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9.7.2
9.7.3
Loading