@backstage/integration 1.2.2-next.3 → 1.3.0-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 CHANGED
@@ -1,5 +1,53 @@
1
1
  # @backstage/integration
2
2
 
3
+ ## 1.3.0-next.1
4
+
5
+ ### Minor Changes
6
+
7
+ - ad35364e97: feat(techdocs): add edit button support for bitbucketServer
8
+
9
+ ### Patch Changes
10
+
11
+ - 1f27d83933: Fixed bug in getGitLabFileFetchUrl where a target whose path did not contain the
12
+ `/-/` scope would result in a fetch URL that did not support
13
+ private-token-based authentication.
14
+
15
+ ## 1.3.0-next.0
16
+
17
+ ### Minor Changes
18
+
19
+ - 593dea6710: Add support for Basic Auth for Bitbucket Server.
20
+
21
+ ### Patch Changes
22
+
23
+ - 163243a4d1: Handle incorrect return type from Octokit paginate plugin to resolve reading URLs from GitHub
24
+ - c4b460a47d: Avoid double encoding of the file path in `getBitbucketDownloadUrl`
25
+ - 29f782eb37: Updated dependency `@types/luxon` to `^3.0.0`.
26
+
27
+ ## 1.2.2
28
+
29
+ ### Patch Changes
30
+
31
+ - 9de15a41d7: Upgrade @octokit/rest to 19.0.3
32
+ - a70869e775: Updated dependency `msw` to `^0.43.0`.
33
+ - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`.
34
+ - 8006d0f9bf: Updated dependency `msw` to `^0.44.0`.
35
+ - 1f29047bad: Updated dependency `@octokit/auth-app` to `^4.0.0`.
36
+ - e2d7b76f43: Upgrade git-url-parse to 12.0.0.
37
+
38
+ Motivation for upgrade is transitively upgrading parse-url which is vulnerable
39
+ to several CVEs detected by Snyk.
40
+
41
+ - SNYK-JS-PARSEURL-2935944
42
+ - SNYK-JS-PARSEURL-2935947
43
+ - SNYK-JS-PARSEURL-2936249
44
+
45
+ - 8829e175f2: Allow frontend visibility for `integrations` itself.
46
+ - 954a94f52f: Support self-hosted gitlab installations with relative URL.
47
+ - 4df3390795: Avoid double encoding of the file path in `getBitbucketServerDownloadUrl`
48
+ - Updated dependencies
49
+ - @backstage/errors@1.1.0
50
+
3
51
  ## 1.2.2-next.3
4
52
 
5
53
  ### 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