@backstage/plugin-catalog-backend-module-azure 0.1.17-next.2 → 0.1.17
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/alpha/package.json +1 -1
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend-module-azure
|
|
2
2
|
|
|
3
|
+
## 0.1.17
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- c7f848bcea3c: Support authentication with a service principal or managed identity for Azure DevOps
|
|
8
|
+
|
|
9
|
+
Azure DevOps recently released support, in public preview, for authenticating with a service principal or managed identity instead of a personal access token (PAT): https://devblogs.microsoft.com/devops/introducing-service-principal-and-managed-identity-support-on-azure-devops/. With this change the Azure integration now supports service principals and managed identities for Azure AD backed Azure DevOps organizations. Service principal and managed identity authentication is not supported on Azure DevOps Server (on-premises) organizations.
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @backstage/backend-common@0.19.0
|
|
13
|
+
- @backstage/types@1.1.0
|
|
14
|
+
- @backstage/integration@1.5.0
|
|
15
|
+
- @backstage/catalog-model@1.4.0
|
|
16
|
+
- @backstage/errors@1.2.0
|
|
17
|
+
- @backstage/backend-plugin-api@0.5.3
|
|
18
|
+
- @backstage/backend-tasks@0.5.3
|
|
19
|
+
- @backstage/plugin-catalog-node@1.3.7
|
|
20
|
+
- @backstage/config@1.0.8
|
|
21
|
+
- @backstage/plugin-catalog-common@1.0.14
|
|
22
|
+
|
|
3
23
|
## 0.1.17-next.2
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-backend-module-azure",
|
|
3
3
|
"description": "A Backstage catalog backend module that helps integrate towards Azure",
|
|
4
|
-
"version": "0.1.17
|
|
4
|
+
"version": "0.1.17",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -43,24 +43,24 @@
|
|
|
43
43
|
"clean": "backstage-cli package clean"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@backstage/backend-common": "^0.19.0
|
|
47
|
-
"@backstage/backend-plugin-api": "^0.5.3
|
|
48
|
-
"@backstage/backend-tasks": "^0.5.3
|
|
49
|
-
"@backstage/catalog-model": "^1.4.0
|
|
50
|
-
"@backstage/config": "^1.0.
|
|
51
|
-
"@backstage/errors": "^1.2.0
|
|
52
|
-
"@backstage/integration": "^1.5.0
|
|
53
|
-
"@backstage/plugin-catalog-common": "^1.0.14
|
|
54
|
-
"@backstage/plugin-catalog-node": "^1.3.7
|
|
55
|
-
"@backstage/types": "^1.0
|
|
46
|
+
"@backstage/backend-common": "^0.19.0",
|
|
47
|
+
"@backstage/backend-plugin-api": "^0.5.3",
|
|
48
|
+
"@backstage/backend-tasks": "^0.5.3",
|
|
49
|
+
"@backstage/catalog-model": "^1.4.0",
|
|
50
|
+
"@backstage/config": "^1.0.8",
|
|
51
|
+
"@backstage/errors": "^1.2.0",
|
|
52
|
+
"@backstage/integration": "^1.5.0",
|
|
53
|
+
"@backstage/plugin-catalog-common": "^1.0.14",
|
|
54
|
+
"@backstage/plugin-catalog-node": "^1.3.7",
|
|
55
|
+
"@backstage/types": "^1.1.0",
|
|
56
56
|
"lodash": "^4.17.21",
|
|
57
57
|
"node-fetch": "^2.6.7",
|
|
58
58
|
"uuid": "^8.0.0",
|
|
59
59
|
"winston": "^3.2.1"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
|
-
"@backstage/backend-test-utils": "^0.1.38
|
|
63
|
-
"@backstage/cli": "^0.22.8
|
|
62
|
+
"@backstage/backend-test-utils": "^0.1.38",
|
|
63
|
+
"@backstage/cli": "^0.22.8",
|
|
64
64
|
"@types/lodash": "^4.14.151",
|
|
65
65
|
"luxon": "^3.0.0",
|
|
66
66
|
"msw": "^1.0.0"
|