@flink-app/debug-plugin 2.0.0-alpha.49 → 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.
- package/CHANGELOG.md +36 -0
- 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.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
|
+
|
|
31
|
+
## 2.0.0-alpha.50
|
|
32
|
+
|
|
33
|
+
### Patch Changes
|
|
34
|
+
|
|
35
|
+
- Updated dependencies
|
|
36
|
+
- @flink-app/flink@2.0.0-alpha.50
|
|
37
|
+
- @flink-app/management-api-plugin@2.0.0-alpha.50
|
|
38
|
+
|
|
3
39
|
## 2.0.0-alpha.49
|
|
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.
|
|
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/flink": "2.0.0-alpha.
|
|
15
|
-
"@flink-app/management-api-plugin": "2.0.0-alpha.
|
|
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",
|