@backstage/plugin-catalog-backend-module-azure 0.1.22-next.3 → 0.1.22
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 +35 -0
- package/alpha/package.json +1 -1
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,40 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend-module-azure
|
|
2
2
|
|
|
3
|
+
## 0.1.22
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 71114ac50e02: The export for the new backend system has been moved to be the `default` export.
|
|
8
|
+
|
|
9
|
+
For example, if you are currently importing the plugin using the following pattern:
|
|
10
|
+
|
|
11
|
+
```ts
|
|
12
|
+
import { examplePlugin } from '@backstage/plugin-example-backend';
|
|
13
|
+
|
|
14
|
+
backend.add(examplePlugin);
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
It should be migrated to this:
|
|
18
|
+
|
|
19
|
+
```ts
|
|
20
|
+
backend.add(import('@backstage/plugin-example-backend'));
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
- 94f96508491d: Improve consistency of results from the `AzureDevOpsEntityProvider`.
|
|
24
|
+
- 5f1a92b9f19f: Use `DefaultAzureDevOpsCredentialsProvider` to retrieve credentials for Azure DevOps.
|
|
25
|
+
- 044b4f2fb1e3: Remove duplications from Azure search before committing the new locations to the catalog.
|
|
26
|
+
- Updated dependencies
|
|
27
|
+
- @backstage/backend-tasks@0.5.8
|
|
28
|
+
- @backstage/backend-common@0.19.5
|
|
29
|
+
- @backstage/config@1.1.0
|
|
30
|
+
- @backstage/catalog-model@1.4.2
|
|
31
|
+
- @backstage/errors@1.2.2
|
|
32
|
+
- @backstage/integration@1.7.0
|
|
33
|
+
- @backstage/plugin-catalog-common@1.0.16
|
|
34
|
+
- @backstage/types@1.1.1
|
|
35
|
+
- @backstage/backend-plugin-api@0.6.3
|
|
36
|
+
- @backstage/plugin-catalog-node@1.4.4
|
|
37
|
+
|
|
3
38
|
## 0.1.22-next.3
|
|
4
39
|
|
|
5
40
|
### 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.22
|
|
4
|
+
"version": "0.1.22",
|
|
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.5
|
|
47
|
-
"@backstage/backend-plugin-api": "^0.6.3
|
|
48
|
-
"@backstage/backend-tasks": "^0.5.8
|
|
49
|
-
"@backstage/catalog-model": "^1.4.2
|
|
50
|
-
"@backstage/config": "^1.1.0
|
|
51
|
-
"@backstage/errors": "^1.2.2
|
|
52
|
-
"@backstage/integration": "^1.7.0
|
|
53
|
-
"@backstage/plugin-catalog-common": "^1.0.16
|
|
54
|
-
"@backstage/plugin-catalog-node": "^1.4.4
|
|
55
|
-
"@backstage/types": "^1.1.1
|
|
46
|
+
"@backstage/backend-common": "^0.19.5",
|
|
47
|
+
"@backstage/backend-plugin-api": "^0.6.3",
|
|
48
|
+
"@backstage/backend-tasks": "^0.5.8",
|
|
49
|
+
"@backstage/catalog-model": "^1.4.2",
|
|
50
|
+
"@backstage/config": "^1.1.0",
|
|
51
|
+
"@backstage/errors": "^1.2.2",
|
|
52
|
+
"@backstage/integration": "^1.7.0",
|
|
53
|
+
"@backstage/plugin-catalog-common": "^1.0.16",
|
|
54
|
+
"@backstage/plugin-catalog-node": "^1.4.4",
|
|
55
|
+
"@backstage/types": "^1.1.1",
|
|
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.2.3
|
|
63
|
-
"@backstage/cli": "^0.22.13
|
|
62
|
+
"@backstage/backend-test-utils": "^0.2.3",
|
|
63
|
+
"@backstage/cli": "^0.22.13",
|
|
64
64
|
"@types/lodash": "^4.14.151",
|
|
65
65
|
"luxon": "^3.0.0",
|
|
66
66
|
"msw": "^1.0.0"
|