@backstage/integration 1.7.0 → 1.7.1-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 +9 -0
- package/config.d.ts +2 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @backstage/integration
|
|
2
2
|
|
|
3
|
+
## 1.7.1-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 3963d0b885: Ensure that all relevant config fields are properly marked as secret
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/config@1.1.0
|
|
10
|
+
- @backstage/errors@1.2.2
|
|
11
|
+
|
|
3
12
|
## 1.7.0
|
|
4
13
|
|
|
5
14
|
### Minor Changes
|
package/config.d.ts
CHANGED
|
@@ -39,7 +39,7 @@ export interface Config {
|
|
|
39
39
|
*
|
|
40
40
|
* If no credential is specified anonymous access is used.
|
|
41
41
|
*
|
|
42
|
-
* @
|
|
42
|
+
* @deepVisibility secret
|
|
43
43
|
* @deprecated Use `credentials` instead.
|
|
44
44
|
*/
|
|
45
45
|
credential?: {
|
|
@@ -54,7 +54,7 @@ export interface Config {
|
|
|
54
54
|
* If not 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
60
|
clientId?: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/integration",
|
|
3
3
|
"description": "Helpers for managing integrations towards external systems",
|
|
4
|
-
"version": "1.7.0",
|
|
4
|
+
"version": "1.7.1-next.0",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -44,8 +44,8 @@
|
|
|
44
44
|
"luxon": "^3.0.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@backstage/cli": "^0.
|
|
48
|
-
"@backstage/config-loader": "^1.5.0",
|
|
47
|
+
"@backstage/cli": "^0.23.0-next.0",
|
|
48
|
+
"@backstage/config-loader": "^1.5.1-next.0",
|
|
49
49
|
"@types/luxon": "^3.0.0",
|
|
50
50
|
"msw": "^1.0.0"
|
|
51
51
|
},
|