@flink-app/api-docs-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 +32 -0
  2. package/package.json +5 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,37 @@
1
1
  # @flink-app/api-docs-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
+
10
+ ## 2.0.0-alpha.51
11
+
12
+ ### Patch Changes
13
+
14
+ - fix: add peerDependencies to all plugins and adapters
15
+
16
+ **Breaking Change Prevention:**
17
+
18
+ - Added "@flink-app/flink": ">=2.0.0-alpha.0" as peerDependency to all plugins
19
+ - Fixed oidc-plugin peerDependencies from "workspace:\*" to proper version ranges
20
+ - Fixed oauth-plugin to include @flink-app/flink peerDependency
21
+
22
+ **JWT Auth Plugin Interface Fix:**
23
+
24
+ - Removed redundant createToken declaration from JwtAuthPlugin interface
25
+ - The method is already inherited from FlinkAuthPlugin, this fixes TypeScript type checking issues
26
+
27
+ **Why this matters:**
28
+
29
+ - Ensures only one version of @flink-app/flink exists in node_modules
30
+ - Prevents type conflicts when TypeScript resolves interfaces across packages
31
+ - Follows standard plugin architecture best practices (same pattern as React, Webpack, etc.)
32
+ - Package managers now warn if incompatible versions are installed
33
+ - @flink-app/flink@2.0.0-alpha.51
34
+
3
35
  ## 2.0.0-alpha.50
4
36
 
5
37
  ## 2.0.0-alpha.49
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flink-app/api-docs-plugin",
3
- "version": "2.0.0-alpha.50",
3
+ "version": "2.0.0-alpha.52",
4
4
  "description": "Flink plugin that generates API documentation based on JSON schemas",
5
5
  "files": [
6
6
  "dist/**/*",
@@ -18,9 +18,12 @@
18
18
  "@types/node": "22.13.10",
19
19
  "ts-node": "^10.9.2",
20
20
  "tsc-watch": "^4.2.9",
21
- "@flink-app/flink": "2.0.0-alpha.50"
21
+ "@flink-app/flink": "2.0.0-alpha.52"
22
22
  },
23
23
  "gitHead": "4243e3b3cd6d4e1ca001a61baa8436bf2bbe4113",
24
+ "peerDependencies": {
25
+ "@flink-app/flink": ">=2.0.0-alpha.52"
26
+ },
24
27
  "scripts": {
25
28
  "test": "echo \"Error: no test specified\"",
26
29
  "build": "npm run build:react && tsc && npm run copy:assets",