@backstage/integration 1.2.2-next.2 → 1.3.0-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 +45 -0
- package/config.d.ts +10 -0
- package/dist/index.cjs.js +233 -72
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +25 -1
- package/dist/index.esm.js +233 -73
- package/dist/index.esm.js.map +1 -1
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,50 @@
|
|
|
1
1
|
# @backstage/integration
|
|
2
2
|
|
|
3
|
+
## 1.3.0-next.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 593dea6710: Add support for Basic Auth for Bitbucket Server.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 163243a4d1: Handle incorrect return type from Octokit paginate plugin to resolve reading URLs from GitHub
|
|
12
|
+
- c4b460a47d: Avoid double encoding of the file path in `getBitbucketDownloadUrl`
|
|
13
|
+
- 29f782eb37: Updated dependency `@types/luxon` to `^3.0.0`.
|
|
14
|
+
|
|
15
|
+
## 1.2.2
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- 9de15a41d7: Upgrade @octokit/rest to 19.0.3
|
|
20
|
+
- a70869e775: Updated dependency `msw` to `^0.43.0`.
|
|
21
|
+
- 4e9a90e307: Updated dependency `luxon` to `^3.0.0`.
|
|
22
|
+
- 8006d0f9bf: Updated dependency `msw` to `^0.44.0`.
|
|
23
|
+
- 1f29047bad: Updated dependency `@octokit/auth-app` to `^4.0.0`.
|
|
24
|
+
- e2d7b76f43: Upgrade git-url-parse to 12.0.0.
|
|
25
|
+
|
|
26
|
+
Motivation for upgrade is transitively upgrading parse-url which is vulnerable
|
|
27
|
+
to several CVEs detected by Snyk.
|
|
28
|
+
|
|
29
|
+
- SNYK-JS-PARSEURL-2935944
|
|
30
|
+
- SNYK-JS-PARSEURL-2935947
|
|
31
|
+
- SNYK-JS-PARSEURL-2936249
|
|
32
|
+
|
|
33
|
+
- 8829e175f2: Allow frontend visibility for `integrations` itself.
|
|
34
|
+
- 954a94f52f: Support self-hosted gitlab installations with relative URL.
|
|
35
|
+
- 4df3390795: Avoid double encoding of the file path in `getBitbucketServerDownloadUrl`
|
|
36
|
+
- Updated dependencies
|
|
37
|
+
- @backstage/errors@1.1.0
|
|
38
|
+
|
|
39
|
+
## 1.2.2-next.3
|
|
40
|
+
|
|
41
|
+
### Patch Changes
|
|
42
|
+
|
|
43
|
+
- a70869e775: Updated dependency `msw` to `^0.43.0`.
|
|
44
|
+
- 4e9a90e307: Updated dependency `luxon` to `^3.0.0`.
|
|
45
|
+
- 1f29047bad: Updated dependency `@octokit/auth-app` to `^4.0.0`.
|
|
46
|
+
- 4df3390795: Avoid double encoding of the file path in `getBitbucketServerDownloadUrl`
|
|
47
|
+
|
|
3
48
|
## 1.2.2-next.2
|
|
4
49
|
|
|
5
50
|
### Patch Changes
|
package/config.d.ts
CHANGED
|
@@ -92,6 +92,16 @@ export interface Config {
|
|
|
92
92
|
* @visibility secret
|
|
93
93
|
*/
|
|
94
94
|
token?: string;
|
|
95
|
+
/**
|
|
96
|
+
* Username used to authenticate requests with Basic Auth.
|
|
97
|
+
* @visibility secret
|
|
98
|
+
*/
|
|
99
|
+
username?: string;
|
|
100
|
+
/**
|
|
101
|
+
* Password (or token as password) used to authenticate requests with Basic Auth.
|
|
102
|
+
* @visibility secret
|
|
103
|
+
*/
|
|
104
|
+
password?: string;
|
|
95
105
|
/**
|
|
96
106
|
* The base url for the Bitbucket Server API, for example https://<host>/rest/api/1.0
|
|
97
107
|
* @visibility frontend
|