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