@backstage/plugin-auth-backend-module-bitbucket-provider 0.0.0-nightly-20241008023419 → 0.0.0-nightly-20241009023248

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 CHANGED
@@ -1,12 +1,22 @@
1
1
  # @backstage/plugin-auth-backend-module-bitbucket-provider
2
2
 
3
- ## 0.0.0-nightly-20241008023419
3
+ ## 0.0.0-nightly-20241009023248
4
4
 
5
5
  ### Patch Changes
6
6
 
7
+ - 217458a: Updated configuration schema to include the new `allowedDomains` option for the `emailLocalPartMatchingUserEntityName` sign-in resolver.
7
8
  - Updated dependencies
8
- - @backstage/plugin-auth-node@0.0.0-nightly-20241008023419
9
- - @backstage/backend-plugin-api@0.0.0-nightly-20241008023419
9
+ - @backstage/plugin-auth-node@0.0.0-nightly-20241009023248
10
+ - @backstage/backend-plugin-api@0.0.0-nightly-20241009023248
11
+
12
+ ## 0.2.1-next.1
13
+
14
+ ### Patch Changes
15
+
16
+ - 217458a: Updated configuration schema to include the new `allowedDomains` option for the `emailLocalPartMatchingUserEntityName` sign-in resolver.
17
+ - Updated dependencies
18
+ - @backstage/plugin-auth-node@0.5.3-next.1
19
+ - @backstage/backend-plugin-api@1.0.1-next.1
10
20
 
11
21
  ## 0.2.1-next.0
12
22
 
package/config.d.ts CHANGED
@@ -29,7 +29,10 @@ export interface Config {
29
29
  signIn?: {
30
30
  resolvers: Array<
31
31
  | { resolver: 'userIdMatchingUserEntityAnnotation' }
32
- | { resolver: 'emailLocalPartMatchingUserEntityName' }
32
+ | {
33
+ resolver: 'emailLocalPartMatchingUserEntityName';
34
+ allowedDomains?: string[];
35
+ }
33
36
  | { resolver: 'emailMatchingUserEntityProfileEmail' }
34
37
  >;
35
38
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-auth-backend-module-bitbucket-provider",
3
- "version": "0.0.0-nightly-20241008023419",
3
+ "version": "0.0.0-nightly-20241009023248",
4
4
  "description": "The bitbucket-provider backend module for the auth plugin.",
5
5
  "backstage": {
6
6
  "role": "backend-plugin-module",
@@ -34,17 +34,17 @@
34
34
  "test": "backstage-cli package test"
35
35
  },
36
36
  "dependencies": {
37
- "@backstage/backend-plugin-api": "0.0.0-nightly-20241008023419",
38
- "@backstage/plugin-auth-node": "0.0.0-nightly-20241008023419",
37
+ "@backstage/backend-plugin-api": "0.0.0-nightly-20241009023248",
38
+ "@backstage/plugin-auth-node": "0.0.0-nightly-20241009023248",
39
39
  "express": "^4.18.2",
40
40
  "passport": "^0.7.0",
41
41
  "passport-bitbucket-oauth2": "^0.1.2"
42
42
  },
43
43
  "devDependencies": {
44
- "@backstage/backend-defaults": "0.0.0-nightly-20241008023419",
45
- "@backstage/backend-test-utils": "0.0.0-nightly-20241008023419",
46
- "@backstage/cli": "0.0.0-nightly-20241008023419",
47
- "@backstage/plugin-auth-backend": "0.0.0-nightly-20241008023419",
44
+ "@backstage/backend-defaults": "0.0.0-nightly-20241009023248",
45
+ "@backstage/backend-test-utils": "0.0.0-nightly-20241009023248",
46
+ "@backstage/cli": "0.0.0-nightly-20241009023248",
47
+ "@backstage/plugin-auth-backend": "0.0.0-nightly-20241009023248",
48
48
  "supertest": "^7.0.0"
49
49
  },
50
50
  "configSchema": "config.d.ts"