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

### Bug Fixes

- **Miner runs no longer rename the connection they mine (AICHAT-1798)**: A miner created by referencing an existing connection *only* by `qualified_name` (e.g. `BigqueryMiner(client).connection(qualified_name=...).run()`) sent a connection object with no `name`. The downstream popularity/publish step derives the connection name from that payload and, finding it empty, fell back to the qualifiedName's numeric tail — renaming the connection to that number. A fresh miner run now reads the connection's stored config back (identity, credential, admins, query settings — the same shape the UI sends, without internal analytics/popularity fields) and sends it with the name intact, so the connection cannot be renamed. If the connection cannot be read and no explicit `connection(name=...)` was given, the run now raises `CONNECTION_READ_FOR_APP_FAILED` rather than silently renaming it. Crawler `create`, `load()` / `update()`, and rerun (`submit`) are unaffected.

## 11.0.1 (September 9, 2026)

### Packages
Expand Down
2 changes: 1 addition & 1 deletion pyatlan/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
11.0.1
11.1.0
Loading