@backstage/backend-plugin-api 0.6.17-next.1 → 0.6.17
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 +14 -0
- package/alpha/package.json +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @backstage/backend-plugin-api
|
|
2
2
|
|
|
3
|
+
## 0.6.17
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 007e7ea: Added a new required `listPublicServiceKeys` to `AuthService`.
|
|
8
|
+
- 54f2ac8: Added `initialization` option to `createServiceFactory` which defines the initialization strategy for the service. The default strategy mimics the current behavior where plugin scoped services are initialized lazily by default and root scoped services are initialized eagerly.
|
|
9
|
+
- 4fecffc: The credentials passed to the `issueUserCookie` method of the `HttpAuthService` are no longer required to represent a user principal.
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
- @backstage/backend-tasks@0.5.22
|
|
12
|
+
- @backstage/plugin-auth-node@0.4.12
|
|
13
|
+
- @backstage/config@1.2.0
|
|
14
|
+
- @backstage/types@1.1.1
|
|
15
|
+
- @backstage/plugin-permission-common@0.7.13
|
|
16
|
+
|
|
3
17
|
## 0.6.17-next.1
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/backend-plugin-api",
|
|
3
3
|
"description": "Core API used by Backstage backend plugins",
|
|
4
|
-
"version": "0.6.17
|
|
4
|
+
"version": "0.6.17",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"publishConfig": {
|
|
@@ -43,9 +43,9 @@
|
|
|
43
43
|
"start": "backstage-cli package start"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@backstage/backend-tasks": "^0.5.22
|
|
46
|
+
"@backstage/backend-tasks": "^0.5.22",
|
|
47
47
|
"@backstage/config": "^1.2.0",
|
|
48
|
-
"@backstage/plugin-auth-node": "^0.4.12
|
|
48
|
+
"@backstage/plugin-auth-node": "^0.4.12",
|
|
49
49
|
"@backstage/plugin-permission-common": "^0.7.13",
|
|
50
50
|
"@backstage/types": "^1.1.1",
|
|
51
51
|
"@types/express": "^4.17.6",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"knex": "^3.0.0"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@backstage/cli": "^0.26.3
|
|
56
|
+
"@backstage/cli": "^0.26.3"
|
|
57
57
|
},
|
|
58
58
|
"files": [
|
|
59
59
|
"dist",
|