@mcp-abap-adt/connection 9.2.1 → 9.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +14 -1
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [9.2.2] - 2026-09-26
11
+
12
+ ### Changed
13
+
14
+ - **`@mcp-abap-adt/interfaces-adt` `^10.0.0`, `-auth` `^2.0.1`, `-auth-sap`
15
+ `^1.0.1`.** Neither major touches a symbol this package takes: `interfaces-adt`
16
+ 10 adds `analyse` to object contracts (the connection types are byte-identical
17
+ to 9), and `interfaces-auth` 2 makes `AssertionContext.expectedInResponseTo`
18
+ optional, which only an `IAssertionValidator` implementer sees. `-auth-sap`
19
+ 1.0.1 is the one that accepts `-auth` 2 — with 1.0.0 an install carried a
20
+ second, private copy of `-auth` 1.x under it. No API changes.
21
+
10
22
  ## [9.2.1] - 2026-09-24
11
23
 
12
24
  ### Removed
@@ -1750,7 +1762,8 @@ const connection = createAbapConnection(config, logger);
1750
1762
  - JWT token refresh now properly handles connection errors (401/403 during initial connect)
1751
1763
  - Permission errors (403 with "ExceptionResourceNoAccess") no longer trigger JWT refresh loops
1752
1764
  - Proper separation: base class handles HTTP/session, concrete classes handle auth-specific errors
1753
- [Unreleased]: https://github.com/fr0ster/mcp-abap-connection/compare/v9.2.1...HEAD
1765
+ [Unreleased]: https://github.com/fr0ster/mcp-abap-connection/compare/v9.2.2...HEAD
1766
+ [9.2.2]: https://github.com/fr0ster/mcp-abap-connection/compare/v9.2.1...v9.2.2
1754
1767
  [9.2.1]: https://github.com/fr0ster/mcp-abap-connection/compare/v9.2.0...v9.2.1
1755
1768
  [9.2.0]: https://github.com/fr0ster/mcp-abap-connection/compare/v9.1.0...v9.2.0
1756
1769
  [9.1.0]: https://github.com/fr0ster/mcp-abap-connection/compare/v9.0.0...v9.1.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mcp-abap-adt/connection",
3
- "version": "9.2.1",
3
+ "version": "9.2.2",
4
4
  "description": "ABAP connection layer for MCP ABAP ADT server",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -53,9 +53,9 @@
53
53
  "node": ">=18.0.0"
54
54
  },
55
55
  "dependencies": {
56
- "@mcp-abap-adt/interfaces-adt": "^9.0.0",
57
- "@mcp-abap-adt/interfaces-auth": "^1.2.0",
58
- "@mcp-abap-adt/interfaces-auth-sap": "^1.0.0",
56
+ "@mcp-abap-adt/interfaces-adt": "^10.0.0",
57
+ "@mcp-abap-adt/interfaces-auth": "^2.0.1",
58
+ "@mcp-abap-adt/interfaces-auth-sap": "^1.0.1",
59
59
  "@mcp-abap-adt/interfaces-network": "^2.0.0",
60
60
  "@mcp-abap-adt/interfaces-utils": "^1.1.0",
61
61
  "axios": "^1.16.0",