@backstage/plugin-auth-backend-module-pinniped-provider 0.1.13-next.2 → 0.1.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 +21 -0
- package/dist/index.d.ts +2 -2
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @backstage/plugin-auth-backend-module-pinniped-provider
|
|
2
2
|
|
|
3
|
+
## 0.1.14
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/plugin-auth-node@0.4.15
|
|
9
|
+
- @backstage/backend-plugin-api@0.6.20
|
|
10
|
+
- @backstage/config@1.2.0
|
|
11
|
+
|
|
12
|
+
## 0.1.13
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- 78a0b08: Internal refactor to handle `BackendFeature` contract change.
|
|
17
|
+
- 8efc6cf: **BREAKING**: The `scope` config option have been removed and replaced by the standard `additionalScopes` config. In addition, the `openid`, `pinniped:request-audience`, `username`, and `offline_access` scopes have been set to required and will always be present.
|
|
18
|
+
- d44a20a: Added additional plugin metadata to `package.json`.
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
- @backstage/backend-plugin-api@0.6.19
|
|
21
|
+
- @backstage/plugin-auth-node@0.4.14
|
|
22
|
+
- @backstage/config@1.2.0
|
|
23
|
+
|
|
3
24
|
## 0.1.13-next.2
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -23,12 +23,12 @@ declare class PinnipedStrategyCache {
|
|
|
23
23
|
declare const pinnipedAuthenticator: _backstage_plugin_auth_node.OAuthAuthenticator<PinnipedStrategyCache, unknown>;
|
|
24
24
|
|
|
25
25
|
/** @public */
|
|
26
|
-
declare const authModulePinnipedProvider$1:
|
|
26
|
+
declare const authModulePinnipedProvider$1: _backstage_backend_plugin_api.BackendFeatureCompat;
|
|
27
27
|
|
|
28
28
|
/**
|
|
29
29
|
* @public
|
|
30
30
|
* @deprecated Use default import instead
|
|
31
31
|
*/
|
|
32
|
-
declare const authModulePinnipedProvider:
|
|
32
|
+
declare const authModulePinnipedProvider: _backstage_backend_plugin_api.BackendFeatureCompat;
|
|
33
33
|
|
|
34
34
|
export { PinnipedStrategyCache, authModulePinnipedProvider, authModulePinnipedProvider$1 as default, pinnipedAuthenticator };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-auth-backend-module-pinniped-provider",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.14",
|
|
4
4
|
"description": "The pinniped-provider backend module for the auth plugin.",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -33,17 +33,17 @@
|
|
|
33
33
|
"test": "backstage-cli package test"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@backstage/backend-plugin-api": "^0.6.
|
|
36
|
+
"@backstage/backend-plugin-api": "^0.6.20",
|
|
37
37
|
"@backstage/config": "^1.2.0",
|
|
38
|
-
"@backstage/plugin-auth-node": "^0.4.
|
|
38
|
+
"@backstage/plugin-auth-node": "^0.4.15",
|
|
39
39
|
"luxon": "^3.4.3",
|
|
40
40
|
"openid-client": "^5.4.3"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@backstage/backend-defaults": "^0.3.
|
|
44
|
-
"@backstage/backend-test-utils": "^0.4.
|
|
45
|
-
"@backstage/cli": "^0.26.
|
|
46
|
-
"@backstage/plugin-auth-backend": "^0.22.
|
|
43
|
+
"@backstage/backend-defaults": "^0.3.1",
|
|
44
|
+
"@backstage/backend-test-utils": "^0.4.1",
|
|
45
|
+
"@backstage/cli": "^0.26.8",
|
|
46
|
+
"@backstage/plugin-auth-backend": "^0.22.7",
|
|
47
47
|
"cookie-parser": "^1.4.6",
|
|
48
48
|
"express": "^4.18.2",
|
|
49
49
|
"express-session": "^1.17.3",
|