@backstage/plugin-auth-backend-module-microsoft-provider 0.0.0-nightly-20231024021502 → 0.0.0-nightly-20231026021300

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,14 +1,25 @@
1
1
  # @backstage/plugin-auth-backend-module-microsoft-provider
2
2
 
3
- ## 0.0.0-nightly-20231024021502
3
+ ## 0.0.0-nightly-20231026021300
4
4
 
5
5
  ### Patch Changes
6
6
 
7
+ - 5aeb14f03578: Correctly mark the client secret in configuration as secret
7
8
  - 2817115d09d5: Removed `prompt=consent` from start method to fix #20641
8
9
  - Updated dependencies
9
- - @backstage/backend-common@0.0.0-nightly-20231024021502
10
- - @backstage/backend-plugin-api@0.0.0-nightly-20231024021502
11
- - @backstage/plugin-auth-node@0.0.0-nightly-20231024021502
10
+ - @backstage/backend-common@0.0.0-nightly-20231026021300
11
+ - @backstage/backend-plugin-api@0.0.0-nightly-20231026021300
12
+ - @backstage/plugin-auth-node@0.0.0-nightly-20231026021300
13
+
14
+ ## 0.1.2-next.0
15
+
16
+ ### Patch Changes
17
+
18
+ - 2817115d09: Removed `prompt=consent` from start method to fix #20641
19
+ - Updated dependencies
20
+ - @backstage/backend-common@0.19.9-next.0
21
+ - @backstage/backend-plugin-api@0.6.7-next.0
22
+ - @backstage/plugin-auth-node@0.4.1-next.0
12
23
 
13
24
  ## 0.1.0
14
25
 
package/config.d.ts CHANGED
@@ -21,10 +21,10 @@ export interface Config {
21
21
  microsoft?: {
22
22
  [authEnv: string]: {
23
23
  clientId: string;
24
+ tenantId: string;
24
25
  /**
25
26
  * @visibility secret
26
27
  */
27
- tenantId: string;
28
28
  clientSecret: string;
29
29
  callbackUrl?: string;
30
30
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-auth-backend-module-microsoft-provider",
3
3
  "description": "The microsoft-provider backend module for the auth plugin.",
4
- "version": "0.0.0-nightly-20231024021502",
4
+ "version": "0.0.0-nightly-20231026021300",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -23,18 +23,18 @@
23
23
  "postpack": "backstage-cli package postpack"
24
24
  },
25
25
  "dependencies": {
26
- "@backstage/backend-common": "^0.0.0-nightly-20231024021502",
27
- "@backstage/backend-plugin-api": "^0.0.0-nightly-20231024021502",
28
- "@backstage/plugin-auth-node": "^0.0.0-nightly-20231024021502",
26
+ "@backstage/backend-common": "^0.0.0-nightly-20231026021300",
27
+ "@backstage/backend-plugin-api": "^0.0.0-nightly-20231026021300",
28
+ "@backstage/plugin-auth-node": "^0.0.0-nightly-20231026021300",
29
29
  "express": "^4.18.2",
30
30
  "passport": "^0.6.0",
31
31
  "passport-microsoft": "^1.0.0"
32
32
  },
33
33
  "devDependencies": {
34
- "@backstage/backend-defaults": "^0.0.0-nightly-20231024021502",
35
- "@backstage/backend-test-utils": "^0.0.0-nightly-20231024021502",
36
- "@backstage/cli": "^0.0.0-nightly-20231024021502",
37
- "@backstage/plugin-auth-backend": "^0.0.0-nightly-20231024021502",
34
+ "@backstage/backend-defaults": "^0.0.0-nightly-20231026021300",
35
+ "@backstage/backend-test-utils": "^0.0.0-nightly-20231026021300",
36
+ "@backstage/cli": "^0.0.0-nightly-20231026021300",
37
+ "@backstage/plugin-auth-backend": "^0.0.0-nightly-20231026021300",
38
38
  "supertest": "^6.3.3"
39
39
  },
40
40
  "configSchema": "config.d.ts",