@backstage/plugin-catalog-backend-module-azure 0.1.13-next.2 → 0.1.13
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 +44 -0
- package/alpha/package.json +1 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,49 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend-module-azure
|
|
2
2
|
|
|
3
|
+
## 0.1.13
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 2890f47517: This will add the ability to use Azure DevOps with multi project with a single value which is a new feature as previously this had to be done manually for each project that you wanted to add.
|
|
8
|
+
|
|
9
|
+
Right now you would have to fill in multiple values in the config to use multiple projects:
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
yourFirstProviderId: # identifies your dataset / provider independent of config changes
|
|
13
|
+
organization: myorg
|
|
14
|
+
project: 'firstProject' # this will match the firstProject project
|
|
15
|
+
repository: '*' # this will match all repos
|
|
16
|
+
path: /catalog-info.yaml
|
|
17
|
+
yourSecondProviderId: # identifies your dataset / provider independent of config changes
|
|
18
|
+
organization: myorg
|
|
19
|
+
project: 'secondProject' # this will match the secondProject project
|
|
20
|
+
repository: '*' # this will match all repos
|
|
21
|
+
path: /catalog-info.yaml
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
With this change you can actually have all projects available where your PAT determines which you have access to, so that includes multiple projects:
|
|
25
|
+
|
|
26
|
+
```
|
|
27
|
+
yourFirstProviderId: # identifies your dataset / provider independent of config changes
|
|
28
|
+
organization: myorg
|
|
29
|
+
project: '*' # this will match all projects where your PAT has access to
|
|
30
|
+
repository: '*' # this will match all repos
|
|
31
|
+
path: /catalog-info.yaml
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
- 85b04f659a: Internal refactor to not use deprecated `substr`
|
|
35
|
+
- Updated dependencies
|
|
36
|
+
- @backstage/plugin-catalog-backend@1.7.2
|
|
37
|
+
- @backstage/backend-plugin-api@0.4.0
|
|
38
|
+
- @backstage/backend-common@0.18.2
|
|
39
|
+
- @backstage/catalog-model@1.2.0
|
|
40
|
+
- @backstage/plugin-catalog-node@1.3.3
|
|
41
|
+
- @backstage/backend-tasks@0.4.3
|
|
42
|
+
- @backstage/config@1.0.6
|
|
43
|
+
- @backstage/errors@1.1.4
|
|
44
|
+
- @backstage/integration@1.4.2
|
|
45
|
+
- @backstage/types@1.0.2
|
|
46
|
+
|
|
3
47
|
## 0.1.13-next.2
|
|
4
48
|
|
|
5
49
|
### 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.13
|
|
4
|
+
"version": "0.1.13",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -33,15 +33,15 @@
|
|
|
33
33
|
"clean": "backstage-cli package clean"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@backstage/backend-common": "^0.18.2
|
|
37
|
-
"@backstage/backend-plugin-api": "^0.4.0
|
|
38
|
-
"@backstage/backend-tasks": "^0.4.3
|
|
39
|
-
"@backstage/catalog-model": "^1.2.0
|
|
36
|
+
"@backstage/backend-common": "^0.18.2",
|
|
37
|
+
"@backstage/backend-plugin-api": "^0.4.0",
|
|
38
|
+
"@backstage/backend-tasks": "^0.4.3",
|
|
39
|
+
"@backstage/catalog-model": "^1.2.0",
|
|
40
40
|
"@backstage/config": "^1.0.6",
|
|
41
41
|
"@backstage/errors": "^1.1.4",
|
|
42
42
|
"@backstage/integration": "^1.4.2",
|
|
43
|
-
"@backstage/plugin-catalog-backend": "^1.7.2
|
|
44
|
-
"@backstage/plugin-catalog-node": "^1.3.3
|
|
43
|
+
"@backstage/plugin-catalog-backend": "^1.7.2",
|
|
44
|
+
"@backstage/plugin-catalog-node": "^1.3.3",
|
|
45
45
|
"@backstage/types": "^1.0.2",
|
|
46
46
|
"lodash": "^4.17.21",
|
|
47
47
|
"node-fetch": "^2.6.7",
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"winston": "^3.2.1"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@backstage/backend-test-utils": "^0.1.34
|
|
53
|
-
"@backstage/cli": "^0.22.2
|
|
52
|
+
"@backstage/backend-test-utils": "^0.1.34",
|
|
53
|
+
"@backstage/cli": "^0.22.2",
|
|
54
54
|
"@types/lodash": "^4.14.151",
|
|
55
55
|
"luxon": "^3.0.0",
|
|
56
56
|
"msw": "^0.49.0"
|