@backstage/backend-plugin-api 1.2.0-next.1 → 1.2.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 +34 -0
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
# @backstage/backend-plugin-api
|
|
2
2
|
|
|
3
|
+
## 1.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 92a56f6: **BREAKING ALPHA**: Removed the deprecated `featureDiscoveryServiceRef` and `FeatureDiscoveryService`.
|
|
8
|
+
- a4aa244: This change introduces the `auditor` service definition.
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- 9ddfd94: Added new `PermissionsRegistryService` that is used by plugins to register permissions, resource types, and rules into the permission system. This replaces the existing `createPermissionIntegrationRouter` from `@backstage/plugin-permission-node`.
|
|
13
|
+
- 72cddf2: Updated `PermissionsRegistryService` to use `PermissionResourceRef`s and added the `getPermissionRuleset` method.
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
- @backstage/plugin-permission-node@0.8.8
|
|
16
|
+
- @backstage/plugin-auth-node@0.6.0
|
|
17
|
+
- @backstage/cli-common@0.1.15
|
|
18
|
+
- @backstage/config@1.3.2
|
|
19
|
+
- @backstage/errors@1.2.7
|
|
20
|
+
- @backstage/types@1.2.1
|
|
21
|
+
- @backstage/plugin-permission-common@0.8.4
|
|
22
|
+
|
|
23
|
+
## 1.2.0-next.2
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- 72cddf2: Updated `PermissionsRegistryService` to use `PermissionResourceRef`s and added the `getPermissionRuleset` method.
|
|
28
|
+
- Updated dependencies
|
|
29
|
+
- @backstage/plugin-permission-node@0.8.8-next.2
|
|
30
|
+
- @backstage/plugin-auth-node@0.6.0-next.2
|
|
31
|
+
- @backstage/cli-common@0.1.15
|
|
32
|
+
- @backstage/config@1.3.2
|
|
33
|
+
- @backstage/errors@1.2.7
|
|
34
|
+
- @backstage/types@1.2.1
|
|
35
|
+
- @backstage/plugin-permission-common@0.8.4
|
|
36
|
+
|
|
3
37
|
## 1.2.0-next.1
|
|
4
38
|
|
|
5
39
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/backend-plugin-api",
|
|
3
|
-
"version": "1.2.0
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "Core API used by Backstage backend plugins",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "node-library"
|
|
@@ -65,21 +65,21 @@
|
|
|
65
65
|
"test": "backstage-cli package test"
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
|
-
"@backstage/cli-common": "0.1.15",
|
|
69
|
-
"@backstage/config": "1.3.2",
|
|
70
|
-
"@backstage/errors": "1.2.7",
|
|
71
|
-
"@backstage/plugin-auth-node": "0.6.0
|
|
72
|
-
"@backstage/plugin-permission-common": "0.8.4",
|
|
73
|
-
"@backstage/plugin-permission-node": "0.8.8
|
|
74
|
-
"@backstage/types": "1.2.1",
|
|
68
|
+
"@backstage/cli-common": "^0.1.15",
|
|
69
|
+
"@backstage/config": "^1.3.2",
|
|
70
|
+
"@backstage/errors": "^1.2.7",
|
|
71
|
+
"@backstage/plugin-auth-node": "^0.6.0",
|
|
72
|
+
"@backstage/plugin-permission-common": "^0.8.4",
|
|
73
|
+
"@backstage/plugin-permission-node": "^0.8.8",
|
|
74
|
+
"@backstage/types": "^1.2.1",
|
|
75
75
|
"@types/express": "^4.17.6",
|
|
76
76
|
"@types/luxon": "^3.0.0",
|
|
77
77
|
"knex": "^3.0.0",
|
|
78
78
|
"luxon": "^3.0.0"
|
|
79
79
|
},
|
|
80
80
|
"devDependencies": {
|
|
81
|
-
"@backstage/backend-test-utils": "1.3.0
|
|
82
|
-
"@backstage/cli": "0.30.0
|
|
81
|
+
"@backstage/backend-test-utils": "^1.3.0",
|
|
82
|
+
"@backstage/cli": "^0.30.0"
|
|
83
83
|
},
|
|
84
84
|
"configSchema": "config.d.ts"
|
|
85
85
|
}
|