@backstage/plugin-auth-backend-module-azure-easyauth-provider 0.1.2-next.2 → 0.1.3
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 +22 -0
- package/dist/index.d.ts +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @backstage/plugin-auth-backend-module-azure-easyauth-provider
|
|
2
2
|
|
|
3
|
+
## 0.1.3
|
|
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/catalog-model@1.5.0
|
|
11
|
+
- @backstage/errors@1.2.4
|
|
12
|
+
|
|
13
|
+
## 0.1.2
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- 78a0b08: Internal refactor to handle `BackendFeature` contract change.
|
|
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/catalog-model@1.5.0
|
|
23
|
+
- @backstage/errors@1.2.4
|
|
24
|
+
|
|
3
25
|
## 0.1.2-next.2
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import * as _backstage_plugin_auth_node from '@backstage/plugin-auth-node';
|
|
|
3
3
|
import { Profile } from 'passport';
|
|
4
4
|
|
|
5
5
|
/** @public */
|
|
6
|
-
declare const authModuleAzureEasyAuthProvider:
|
|
6
|
+
declare const authModuleAzureEasyAuthProvider: _backstage_backend_plugin_api.BackendFeatureCompat;
|
|
7
7
|
|
|
8
8
|
/** @public */
|
|
9
9
|
type AzureEasyAuthResult = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-auth-backend-module-azure-easyauth-provider",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "The azure-easyauth-provider backend module for the auth plugin.",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -33,18 +33,18 @@
|
|
|
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/catalog-model": "^1.5.0",
|
|
38
38
|
"@backstage/errors": "^1.2.4",
|
|
39
|
-
"@backstage/plugin-auth-node": "^0.4.
|
|
39
|
+
"@backstage/plugin-auth-node": "^0.4.15",
|
|
40
40
|
"@types/passport": "^1.0.16",
|
|
41
41
|
"express": "^4.19.2",
|
|
42
42
|
"jose": "^5.0.0",
|
|
43
43
|
"passport": "^0.7.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@backstage/backend-test-utils": "^0.4.
|
|
47
|
-
"@backstage/cli": "^0.26.
|
|
48
|
-
"@backstage/plugin-auth-backend": "^0.22.
|
|
46
|
+
"@backstage/backend-test-utils": "^0.4.1",
|
|
47
|
+
"@backstage/cli": "^0.26.8",
|
|
48
|
+
"@backstage/plugin-auth-backend": "^0.22.7"
|
|
49
49
|
}
|
|
50
50
|
}
|