@flink-app/debug-plugin 2.0.0-alpha.50 → 2.0.0-alpha.51

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 +28 -0
  2. package/package.json +6 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # @flink-app/debug-plugin
2
2
 
3
+ ## 2.0.0-alpha.51
4
+
5
+ ### Patch Changes
6
+
7
+ - fix: add peerDependencies to all plugins and adapters
8
+
9
+ **Breaking Change Prevention:**
10
+
11
+ - Added "@flink-app/flink": ">=2.0.0-alpha.0" as peerDependency to all plugins
12
+ - Fixed oidc-plugin peerDependencies from "workspace:\*" to proper version ranges
13
+ - Fixed oauth-plugin to include @flink-app/flink peerDependency
14
+
15
+ **JWT Auth Plugin Interface Fix:**
16
+
17
+ - Removed redundant createToken declaration from JwtAuthPlugin interface
18
+ - The method is already inherited from FlinkAuthPlugin, this fixes TypeScript type checking issues
19
+
20
+ **Why this matters:**
21
+
22
+ - Ensures only one version of @flink-app/flink exists in node_modules
23
+ - Prevents type conflicts when TypeScript resolves interfaces across packages
24
+ - Follows standard plugin architecture best practices (same pattern as React, Webpack, etc.)
25
+ - Package managers now warn if incompatible versions are installed
26
+
27
+ - Updated dependencies
28
+ - @flink-app/management-api-plugin@2.0.0-alpha.51
29
+ - @flink-app/flink@2.0.0-alpha.51
30
+
3
31
  ## 2.0.0-alpha.50
4
32
 
5
33
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flink-app/debug-plugin",
3
- "version": "2.0.0-alpha.50",
3
+ "version": "2.0.0-alpha.51",
4
4
  "description": "Flink plugin that make it possbile to debug requests",
5
5
  "author": "johan@frost.se",
6
6
  "publishConfig": {
@@ -11,14 +11,17 @@
11
11
  "main": "dist/index.js",
12
12
  "dependencies": {
13
13
  "node-color-log": "^5.3.1",
14
- "@flink-app/management-api-plugin": "2.0.0-alpha.50",
15
- "@flink-app/flink": "2.0.0-alpha.50"
14
+ "@flink-app/flink": "2.0.0-alpha.51",
15
+ "@flink-app/management-api-plugin": "2.0.0-alpha.51"
16
16
  },
17
17
  "devDependencies": {
18
18
  "@types/node": "22.13.10",
19
19
  "ts-node": "^10.9.2"
20
20
  },
21
21
  "gitHead": "4243e3b3cd6d4e1ca001a61baa8436bf2bbe4113",
22
+ "peerDependencies": {
23
+ "@flink-app/flink": ">=2.0.0-alpha.51"
24
+ },
22
25
  "scripts": {
23
26
  "test": "echo \"Error: no test specified\"",
24
27
  "build": "tsc",