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

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 +36 -0
  2. package/package.json +6 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,41 @@
1
1
  # @flink-app/debug-plugin
2
2
 
3
+ ## 2.0.0-alpha.52
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [fe9f8f2]
8
+ - @flink-app/flink@2.0.0-alpha.52
9
+ - @flink-app/management-api-plugin@2.0.0-alpha.52
10
+
11
+ ## 2.0.0-alpha.51
12
+
13
+ ### Patch Changes
14
+
15
+ - fix: add peerDependencies to all plugins and adapters
16
+
17
+ **Breaking Change Prevention:**
18
+
19
+ - Added "@flink-app/flink": ">=2.0.0-alpha.0" as peerDependency to all plugins
20
+ - Fixed oidc-plugin peerDependencies from "workspace:\*" to proper version ranges
21
+ - Fixed oauth-plugin to include @flink-app/flink peerDependency
22
+
23
+ **JWT Auth Plugin Interface Fix:**
24
+
25
+ - Removed redundant createToken declaration from JwtAuthPlugin interface
26
+ - The method is already inherited from FlinkAuthPlugin, this fixes TypeScript type checking issues
27
+
28
+ **Why this matters:**
29
+
30
+ - Ensures only one version of @flink-app/flink exists in node_modules
31
+ - Prevents type conflicts when TypeScript resolves interfaces across packages
32
+ - Follows standard plugin architecture best practices (same pattern as React, Webpack, etc.)
33
+ - Package managers now warn if incompatible versions are installed
34
+
35
+ - Updated dependencies
36
+ - @flink-app/management-api-plugin@2.0.0-alpha.51
37
+ - @flink-app/flink@2.0.0-alpha.51
38
+
3
39
  ## 2.0.0-alpha.50
4
40
 
5
41
  ### 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.52",
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.52",
15
+ "@flink-app/management-api-plugin": "2.0.0-alpha.52"
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.52"
24
+ },
22
25
  "scripts": {
23
26
  "test": "echo \"Error: no test specified\"",
24
27
  "build": "tsc",