@backstage/plugin-catalog-backend-module-msgraph 0.3.2-next.0 → 0.3.3-next.0

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +55 -0
  2. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,60 @@
1
1
  # @backstage/plugin-catalog-backend-module-msgraph
2
2
 
3
+ ## 0.3.3-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/backend-tasks@0.3.2-next.0
9
+ - @backstage/plugin-catalog-backend@1.2.0-next.0
10
+
11
+ ## 0.3.2
12
+
13
+ ### Patch Changes
14
+
15
+ - 8d9f673106: Add annotation `microsoft.com/email` when using the `defaultUserTransformer`.
16
+
17
+ This will allow users of the Microsoft auth provider to utilize the predefined
18
+ SignIn resolver instead of maintaining their own.
19
+
20
+ ```typescript
21
+ // backend/plugins/auth.ts
22
+
23
+ // [...]
24
+
25
+ export default async function createPlugin(
26
+ env: PluginEnvironment,
27
+ ): Promise<Router> {
28
+ return await createRouter({
29
+ // [...]
30
+ providerFactories: {
31
+ microsoft: providers.microsoft.create({
32
+ signIn: {
33
+ resolver:
34
+ providers.microsoft.resolvers.emailMatchingUserEntityAnnotation(),
35
+ },
36
+ }),
37
+ },
38
+ });
39
+ }
40
+ ```
41
+
42
+ - Updated dependencies
43
+ - @backstage/plugin-catalog-backend@1.1.2
44
+ - @backstage/backend-tasks@0.3.1
45
+ - @backstage/config@1.0.1
46
+ - @backstage/catalog-model@1.0.2
47
+
48
+ ## 0.3.2-next.1
49
+
50
+ ### Patch Changes
51
+
52
+ - Updated dependencies
53
+ - @backstage/plugin-catalog-backend@1.1.2-next.2
54
+ - @backstage/backend-tasks@0.3.1-next.1
55
+ - @backstage/config@1.0.1-next.0
56
+ - @backstage/catalog-model@1.0.2-next.0
57
+
3
58
  ## 0.3.2-next.0
4
59
 
5
60
  ### Patch Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-backend-module-msgraph",
3
3
  "description": "A Backstage catalog backend module that helps integrate towards Microsoft Graph",
4
- "version": "0.3.2-next.0",
4
+ "version": "0.3.3-next.0",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -34,10 +34,10 @@
34
34
  },
35
35
  "dependencies": {
36
36
  "@azure/msal-node": "^1.1.0",
37
- "@backstage/backend-tasks": "^0.3.1-next.0",
38
- "@backstage/catalog-model": "^1.0.1",
39
- "@backstage/config": "^1.0.0",
40
- "@backstage/plugin-catalog-backend": "^1.1.2-next.0",
37
+ "@backstage/backend-tasks": "^0.3.2-next.0",
38
+ "@backstage/catalog-model": "^1.0.2",
39
+ "@backstage/config": "^1.0.1",
40
+ "@backstage/plugin-catalog-backend": "^1.2.0-next.0",
41
41
  "@microsoft/microsoft-graph-types": "^2.6.0",
42
42
  "@types/node-fetch": "^2.5.12",
43
43
  "lodash": "^4.17.21",
@@ -48,9 +48,9 @@
48
48
  "winston": "^3.2.1"
49
49
  },
50
50
  "devDependencies": {
51
- "@backstage/backend-common": "^0.13.3-next.0",
52
- "@backstage/backend-test-utils": "^0.1.24-next.0",
53
- "@backstage/cli": "^0.17.1-next.0",
51
+ "@backstage/backend-common": "^0.13.6-next.0",
52
+ "@backstage/backend-test-utils": "^0.1.25-next.0",
53
+ "@backstage/cli": "^0.17.2-next.0",
54
54
  "@types/lodash": "^4.14.151",
55
55
  "msw": "^0.35.0"
56
56
  },
@@ -59,5 +59,5 @@
59
59
  "config.d.ts"
60
60
  ],
61
61
  "configSchema": "config.d.ts",
62
- "gitHead": "88ee375f5ee44b7a7917297785ddf88691fe3381"
62
+ "gitHead": "c1511c99a532aeb003a97510a5638bd939ee65ca"
63
63
  }