You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/compatibility/release-notes.md
+22Lines changed: 22 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,28 @@ Release notes for the Agent Assembly Python SDK. Versions follow [SemVer](https:
5
5
!!! info "0.x development"
6
6
The SDK is in active 0.x development; per-release notes are minimal. Track full changes via [the commits to `master`](https://github.com/ai-agent-assembly/python-sdk/commits/master) and the [GitHub releases](https://github.com/ai-agent-assembly/python-sdk/releases) feed.
7
7
8
+
## 0.0.1-rc.6
9
+
10
+
Sixth **release candidate** on the `0.0.1` line. This release tracks the published
11
+
`agent-assembly` core **`v0.0.1-rc.6`**: the bundled `aasm` runtime binary and the
12
+
compiled `aa-ffi-python` extension are pinned to that core tag.
13
+
14
+
This is a **security-hardening** candidate: the SDK now refuses to resolve a
15
+
register endpoint that would send credentials over non-loopback plaintext, and a
16
+
LangChain policy `deny` now actually blocks the tool call instead of being swallowed.
17
+
18
+
- Enforce non-loopback TLS on register-endpoint resolution, so a register call can
19
+
no longer leak credentials over plaintext to a non-loopback host (AAASM-4655).
20
+
- Set `raise_error` on the LangChain adapter so a policy `deny` is enforced and
21
+
blocks the tool call rather than being silently ignored (AAASM-4658).
22
+
- Add an `allow_insecure` opt-in to `init_assembly()` for deliberately trusted
23
+
networks, gated and documented as a conscious escape hatch (AAASM-4664).
24
+
- Add an `aasm --version` flag sourcing `__version__`, and correct the README error-
25
+
handling example to match the actual exception (AAASM-4656 / AAASM-4710).
26
+
- Fix a misleading OS classifier on the platform wheels' packaging metadata
27
+
(AAASM-4648), and tidy dead LangChain async callbacks / test hygiene
28
+
(AAASM-4710 / AAASM-4691).
29
+
8
30
## 0.0.1-rc.5
9
31
10
32
Fifth **release candidate** on the `0.0.1` line. This release tracks the published
0 commit comments