@backstage/plugin-catalog-backend-module-azure 0.3.14-next.2 → 0.3.15-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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # @backstage/plugin-catalog-backend-module-azure
2
2
 
3
+ ## 0.3.15-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/integration@1.21.0-next.0
9
+ - @backstage/plugin-catalog-node@2.1.0-next.0
10
+ - @backstage/backend-plugin-api@1.7.1-next.0
11
+ - @backstage/config@1.3.6
12
+ - @backstage/plugin-catalog-common@1.1.8
13
+
14
+ ## 0.3.14
15
+
16
+ ### Patch Changes
17
+
18
+ - cc6206e: Added support for `{org}.visualstudio.com` domains used by Azure DevOps
19
+ - cfd8103: Updated imports to use stable catalog extension points from `@backstage/plugin-catalog-node` instead of the deprecated alpha exports.
20
+ - 6c8a464: Added missing `branch` field to the `azureDevOps` provider config schema.
21
+ - Updated dependencies
22
+ - @backstage/integration@1.20.0
23
+ - @backstage/plugin-catalog-node@2.0.0
24
+ - @backstage/backend-plugin-api@1.7.0
25
+ - @backstage/plugin-catalog-common@1.1.8
26
+
3
27
  ## 0.3.14-next.2
4
28
 
5
29
  ### Patch Changes
package/config.d.ts CHANGED
@@ -44,6 +44,10 @@ export interface Config {
44
44
  * If not set, all repositories will be searched.
45
45
  */
46
46
  repository?: string;
47
+ /**
48
+ * (Optional) The name of a branch to use. If not set, defaults to the default branch of the repository.
49
+ */
50
+ branch?: string;
47
51
  /**
48
52
  * (Optional) Where to find catalog-info.yaml files. Wildcards are supported.
49
53
  * If not set, defaults to /catalog-info.yaml.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-backend-module-azure",
3
- "version": "0.3.14-next.2",
3
+ "version": "0.3.15-next.0",
4
4
  "description": "A Backstage catalog backend module that helps integrate towards Azure",
5
5
  "backstage": {
6
6
  "role": "backend-plugin-module",
@@ -67,16 +67,16 @@
67
67
  "dependencies": {
68
68
  "@azure/identity": "^4.0.0",
69
69
  "@azure/storage-blob": "^12.5.0",
70
- "@backstage/backend-plugin-api": "1.7.0-next.1",
70
+ "@backstage/backend-plugin-api": "1.7.1-next.0",
71
71
  "@backstage/config": "1.3.6",
72
- "@backstage/integration": "1.20.0-next.2",
73
- "@backstage/plugin-catalog-common": "1.1.8-next.0",
74
- "@backstage/plugin-catalog-node": "2.0.0-next.1",
72
+ "@backstage/integration": "1.21.0-next.0",
73
+ "@backstage/plugin-catalog-common": "1.1.8",
74
+ "@backstage/plugin-catalog-node": "2.1.0-next.0",
75
75
  "uuid": "^11.0.0"
76
76
  },
77
77
  "devDependencies": {
78
- "@backstage/backend-test-utils": "1.11.0-next.1",
79
- "@backstage/cli": "0.35.4-next.2",
78
+ "@backstage/backend-test-utils": "1.11.1-next.0",
79
+ "@backstage/cli": "0.35.5-next.0",
80
80
  "msw": "^1.0.0"
81
81
  },
82
82
  "configSchema": "config.d.ts"