@backstage/integration 1.16.3-next.0 → 1.16.4-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 +18 -0
- package/config.d.ts +2 -1
- package/package.json +9 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @backstage/integration
|
|
2
2
|
|
|
3
|
+
## 1.16.4-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- f3381d3: Added missing `organizations` property to `azure` section in `config.d.ts` file
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/config@1.3.2
|
|
10
|
+
- @backstage/errors@1.2.7
|
|
11
|
+
|
|
12
|
+
## 1.16.3
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- 9768992: Mark GitHub `webhookSecret` config property as optional. A `webhookSecret` is not required when creating a GitHub App.
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
- @backstage/config@1.3.2
|
|
19
|
+
- @backstage/errors@1.2.7
|
|
20
|
+
|
|
3
21
|
## 1.16.3-next.0
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/config.d.ts
CHANGED
|
@@ -51,12 +51,13 @@ export interface Config {
|
|
|
51
51
|
|
|
52
52
|
/**
|
|
53
53
|
* The credentials to use for requests. If multiple credentials are specified the first one that matches the organization is used.
|
|
54
|
-
* If
|
|
54
|
+
* If no organization matches the first credential without an organization is used.
|
|
55
55
|
*
|
|
56
56
|
* If no credentials are specified at all, either a default credential (for Azure DevOps) or anonymous access (for Azure DevOps Server) is used.
|
|
57
57
|
* @deepVisibility secret
|
|
58
58
|
*/
|
|
59
59
|
credentials?: {
|
|
60
|
+
organizations?: string[];
|
|
60
61
|
clientId?: string;
|
|
61
62
|
clientSecret?: string;
|
|
62
63
|
tenantId?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/integration",
|
|
3
|
-
"version": "1.16.
|
|
3
|
+
"version": "1.16.4-next.0",
|
|
4
4
|
"description": "Helpers for managing integrations towards external systems",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "common-library"
|
|
@@ -49,11 +49,18 @@
|
|
|
49
49
|
"luxon": "^3.0.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@backstage/cli": "0.32.
|
|
52
|
+
"@backstage/cli": "0.32.1-next.0",
|
|
53
53
|
"@backstage/config-loader": "1.10.0",
|
|
54
54
|
"@types/luxon": "^3.0.0",
|
|
55
55
|
"msw": "^1.0.0"
|
|
56
56
|
},
|
|
57
57
|
"configSchema": "config.d.ts",
|
|
58
|
+
"typesVersions": {
|
|
59
|
+
"*": {
|
|
60
|
+
"package.json": [
|
|
61
|
+
"package.json"
|
|
62
|
+
]
|
|
63
|
+
}
|
|
64
|
+
},
|
|
58
65
|
"module": "dist/index.esm.js"
|
|
59
66
|
}
|