@axis-backstage/plugin-readme 0.17.0 → 0.18.1
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 +31 -0
- package/README.md +2 -2
- package/dist/alpha.d.ts +4 -5
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# @axis-backstage/plugin-readme
|
|
2
2
|
|
|
3
|
+
## 0.18.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 199bd49: Fix critical security vulnerabilities by upgrading Backstage dependencies:
|
|
8
|
+
|
|
9
|
+
**Security Fixes:**
|
|
10
|
+
|
|
11
|
+
- Fixed CVE-2025-8101 (High Severity) in linkifyjs/linkify-react by upgrading @backstage/core-components from ^0.18.4 to ^0.18.6
|
|
12
|
+
- Fixed CVE-2026-24046 (High Severity) - UNIX Symbolic Link Following in @backstage/backend-plugin-api by upgrading from ^1.6.0 to ^1.6.2
|
|
13
|
+
- Fixed CVE-2026-24047 (High Severity) - Symlink Attack in @backstage/backend-defaults by upgrading from ^0.14.0 to ^0.15.1
|
|
14
|
+
- Fixed SNYK-JS-QS-14724253 (High Severity) - Allocation of Resources Without Limits or Throttling in qs by adding resolution to ^6.14.1
|
|
15
|
+
|
|
16
|
+
**Additional Package Upgrades:**
|
|
17
|
+
Upgraded packages to versions that depend on patched Backstage core packages:
|
|
18
|
+
|
|
19
|
+
- @backstage/plugin-mcp-actions-backend: ^0.1.6 → ^0.1.8
|
|
20
|
+
- @backstage/plugin-search-backend: ^2.0.9 → ^2.0.11
|
|
21
|
+
- @backstage/plugin-techdocs-backend: ^2.1.3 → ^2.1.4
|
|
22
|
+
- @backstage/backend-test-utils: ^1.10.2 → ^1.10.4 (in jira-dashboard-backend and readme-backend)
|
|
23
|
+
|
|
24
|
+
**Code Improvements:**
|
|
25
|
+
|
|
26
|
+
- Removed redundant @backstage/backend-defaults imports from production code paths in backend plugins (jira-dashboard-backend, readme-backend, statuspage-backend)
|
|
27
|
+
|
|
28
|
+
## 0.18.0
|
|
29
|
+
|
|
30
|
+
### Minor Changes
|
|
31
|
+
|
|
32
|
+
- 7d98ad2: Bumped to backstage 1.46.2
|
|
33
|
+
|
|
3
34
|
## 0.17.0
|
|
4
35
|
|
|
5
36
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -140,8 +140,8 @@ Addition to this; ensure that `backstage:source-location` value has the trailing
|
|
|
140
140
|
metadata:
|
|
141
141
|
annotations:
|
|
142
142
|
# This will not work
|
|
143
|
-
backstage
|
|
143
|
+
backstage.io/source-location: url:https://bitbucket.org/org-name/repo-id/src/master
|
|
144
144
|
# This value will work.
|
|
145
|
-
backstage
|
|
145
|
+
backstage.io/source-location: url:https://bitbucket.org/org-name/repo-id/src/master/
|
|
146
146
|
...
|
|
147
147
|
```
|
package/dist/alpha.d.ts
CHANGED
|
@@ -3,7 +3,6 @@ import * as _backstage_catalog_model from '@backstage/catalog-model';
|
|
|
3
3
|
import * as react from 'react';
|
|
4
4
|
import * as _backstage_plugin_catalog_react_alpha from '@backstage/plugin-catalog-react/alpha';
|
|
5
5
|
import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api';
|
|
6
|
-
import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
|
|
7
6
|
|
|
8
7
|
/**
|
|
9
8
|
* Frontend plugin that fetches and displays the readme for an entity
|
|
@@ -11,18 +10,18 @@ import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
|
|
|
11
10
|
* @packageDocumentation
|
|
12
11
|
*/
|
|
13
12
|
declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin<{}, {}, {
|
|
14
|
-
"api:readme": _backstage_frontend_plugin_api.
|
|
13
|
+
"api:readme": _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
|
|
15
14
|
kind: "api";
|
|
16
15
|
name: undefined;
|
|
17
16
|
config: {};
|
|
18
17
|
configInput: {};
|
|
19
|
-
output: _backstage_frontend_plugin_api.ExtensionDataRef<
|
|
18
|
+
output: _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
20
19
|
inputs: {};
|
|
21
20
|
params: <TApi, TImpl extends TApi, TDeps extends {
|
|
22
21
|
[x: string]: unknown;
|
|
23
|
-
}>(params:
|
|
22
|
+
}>(params: _backstage_frontend_plugin_api.ApiFactory<TApi, TImpl, TDeps>) => _backstage_frontend_plugin_api.ExtensionBlueprintParams<_backstage_frontend_plugin_api.AnyApiFactory>;
|
|
24
23
|
}>;
|
|
25
|
-
"entity-card:readme": _backstage_frontend_plugin_api.
|
|
24
|
+
"entity-card:readme": _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
|
|
26
25
|
kind: "entity-card";
|
|
27
26
|
name: undefined;
|
|
28
27
|
config: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axis-backstage/plugin-readme",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.18.1",
|
|
4
4
|
"exports": {
|
|
5
5
|
".": {
|
|
6
6
|
"import": "./dist/index.esm.js",
|
|
@@ -56,14 +56,14 @@
|
|
|
56
56
|
"postpack": "backstage-cli package postpack"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@backstage/catalog-model": "^1.7.
|
|
60
|
-
"@backstage/core-compat-api": "^0.5.
|
|
61
|
-
"@backstage/core-components": "^0.
|
|
62
|
-
"@backstage/core-plugin-api": "^1.
|
|
59
|
+
"@backstage/catalog-model": "^1.7.6",
|
|
60
|
+
"@backstage/core-compat-api": "^0.5.5",
|
|
61
|
+
"@backstage/core-components": "^0.18.6",
|
|
62
|
+
"@backstage/core-plugin-api": "^1.12.1",
|
|
63
63
|
"@backstage/errors": "^1.2.7",
|
|
64
|
-
"@backstage/frontend-plugin-api": "^0.
|
|
65
|
-
"@backstage/plugin-catalog-react": "^1.
|
|
66
|
-
"@backstage/theme": "^0.
|
|
64
|
+
"@backstage/frontend-plugin-api": "^0.13.2",
|
|
65
|
+
"@backstage/plugin-catalog-react": "^1.21.4",
|
|
66
|
+
"@backstage/theme": "^0.7.1",
|
|
67
67
|
"@mui/icons-material": "^5.15.7",
|
|
68
68
|
"@mui/material": "^5.15.7",
|
|
69
69
|
"react-use": "^17.2.4"
|
|
@@ -75,10 +75,10 @@
|
|
|
75
75
|
"react-router-dom": "^6.3.0"
|
|
76
76
|
},
|
|
77
77
|
"devDependencies": {
|
|
78
|
-
"@backstage/cli": "^0.
|
|
79
|
-
"@backstage/core-app-api": "^1.
|
|
80
|
-
"@backstage/dev-utils": "^1.1.
|
|
81
|
-
"@backstage/test-utils": "^1.7.
|
|
78
|
+
"@backstage/cli": "^0.35.1",
|
|
79
|
+
"@backstage/core-app-api": "^1.19.3",
|
|
80
|
+
"@backstage/dev-utils": "^1.1.18",
|
|
81
|
+
"@backstage/test-utils": "^1.7.14",
|
|
82
82
|
"@testing-library/dom": "^10.0.0",
|
|
83
83
|
"@testing-library/jest-dom": "^6.0.0",
|
|
84
84
|
"@testing-library/react": "^16.0.0",
|