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
Platform settings now build auth/routing headers using the shared
constants in uipath.platform.common.constants (lowercase canonical
form; HTTP is case-insensitive so no wire change). Process key is
URL-encoded (quote(..., safe="")) before being sent, matching the
platform-wide convention, and licensing_context is read dynamically
from UiPathConfig at call time so updates are picked up without
rebuilding settings.
Langchain: captured gateway headers are now exposed on
AIMessage.response_metadata under the "headers" key (previously
"uipath_llmgateway_headers"). Breaking for anyone reading that key.
Core 1.9.1 -> 1.9.2. Langchain 1.9.1 -> 1.9.2 (requires core >= 1.9.2).
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,15 @@
2
2
3
3
All notable changes to `uipath_llm_client` (core package) will be documented in this file.
4
4
5
+
## [1.9.2] - 2026-04-17
6
+
7
+
### Changed
8
+
-`PlatformBaseSettings.build_auth_headers()` now uses the header-name constants from `uipath.platform.common.constants` (lowercase canonical form). HTTP header names are case-insensitive so wire-level behavior is unchanged.
9
+
-`UIPATH_PROCESS_KEY` is now URL-encoded (`urllib.parse.quote(..., safe="")`) before being placed in `X-UiPath-ProcessKey`, matching the platform-wide convention.
10
+
11
+
### Added
12
+
-`HEADER_LICENSING_CONTEXT` header populated dynamically from `UiPathConfig.licensing_context` when set.
Copy file name to clipboardExpand all lines: packages/uipath_langchain_client/CHANGELOG.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,12 @@
2
2
3
3
All notable changes to `uipath_langchain_client` will be documented in this file.
4
4
5
+
## [1.9.2] - 2026-04-17
6
+
7
+
### Changed
8
+
-**Breaking:** captured gateway headers are now exposed on `AIMessage.response_metadata` under the `headers` key (previously `uipath_llmgateway_headers`). Update any consumers that read this key.
9
+
- Minimum `uipath-llm-client` bumped to 1.9.2 for the platform-headers refactor and licensing-context support.
0 commit comments