Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
b9efdb4
feat(agentgateway): add transparent TLS mode support
smahr Jul 7, 2026
f30e05f
feat(agentgateway): add ORD ID filtering and enhanced features
smahr Jul 7, 2026
c75ccdf
fix(agentgateway): update MCP client API and add testing support
smahr Jul 7, 2026
1c0d585
refactor(agentgateway): migrate to new MCP streamable_http_client API
smahr Jul 7, 2026
23e134c
chore: add test-agent to gitignore
smahr Jul 7, 2026
f0d7d2b
chore: add SDK wheel v0.33.0 with new MCP API
smahr Jul 7, 2026
c7dc4f9
fix(telemetry): make OpenTelemetry dependencies optional
smahr Jul 8, 2026
9e124e5
fix(telemetry): make telemetry imports conditional in destination module
smahr Jul 8, 2026
94b99b0
feat: Add transparent TLS mode and restore servicebinding.io support
smahr Jul 8, 2026
2c452fa
chore: Restore OpenTelemetry dependencies to match SAP upstream
smahr Jul 8, 2026
37529f7
feat: Make OpenTelemetry dependencies optional for K8s compatibility
smahr Jul 8, 2026
d945a99
chore: Bump version to 0.33.6
smahr Jul 8, 2026
3e26737
fix: Restore OTel version pinning to match Archive 5 (working version)
smahr Jul 8, 2026
f18faae
feat: Version 0.33.7 with Archive 5 config (OTel in required deps)
smahr Jul 8, 2026
84fae66
fix: Correct indentation in _customer.py async with ClientSession block
smahr Jul 8, 2026
3fcfb7a
chore: Bump version to 0.33.8
smahr Jul 8, 2026
c35402f
fix: Properly indent entire ClientSession block in _customer.py
smahr Jul 8, 2026
ed06692
chore: Bump version to 0.33.10
smahr Jul 8, 2026
e654bc3
fix: Complete indentation fix for all ClientSession blocks in _custom…
smahr Jul 8, 2026
4e4197b
fix: Complete indentation fix for all ClientSession blocks in _lob.py
smahr Jul 8, 2026
0ce0f66
fix: Restore get_ias_client_id_lob() function that was accidentally r…
smahr Jul 9, 2026
857061e
chore: Clean up old wheel versions from dist/
smahr Jul 9, 2026
b502b3d
chore: Remove unused _mcp_session.py file not in SAP upstream
smahr Jul 9, 2026
c929c61
test: Restore missing tests for get_ias_client_id_lob()
smahr Jul 9, 2026
4bf44b8
refactor: Remove defensive null/error checks not in SAP upstream
smahr Jul 9, 2026
2e4492e
refactor: Remove ord_id parameter from list_mcp_tools (not in SAP ups…
smahr Jul 9, 2026
b99de6e
refactor: Remove MCPTool|str and ord_id from call_mcp_tool (not in SA…
smahr Jul 9, 2026
ace0da9
refactor: Remove deprecated credential path and unused app_tid parame…
KoblerS Jul 10, 2026
56f3774
refactor: Remove deprecated app_tid parameter and update credential d…
KoblerS Jul 10, 2026
b486ce3
refactor: Simplify credential detection logic and remove unused depen…
KoblerS Jul 10, 2026
7d52725
refactor: Remove app_tid parameter from authentication methods and up…
KoblerS Jul 10, 2026
b8ac615
refactor: Update load_customer_credentials to support flat format for…
KoblerS Jul 10, 2026
ed8d32f
refactor: Remove 'data' field from integration dependencies in creden…
KoblerS Jul 10, 2026
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,4 @@ RELEASE.md

# macOS metadata
.DS_Store
test-agent/
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "sap-cloud-sdk"
version = "0.33.0"
version = "0.33.18"

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
version = "0.33.18"
version = "0.34.0"

I kindly ask you to run skills for review and release-prep

description = "SAP Cloud SDK for Python"
readme = "README.md"
license = "Apache-2.0"
Expand Down
2 changes: 2 additions & 0 deletions src/sap_cloud_sdk/agentgateway/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
from sap_cloud_sdk.agentgateway.agw_client import create_client, AgentGatewayClient
from sap_cloud_sdk.agentgateway.exceptions import (
AgentGatewaySDKError,
AgentGatewayServerError,
MCPServerNotFoundError,
)

Expand All @@ -82,5 +83,6 @@
"AgentCardFilter",
# Exceptions
"AgentGatewaySDKError",
"AgentGatewayServerError",
"MCPServerNotFoundError",
]
Loading