@backstage/integration 1.18.0 → 1.18.1-next.1
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 +17 -0
- package/config.d.ts +60 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @backstage/integration
|
|
2
2
|
|
|
3
|
+
## 1.18.1-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/config@1.3.4-next.0
|
|
9
|
+
|
|
10
|
+
## 1.18.1-next.0
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- d772b51: remove host from azure blob storage integration type
|
|
15
|
+
- 84443f1: Adds config definitions for Azure Blob Storage.
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- @backstage/config@1.3.3
|
|
18
|
+
- @backstage/errors@1.2.7
|
|
19
|
+
|
|
3
20
|
## 1.18.0
|
|
4
21
|
|
|
5
22
|
### Minor Changes
|
package/config.d.ts
CHANGED
|
@@ -71,6 +71,66 @@ export interface Config {
|
|
|
71
71
|
commitSigningKey?: string;
|
|
72
72
|
}>;
|
|
73
73
|
|
|
74
|
+
/** Integration configuration for Azure Blob Storage */
|
|
75
|
+
azureBlobStorage?: Array<{
|
|
76
|
+
/**
|
|
77
|
+
* The name of the Azure Storage Account, e.g., "mystorageaccount".
|
|
78
|
+
*/
|
|
79
|
+
accountName?: string;
|
|
80
|
+
|
|
81
|
+
/**
|
|
82
|
+
* The primary or secondary key for the Azure Storage Account.
|
|
83
|
+
* Only required if connectionString or SAS token are not specified.
|
|
84
|
+
* @visibility secret
|
|
85
|
+
*/
|
|
86
|
+
accountKey?: string;
|
|
87
|
+
|
|
88
|
+
/**
|
|
89
|
+
* A Shared Access Signature (SAS) token for limited access to resources.
|
|
90
|
+
* @visibility secret
|
|
91
|
+
*/
|
|
92
|
+
sasToken?: string;
|
|
93
|
+
|
|
94
|
+
/**
|
|
95
|
+
* A full connection string for the Azure Storage Account.
|
|
96
|
+
* This includes the account name, key, and endpoint details.
|
|
97
|
+
* @visibility secret
|
|
98
|
+
*/
|
|
99
|
+
connectionString?: string;
|
|
100
|
+
|
|
101
|
+
/**
|
|
102
|
+
* Optional endpoint suffix for custom domains or sovereign clouds.
|
|
103
|
+
* e.g., "core.windows.net" for public Azure or "core.usgovcloudapi.net" for US Government cloud.
|
|
104
|
+
*/
|
|
105
|
+
endpointSuffix?: string;
|
|
106
|
+
|
|
107
|
+
/**
|
|
108
|
+
* Optional endpoint URL for custom domain. Uses default if not provided.
|
|
109
|
+
* @visibility frontend
|
|
110
|
+
*/
|
|
111
|
+
endpoint?: string;
|
|
112
|
+
/**
|
|
113
|
+
* Optional credential to use for Azure Active Directory authentication.
|
|
114
|
+
* @deepVisibility secret
|
|
115
|
+
*/
|
|
116
|
+
aadCredential?: {
|
|
117
|
+
/**
|
|
118
|
+
* The client ID of the Azure AD application.
|
|
119
|
+
*/
|
|
120
|
+
clientId: string;
|
|
121
|
+
|
|
122
|
+
/**
|
|
123
|
+
* The tenant ID for Azure AD.
|
|
124
|
+
*/
|
|
125
|
+
tenantId: string;
|
|
126
|
+
|
|
127
|
+
/**
|
|
128
|
+
* The client secret for the Azure AD application.
|
|
129
|
+
*/
|
|
130
|
+
clientSecret: string;
|
|
131
|
+
};
|
|
132
|
+
}>;
|
|
133
|
+
|
|
74
134
|
/**
|
|
75
135
|
* Integration configuration for Bitbucket
|
|
76
136
|
* @deprecated replaced by bitbucketCloud and bitbucketServer
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/integration",
|
|
3
|
-
"version": "1.18.
|
|
3
|
+
"version": "1.18.1-next.1",
|
|
4
4
|
"description": "Helpers for managing integrations towards external systems",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "common-library"
|
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@azure/identity": "^4.0.0",
|
|
41
41
|
"@azure/storage-blob": "^12.5.0",
|
|
42
|
-
"@backstage/config": "
|
|
43
|
-
"@backstage/errors": "
|
|
42
|
+
"@backstage/config": "1.3.4-next.0",
|
|
43
|
+
"@backstage/errors": "1.2.7",
|
|
44
44
|
"@octokit/auth-app": "^4.0.0",
|
|
45
45
|
"@octokit/rest": "^19.0.3",
|
|
46
46
|
"cross-fetch": "^4.0.0",
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"luxon": "^3.0.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@backstage/cli": "
|
|
53
|
-
"@backstage/config-loader": "
|
|
52
|
+
"@backstage/cli": "0.34.4-next.1",
|
|
53
|
+
"@backstage/config-loader": "1.10.4-next.0",
|
|
54
54
|
"@types/luxon": "^3.0.0",
|
|
55
55
|
"msw": "^1.0.0"
|
|
56
56
|
},
|