@backstage/plugin-catalog-backend-module-azure 0.3.7-next.1 → 0.3.8-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,22 @@
1
1
  # @backstage/plugin-catalog-backend-module-azure
2
2
 
3
+ ## 0.3.8-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - b3aa80e: `host` should be optional in `config` schema
8
+
9
+ ## 0.3.7
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+ - @backstage/config@1.3.3
15
+ - @backstage/integration@1.17.1
16
+ - @backstage/backend-plugin-api@1.4.1
17
+ - @backstage/plugin-catalog-common@1.1.5
18
+ - @backstage/plugin-catalog-node@1.17.2
19
+
3
20
  ## 0.3.7-next.1
4
21
 
5
22
  ### Patch Changes
package/config.d.ts CHANGED
@@ -28,9 +28,9 @@ export interface Config {
28
28
  azureDevOps?: {
29
29
  [name: string]: {
30
30
  /**
31
- * (Optional) The DevOps host; leave empty for `dev.azure.com`, otherwise set to your self-hosted instance host.
31
+ * (Optional) The DevOps host; defaults to `dev.azure.com` if left empty, otherwise set to your self-hosted instance host.
32
32
  */
33
- host: string;
33
+ host?: string;
34
34
  /**
35
35
  * (Required) Your organization slug.
36
36
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-backend-module-azure",
3
- "version": "0.3.7-next.1",
3
+ "version": "0.3.8-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.4.1-next.0",
71
- "@backstage/config": "1.3.3-next.0",
72
- "@backstage/integration": "1.17.1-next.1",
73
- "@backstage/plugin-catalog-common": "1.1.5-next.0",
74
- "@backstage/plugin-catalog-node": "1.17.2-next.0",
70
+ "@backstage/backend-plugin-api": "1.4.1",
71
+ "@backstage/config": "1.3.3",
72
+ "@backstage/integration": "1.17.1",
73
+ "@backstage/plugin-catalog-common": "1.1.5",
74
+ "@backstage/plugin-catalog-node": "1.17.2",
75
75
  "uuid": "^11.0.0"
76
76
  },
77
77
  "devDependencies": {
78
- "@backstage/backend-test-utils": "1.7.0-next.1",
79
- "@backstage/cli": "0.33.1-next.1",
78
+ "@backstage/backend-test-utils": "1.7.0",
79
+ "@backstage/cli": "0.33.1",
80
80
  "luxon": "^3.0.0",
81
81
  "msw": "^1.0.0"
82
82
  },