@backstage/backend-plugin-api 0.6.14-next.2 → 0.6.14
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 +18 -0
- package/alpha/package.json +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @backstage/backend-plugin-api
|
|
2
2
|
|
|
3
|
+
## 0.6.14
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 4a3d434: Added the new [`auth`](https://backstage.io/docs/backend-system/core-services/auth/), [`httpAuth`](https://backstage.io/docs/backend-system/core-services/http-auth), and [`userInfo`](https://backstage.io/docs/backend-system/core-services/user-info) services that were created as part of [BEP-0003](https://github.com/backstage/backstage/tree/master/beps/0003-auth-architecture-evolution) to the `coreServices`.
|
|
8
|
+
|
|
9
|
+
At the same time, the [`httpRouter`](https://backstage.io/docs/backend-system/core-services/http-router) service gained a new `addAuthPolicy` method that lets your plugin declare exemptions to the default auth policy - for example if you want to allow unauthenticated or cookie-based access to some subset of your feature routes.
|
|
10
|
+
|
|
11
|
+
If you have migrated to the new backend system, please see the [Auth Service Migration tutorial](https://backstage.io/docs/tutorials/auth-service-migration) for more information on how to move toward using these services.
|
|
12
|
+
|
|
13
|
+
- 0502d82: Updated the `PermissionsService` methods to accept `BackstageCredentials` through options.
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
- @backstage/plugin-auth-node@0.4.9
|
|
16
|
+
- @backstage/config@1.2.0
|
|
17
|
+
- @backstage/plugin-permission-common@0.7.13
|
|
18
|
+
- @backstage/backend-tasks@0.5.19
|
|
19
|
+
- @backstage/types@1.1.1
|
|
20
|
+
|
|
3
21
|
## 0.6.14-next.2
|
|
4
22
|
|
|
5
23
|
### 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.14
|
|
4
|
+
"version": "0.6.14",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"publishConfig": {
|
|
@@ -43,17 +43,17 @@
|
|
|
43
43
|
"start": "backstage-cli package start"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@backstage/backend-tasks": "^0.5.19
|
|
47
|
-
"@backstage/config": "^1.2.0
|
|
48
|
-
"@backstage/plugin-auth-node": "^0.4.9
|
|
49
|
-
"@backstage/plugin-permission-common": "^0.7.13
|
|
46
|
+
"@backstage/backend-tasks": "^0.5.19",
|
|
47
|
+
"@backstage/config": "^1.2.0",
|
|
48
|
+
"@backstage/plugin-auth-node": "^0.4.9",
|
|
49
|
+
"@backstage/plugin-permission-common": "^0.7.13",
|
|
50
50
|
"@backstage/types": "^1.1.1",
|
|
51
51
|
"@types/express": "^4.17.6",
|
|
52
52
|
"express": "^4.17.1",
|
|
53
53
|
"knex": "^3.0.0"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@backstage/cli": "^0.
|
|
56
|
+
"@backstage/cli": "^0.26.0"
|
|
57
57
|
},
|
|
58
58
|
"files": [
|
|
59
59
|
"dist",
|