@mcp-abap-adt/header-validator 0.3.0 → 0.3.1
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 +11 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.3.1] - 2026-09-26
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- **`@mcp-abap-adt/interfaces-auth` `^2.0.1` and `-auth-sap` `^1.0.1`.** This
|
|
13
|
+
package takes two constants from `interfaces-auth`, `AUTH_TYPE_BASIC` and
|
|
14
|
+
`AUTH_TYPE_JWT`, which major 2 leaves as they were; its one break makes
|
|
15
|
+
`AssertionContext.expectedInResponseTo` optional, which no file here names.
|
|
16
|
+
`-auth-sap` 1.0.1 is the release that accepts `-auth` 2 — with 1.0.0 an
|
|
17
|
+
install carried a second, private copy of `-auth` 1.x under it. No API change.
|
|
18
|
+
|
|
8
19
|
## [0.3.0] - 2026-09-24
|
|
9
20
|
|
|
10
21
|
### Changed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mcp-abap-adt/header-validator",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "Header validator for MCP ABAP ADT - validates and prioritizes authentication headers",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -50,8 +50,8 @@
|
|
|
50
50
|
"node": ">=18.0.0"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@mcp-abap-adt/interfaces-auth": "^
|
|
54
|
-
"@mcp-abap-adt/interfaces-auth-sap": "^1.0.
|
|
53
|
+
"@mcp-abap-adt/interfaces-auth": "^2.0.1",
|
|
54
|
+
"@mcp-abap-adt/interfaces-auth-sap": "^1.0.1",
|
|
55
55
|
"@mcp-abap-adt/interfaces-network": "^2.0.0"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|