@backstage/plugin-auth-backend-module-bitbucket-provider 0.2.4 → 0.3.0-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 +20 -0
- package/config.d.ts +3 -0
- package/package.json +12 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @backstage/plugin-auth-backend-module-bitbucket-provider
|
|
2
2
|
|
|
3
|
+
## 0.3.0-next.1
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 61f464e: Added `auth.providers.<providerId>.sessionDuration` config for auth providers to allow the lifespan of user sessions to be configured.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @backstage/backend-plugin-api@1.2.0-next.1
|
|
13
|
+
- @backstage/plugin-auth-node@0.6.0-next.1
|
|
14
|
+
|
|
15
|
+
## 0.2.5-next.0
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
- @backstage/backend-plugin-api@1.2.0-next.0
|
|
21
|
+
- @backstage/plugin-auth-node@0.5.7-next.0
|
|
22
|
+
|
|
3
23
|
## 0.2.4
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/config.d.ts
CHANGED
|
@@ -14,6 +14,8 @@
|
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
16
|
|
|
17
|
+
import { HumanDuration } from '@backstage/types';
|
|
18
|
+
|
|
17
19
|
export interface Config {
|
|
18
20
|
auth?: {
|
|
19
21
|
providers?: {
|
|
@@ -36,6 +38,7 @@ export interface Config {
|
|
|
36
38
|
| { resolver: 'emailMatchingUserEntityProfileEmail' }
|
|
37
39
|
>;
|
|
38
40
|
};
|
|
41
|
+
sessionDuration?: HumanDuration | string;
|
|
39
42
|
};
|
|
40
43
|
};
|
|
41
44
|
};
|
package/package.json
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-auth-backend-module-bitbucket-provider",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0-next.1",
|
|
4
4
|
"description": "The bitbucket-provider backend module for the auth plugin.",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
7
7
|
"pluginId": "auth",
|
|
8
|
-
"pluginPackage": "@backstage/plugin-auth-backend"
|
|
8
|
+
"pluginPackage": "@backstage/plugin-auth-backend",
|
|
9
|
+
"features": {
|
|
10
|
+
".": "@backstage/BackendFeature"
|
|
11
|
+
}
|
|
9
12
|
},
|
|
10
13
|
"publishConfig": {
|
|
11
14
|
"access": "public",
|
|
@@ -34,17 +37,18 @@
|
|
|
34
37
|
"test": "backstage-cli package test"
|
|
35
38
|
},
|
|
36
39
|
"dependencies": {
|
|
37
|
-
"@backstage/backend-plugin-api": "
|
|
38
|
-
"@backstage/plugin-auth-node": "
|
|
40
|
+
"@backstage/backend-plugin-api": "1.2.0-next.1",
|
|
41
|
+
"@backstage/plugin-auth-node": "0.6.0-next.1",
|
|
39
42
|
"express": "^4.18.2",
|
|
40
43
|
"passport": "^0.7.0",
|
|
41
44
|
"passport-bitbucket-oauth2": "^0.1.2"
|
|
42
45
|
},
|
|
43
46
|
"devDependencies": {
|
|
44
|
-
"@backstage/backend-defaults": "
|
|
45
|
-
"@backstage/backend-test-utils": "
|
|
46
|
-
"@backstage/cli": "
|
|
47
|
-
"@backstage/plugin-auth-backend": "
|
|
47
|
+
"@backstage/backend-defaults": "0.8.0-next.2",
|
|
48
|
+
"@backstage/backend-test-utils": "1.3.0-next.2",
|
|
49
|
+
"@backstage/cli": "0.30.0-next.2",
|
|
50
|
+
"@backstage/plugin-auth-backend": "0.24.3-next.2",
|
|
51
|
+
"@backstage/types": "1.2.1",
|
|
48
52
|
"supertest": "^7.0.0"
|
|
49
53
|
},
|
|
50
54
|
"configSchema": "config.d.ts",
|