@mcp-abap-adt/core 2.2.6 → 2.2.7
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 +6 -0
- package/README.md +9 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [2.2.7] - 2026-02-12
|
|
6
|
+
### Fixed
|
|
7
|
+
- **CI (Biome)**: Applied formatting fixes required by `npx biome check src --diagnostic-level=error`.
|
|
8
|
+
- `src/handlers/function_module/high/handleGetFunctionModule.ts`
|
|
9
|
+
- `src/lib/config/envResolver.ts`
|
|
10
|
+
|
|
5
11
|
## [2.2.6] - 2026-02-12
|
|
6
12
|
### Changed
|
|
7
13
|
- **Function Module handlers**: Fixed parameter propagation for function module operations:
|
package/README.md
CHANGED
|
@@ -45,18 +45,22 @@ Full configurator usage (separate repo): [CLIENT_INSTALLERS.md](https://github.c
|
|
|
45
45
|
|
|
46
46
|
## Terminology
|
|
47
47
|
|
|
48
|
-
**Destination**: a local service key filename. You store service keys in the service-keys directory, and pass the filename (without extension) via `--mcp=<destination>` to select which system to use.
|
|
48
|
+
**Destination**: a local service key filename. You store service keys in the standard `service-keys` directory, and pass the filename (without extension) via `--mcp=<destination>` to select which system to use.
|
|
49
49
|
|
|
50
50
|
See [docs/user-guide/TERMINOLOGY.md](docs/user-guide/TERMINOLOGY.md) for the full list.
|
|
51
51
|
|
|
52
52
|
## Authorization & Destinations
|
|
53
53
|
|
|
54
|
-
Destination-based auth is the default. Drop service keys into the
|
|
54
|
+
Destination-based auth is the default. Drop service keys into the standard platform folder and use the filename as your destination:
|
|
55
55
|
|
|
56
56
|
```bash
|
|
57
57
|
mcp-abap-adt --transport=stdio --mcp=TRIAL
|
|
58
58
|
```
|
|
59
59
|
|
|
60
|
+
Standard service key paths:
|
|
61
|
+
- Unix (Linux/macOS): `~/.config/mcp-abap-adt/service-keys/<destination>.json`
|
|
62
|
+
- Windows: `%USERPROFILE%\\Documents\\mcp-abap-adt\\service-keys\\<destination>.json`
|
|
63
|
+
|
|
60
64
|
For full details (paths, `.env`, direct headers), see [Authentication & Destinations](docs/user-guide/AUTHENTICATION.md).
|
|
61
65
|
|
|
62
66
|
## Architecture
|
|
@@ -215,7 +219,9 @@ npm run start:legacy
|
|
|
215
219
|
|
|
216
220
|
Env resolution:
|
|
217
221
|
1. `--env-path=<path|file>` (or `MCP_ENV_PATH`) for explicit `.env` file.
|
|
218
|
-
|
|
222
|
+
- Absolute path: used as-is.
|
|
223
|
+
- Relative path or file name only (e.g. `my.env`): resolved from current working directory.
|
|
224
|
+
2. `--env=<destination>` for destination file in standard sessions store:
|
|
219
225
|
- Unix: `~/.config/mcp-abap-adt/sessions/<destination>.env`
|
|
220
226
|
- Windows: `%USERPROFILE%\\Documents\\mcp-abap-adt\\sessions\\<destination>.env`
|
|
221
227
|
3. Fallback to `.env` in current working directory.
|