@mcp-abap-adt/auth-broker 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +17 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
9
9
|
|
|
10
10
|
Thank you to all contributors! See [CONTRIBUTORS.md](CONTRIBUTORS.md) for the complete list.
|
|
11
11
|
|
|
12
|
+
## [0.1.4] - 2025-12-01
|
|
13
|
+
|
|
14
|
+
### Dependencies
|
|
15
|
+
- Updated `@mcp-abap-adt/connection` to `^0.1.13`:
|
|
16
|
+
- **CSRF Token Endpoint Optimization**: Connection layer now uses `/sap/bc/adt/core/discovery` endpoint instead of `/sap/bc/adt/discovery`
|
|
17
|
+
- Lighter response payload (smaller XML response)
|
|
18
|
+
- Available on all SAP systems (on-premise and cloud)
|
|
19
|
+
- Standard ADT discovery endpoint ensures better compatibility
|
|
20
|
+
- **CSRF Configuration Export**: `CSRF_CONFIG` and `CSRF_ERROR_MESSAGES` constants are now exported from connection package
|
|
21
|
+
- Enables consistent CSRF token handling across different connection implementations
|
|
22
|
+
- Provides centralized configuration for retry logic, delays, and error messages
|
|
23
|
+
- See [PR Proposal](https://github.com/fr0ster/mcp-abap-adt/blob/main/packages/connection/PR_PROPOSAL_CSRF_CONFIG.md) for details
|
|
24
|
+
- **Impact**: Authentication broker benefits from optimized CSRF token fetching
|
|
25
|
+
- Faster connection initialization when managing JWT tokens
|
|
26
|
+
- Reduced network traffic during authentication flows
|
|
27
|
+
- Better compatibility across different SAP system versions
|
|
28
|
+
|
|
12
29
|
## [0.1.3] - 2025-12-01
|
|
13
30
|
|
|
14
31
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mcp-abap-adt/auth-broker",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "JWT authentication broker for MCP ABAP ADT - manages tokens based on destination headers",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"node": ">=18.0.0"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@mcp-abap-adt/connection": "^0.1.
|
|
50
|
+
"@mcp-abap-adt/connection": "^0.1.13",
|
|
51
51
|
"axios": "^1.11.0",
|
|
52
52
|
"dotenv": "^17.2.1",
|
|
53
53
|
"express": "^5.1.0",
|