@mcp-abap-adt/auth-broker 1.0.6 → 1.0.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +5 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -11,6 +11,11 @@ Thank you to all contributors! See [CONTRIBUTORS.md](CONTRIBUTORS.md) for the co
11
11
 
12
12
  ## [Unreleased]
13
13
 
14
+ ## [1.0.7] - 2026-06-08
15
+
16
+ ### Fixed
17
+ - Moved `tsx` from `dependencies` to `devDependencies`. `tsx` is only used by the `generate-env` dev script; it is never imported by the shipped `dist/` code (the `mcp-auth`/`mcp-sso` bins run compiled JS via node). Having it in `dependencies` pulled `tsx → esbuild → @esbuild/<platform>` into every consumer's production and global install, triggering an `allow-scripts`/ignored-build-script prompt for esbuild's postinstall on Windows/macOS package managers. Consumers no longer install esbuild.
18
+
14
19
  ## [1.0.6] - 2026-06-02
15
20
 
16
21
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mcp-abap-adt/auth-broker",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
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",
@@ -65,11 +65,11 @@
65
65
  "@mcp-abap-adt/auth-providers": "^1.0.5",
66
66
  "@mcp-abap-adt/auth-stores": "^1.0.2",
67
67
  "@mcp-abap-adt/interfaces": "^2.3.0",
68
- "axios": "^1.13.5",
69
- "tsx": "^4.21.0"
68
+ "axios": "^1.13.5"
70
69
  },
71
70
  "devDependencies": {
72
71
  "@biomejs/biome": "^2.3.14",
72
+ "tsx": "^4.21.0",
73
73
  "@mcp-abap-adt/logger": "^0.1.4",
74
74
  "@types/express": "^5.0.5",
75
75
  "@types/jest": "^30.0.0",