@backstage/backend-plugin-api 0.7.1-next.0 → 0.7.1-next.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 +13 -0
- package/alpha/package.json +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +5 -5
- package/testUtils/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @backstage/backend-plugin-api
|
|
2
2
|
|
|
3
|
+
## 0.7.1-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- f011d1b: fix typo in `getPluginRequestToken` comments
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/plugin-permission-common@0.8.1-next.0
|
|
10
|
+
- @backstage/cli-common@0.1.14
|
|
11
|
+
- @backstage/config@1.2.0
|
|
12
|
+
- @backstage/errors@1.2.4
|
|
13
|
+
- @backstage/types@1.1.1
|
|
14
|
+
- @backstage/plugin-auth-node@0.4.18-next.1
|
|
15
|
+
|
|
3
16
|
## 0.7.1-next.0
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1001,7 +1001,7 @@ interface AuthService {
|
|
|
1001
1001
|
*
|
|
1002
1002
|
* @remarks
|
|
1003
1003
|
*
|
|
1004
|
-
* This method should be called before each request. Do not
|
|
1004
|
+
* This method should be called before each request. Do not hold on to the
|
|
1005
1005
|
* issued token and reuse it for future calls.
|
|
1006
1006
|
*/
|
|
1007
1007
|
getPluginRequestToken(options: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/backend-plugin-api",
|
|
3
|
-
"version": "0.7.1-next.
|
|
3
|
+
"version": "0.7.1-next.1",
|
|
4
4
|
"description": "Core API used by Backstage backend plugins",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "node-library"
|
|
@@ -56,8 +56,8 @@
|
|
|
56
56
|
"@backstage/cli-common": "^0.1.14",
|
|
57
57
|
"@backstage/config": "^1.2.0",
|
|
58
58
|
"@backstage/errors": "^1.2.4",
|
|
59
|
-
"@backstage/plugin-auth-node": "^0.4.18-next.
|
|
60
|
-
"@backstage/plugin-permission-common": "^0.8.0",
|
|
59
|
+
"@backstage/plugin-auth-node": "^0.4.18-next.1",
|
|
60
|
+
"@backstage/plugin-permission-common": "^0.8.1-next.0",
|
|
61
61
|
"@backstage/types": "^1.1.1",
|
|
62
62
|
"@types/express": "^4.17.6",
|
|
63
63
|
"@types/luxon": "^3.0.0",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"luxon": "^3.0.0"
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
|
-
"@backstage/backend-test-utils": "^0.4.5-next.
|
|
70
|
-
"@backstage/cli": "^0.27.0-next.
|
|
69
|
+
"@backstage/backend-test-utils": "^0.4.5-next.1",
|
|
70
|
+
"@backstage/cli": "^0.27.0-next.1"
|
|
71
71
|
}
|
|
72
72
|
}
|