@backstage/integration 1.2.2 → 1.3.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 +40 -0
- package/config.d.ts +10 -0
- package/dist/index.cjs.js +234 -104
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +17 -1
- package/dist/index.esm.js +234 -104
- package/dist/index.esm.js.map +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,45 @@
|
|
|
1
1
|
# @backstage/integration
|
|
2
2
|
|
|
3
|
+
## 1.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 593dea6710: Add support for Basic Auth for Bitbucket Server.
|
|
8
|
+
- ad35364e97: feat(techdocs): add edit button support for bitbucketServer
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- 163243a4d1: Handle incorrect return type from Octokit paginate plugin to resolve reading URLs from GitHub
|
|
13
|
+
- c4b460a47d: Avoid double encoding of the file path in `getBitbucketDownloadUrl`
|
|
14
|
+
- 29f782eb37: Updated dependency `@types/luxon` to `^3.0.0`.
|
|
15
|
+
- 1f27d83933: Fixed bug in getGitLabFileFetchUrl where a target whose path did not contain the
|
|
16
|
+
`/-/` scope would result in a fetch URL that did not support
|
|
17
|
+
private-token-based authentication.
|
|
18
|
+
|
|
19
|
+
## 1.3.0-next.1
|
|
20
|
+
|
|
21
|
+
### Minor Changes
|
|
22
|
+
|
|
23
|
+
- ad35364e97: feat(techdocs): add edit button support for bitbucketServer
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- 1f27d83933: Fixed bug in getGitLabFileFetchUrl where a target whose path did not contain the
|
|
28
|
+
`/-/` scope would result in a fetch URL that did not support
|
|
29
|
+
private-token-based authentication.
|
|
30
|
+
|
|
31
|
+
## 1.3.0-next.0
|
|
32
|
+
|
|
33
|
+
### Minor Changes
|
|
34
|
+
|
|
35
|
+
- 593dea6710: Add support for Basic Auth for Bitbucket Server.
|
|
36
|
+
|
|
37
|
+
### Patch Changes
|
|
38
|
+
|
|
39
|
+
- 163243a4d1: Handle incorrect return type from Octokit paginate plugin to resolve reading URLs from GitHub
|
|
40
|
+
- c4b460a47d: Avoid double encoding of the file path in `getBitbucketDownloadUrl`
|
|
41
|
+
- 29f782eb37: Updated dependency `@types/luxon` to `^3.0.0`.
|
|
42
|
+
|
|
3
43
|
## 1.2.2
|
|
4
44
|
|
|
5
45
|
### 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
|