@backstage-community/plugin-mend-backend 0.2.0 → 0.4.0
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 +12 -0
- package/dist/index.d.ts +1 -2
- package/package.json +17 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @backstage-community/plugin-mend-backend
|
|
2
2
|
|
|
3
|
+
## 0.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 4ccd86f: Backstage version bump to v1.40.2
|
|
8
|
+
|
|
9
|
+
## 0.3.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 6d13cab: Backstage version bump to v1.37.0
|
|
14
|
+
|
|
3
15
|
## 0.2.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import * as _backstage_backend_plugin_api from '@backstage/backend-plugin-api';
|
|
2
2
|
import * as _backstage_plugin_permission_common from '@backstage/plugin-permission-common';
|
|
3
|
-
import * as _backstage_plugin_permission_common_index from '@backstage/plugin-permission-common/index';
|
|
4
3
|
import * as _backstage_plugin_permission_node from '@backstage/plugin-permission-node';
|
|
5
4
|
|
|
6
5
|
/**
|
|
@@ -41,6 +40,6 @@ declare const mendConditions: _backstage_plugin_permission_node.Conditions<{
|
|
|
41
40
|
}>;
|
|
42
41
|
}>;
|
|
43
42
|
/** @public */
|
|
44
|
-
declare const createMendProjectConditionalDecision: (permission:
|
|
43
|
+
declare const createMendProjectConditionalDecision: (permission: _backstage_plugin_permission_common.ResourcePermission<RESOURCE_TYPE>, conditions: _backstage_plugin_permission_common.PermissionCriteria<_backstage_plugin_permission_common.PermissionCondition<RESOURCE_TYPE>>) => _backstage_plugin_permission_common.ConditionalPolicyDecision;
|
|
45
44
|
|
|
46
45
|
export { type FilterProps, RESOURCE_TYPE, createMendProjectConditionalDecision, mendPlugin as default, mendConditions, mendReadPermission };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage-community/plugin-mend-backend",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"main": "dist/index.cjs.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -15,7 +15,10 @@
|
|
|
15
15
|
"pluginPackages": [
|
|
16
16
|
"@backstage-community/plugin-mend",
|
|
17
17
|
"@backstage-community/plugin-mend-backend"
|
|
18
|
-
]
|
|
18
|
+
],
|
|
19
|
+
"features": {
|
|
20
|
+
".": "@backstage/BackendFeature"
|
|
21
|
+
}
|
|
19
22
|
},
|
|
20
23
|
"configSchema": "config.d.ts",
|
|
21
24
|
"homepage": "https://backstage.io",
|
|
@@ -34,13 +37,13 @@
|
|
|
34
37
|
"postpack": "backstage-cli package postpack"
|
|
35
38
|
},
|
|
36
39
|
"dependencies": {
|
|
37
|
-
"@backstage/backend-defaults": "^0.
|
|
38
|
-
"@backstage/backend-plugin-api": "^1.
|
|
39
|
-
"@backstage/catalog-client": "^1.
|
|
40
|
-
"@backstage/catalog-model": "^1.7.
|
|
40
|
+
"@backstage/backend-defaults": "^0.11.0",
|
|
41
|
+
"@backstage/backend-plugin-api": "^1.4.0",
|
|
42
|
+
"@backstage/catalog-client": "^1.10.1",
|
|
43
|
+
"@backstage/catalog-model": "^1.7.4",
|
|
41
44
|
"@backstage/config": "^1.3.2",
|
|
42
|
-
"@backstage/plugin-permission-common": "^0.
|
|
43
|
-
"@backstage/plugin-permission-node": "^0.
|
|
45
|
+
"@backstage/plugin-permission-common": "^0.9.0",
|
|
46
|
+
"@backstage/plugin-permission-node": "^0.10.1",
|
|
44
47
|
"@types/express": "*",
|
|
45
48
|
"express": "^4.17.1",
|
|
46
49
|
"express-promise-router": "^4.1.0",
|
|
@@ -52,10 +55,10 @@
|
|
|
52
55
|
"zod": "^3.23.8"
|
|
53
56
|
},
|
|
54
57
|
"devDependencies": {
|
|
55
|
-
"@backstage/backend-test-utils": "^1.
|
|
56
|
-
"@backstage/cli": "^0.
|
|
57
|
-
"@backstage/plugin-auth-backend": "^0.
|
|
58
|
-
"@backstage/plugin-auth-backend-module-guest-provider": "^0.2.
|
|
58
|
+
"@backstage/backend-test-utils": "^1.6.0",
|
|
59
|
+
"@backstage/cli": "^0.33.0",
|
|
60
|
+
"@backstage/plugin-auth-backend": "^0.25.1",
|
|
61
|
+
"@backstage/plugin-auth-backend-module-guest-provider": "^0.2.9",
|
|
59
62
|
"@types/supertest": "^2.0.12",
|
|
60
63
|
"msw": "^1.0.0",
|
|
61
64
|
"supertest": "^6.2.4"
|
|
@@ -66,8 +69,8 @@
|
|
|
66
69
|
],
|
|
67
70
|
"typesVersions": {
|
|
68
71
|
"*": {
|
|
69
|
-
"
|
|
70
|
-
"
|
|
72
|
+
"package.json": [
|
|
73
|
+
"package.json"
|
|
71
74
|
]
|
|
72
75
|
}
|
|
73
76
|
}
|