@mcp-abap-adt/core 6.2.0 → 6.2.2

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 CHANGED
@@ -2,6 +2,27 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [6.2.2] - 2026-04-17
6
+
7
+ ### Added
8
+ - Debug and tracing scripts: `debug-profiling`, `get-dump`, `list-dumps`, `list-traces`
9
+ - All scripts accept CLI parameters (`--class`, `--user`, `--id`, etc.) and support `--help`
10
+
11
+ ## [6.2.1] - 2026-04-17
12
+
13
+ ### Fixed
14
+ - `SAP_SYSTEM_TYPE` was commented out in `.env.example` — users on on-premise systems silently lost access to Program tools because the default is `cloud`
15
+
16
+ ### Documentation
17
+ - Added `SAP_SYSTEM_TYPE` to all `.env` examples in installation and CLI docs
18
+ - Added `SAP_SYSTEM_TYPE` to SAP Connection environment variables reference
19
+
20
+ ## [6.2.0] - 2026-04-16
21
+
22
+ ### Changed
23
+ - Updated `@mcp-abap-adt/connection` to ^1.8.0
24
+ - Updated `@mcp-abap-adt/adt-clients` to ^5.1.0
25
+
5
26
  ## [6.1.0] - 2026-04-16
6
27
 
7
28
  ### Changed
@@ -71,6 +71,9 @@ SAP_CLIENT=100
71
71
  SAP_AUTH_TYPE=basic
72
72
  SAP_USERNAME=your-username
73
73
  SAP_PASSWORD=your-password
74
+ # System type: cloud (default), onprem, or legacy
75
+ # Controls tool availability (e.g. Programs require onprem)
76
+ SAP_SYSTEM_TYPE=onprem
74
77
  EOF
75
78
  ```
76
79
 
@@ -364,6 +367,8 @@ SAP_URL=https://your-sap-system.com
364
367
  SAP_CLIENT=100
365
368
  SAP_AUTH_TYPE=jwt
366
369
  SAP_JWT_TOKEN=your-jwt-token
370
+ # System type: cloud (default), onprem, or legacy
371
+ SAP_SYSTEM_TYPE=cloud
367
372
  EOF
368
373
  ```
369
374
 
@@ -465,6 +470,7 @@ You can also configure the server using environment variables.
465
470
  - `SAP_URL` - SAP system URL (required)
466
471
  - `SAP_CLIENT` - SAP client number (required)
467
472
  - `SAP_AUTH_TYPE` - Authentication type: basic|jwt (default: basic)
473
+ - `SAP_SYSTEM_TYPE` - System type: `cloud` (default), `onprem`, or `legacy`. Controls tool availability (e.g. Programs require `onprem`)
468
474
  - `SAP_USERNAME` - SAP username (for basic auth)
469
475
  - `SAP_PASSWORD` - SAP password (for basic auth)
470
476
  - `SAP_LANGUAGE` - SAP language (optional, e.g., EN, DE)
@@ -426,6 +426,7 @@ These are typically set in `.env` file:
426
426
  - `SAP_URL` - SAP system URL (required)
427
427
  - `SAP_CLIENT` - SAP client number (required)
428
428
  - `SAP_AUTH_TYPE` - Authentication type: `basic` or `jwt` (default: basic)
429
+ - `SAP_SYSTEM_TYPE` - SAP system type: `cloud` (default), `onprem`, or `legacy`. Controls which tools are available — e.g., Programs require `onprem`. **Must be set explicitly for on-premise systems.**
429
430
  - `SAP_USERNAME` - SAP username (for basic auth)
430
431
  - `SAP_PASSWORD` - SAP password (for basic auth)
431
432
  - `SAP_CONNECTION_TYPE` - Connection transport: `http` (default) or `rfc`
@@ -498,6 +499,7 @@ cat > .env << EOF
498
499
  SAP_URL=https://dev.sap.company.com
499
500
  SAP_CLIENT=100
500
501
  SAP_AUTH_TYPE=basic
502
+ SAP_SYSTEM_TYPE=onprem
501
503
  SAP_USERNAME=developer
502
504
  SAP_PASSWORD=dev-password
503
505
  EOF
@@ -514,6 +516,7 @@ cat > rfc-system.env << EOF
514
516
  SAP_URL=https://sap.company.com
515
517
  SAP_CLIENT=100
516
518
  SAP_AUTH_TYPE=basic
519
+ SAP_SYSTEM_TYPE=onprem
517
520
  SAP_USERNAME=developer
518
521
  SAP_PASSWORD=dev-password
519
522
  SAP_CONNECTION_TYPE=rfc
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mcp-abap-adt/core",
3
3
  "mcpName": "io.github.fr0ster/mcp-abap-adt",
4
- "version": "6.2.0",
4
+ "version": "6.2.2",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {