@backstage/integration 1.2.2-next.0 → 1.2.2-next.3

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,34 @@
1
1
  # @backstage/integration
2
2
 
3
+ ## 1.2.2-next.3
4
+
5
+ ### Patch Changes
6
+
7
+ - a70869e775: Updated dependency `msw` to `^0.43.0`.
8
+ - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`.
9
+ - 1f29047bad: Updated dependency `@octokit/auth-app` to `^4.0.0`.
10
+ - 4df3390795: Avoid double encoding of the file path in `getBitbucketServerDownloadUrl`
11
+
12
+ ## 1.2.2-next.2
13
+
14
+ ### Patch Changes
15
+
16
+ - e2d7b76f43: Upgrade git-url-parse to 12.0.0.
17
+
18
+ Motivation for upgrade is transitively upgrading parse-url which is vulnerable
19
+ to several CVEs detected by Snyk.
20
+
21
+ - SNYK-JS-PARSEURL-2935944
22
+ - SNYK-JS-PARSEURL-2935947
23
+ - SNYK-JS-PARSEURL-2936249
24
+
25
+ ## 1.2.2-next.1
26
+
27
+ ### Patch Changes
28
+
29
+ - Updated dependencies
30
+ - @backstage/errors@1.1.0-next.0
31
+
3
32
  ## 1.2.2-next.0
4
33
 
5
34
  ### Patch Changes
package/dist/index.cjs.js CHANGED
@@ -739,7 +739,7 @@ async function getBitbucketServerDownloadUrl(url, config) {
739
739
  if (!branch) {
740
740
  branch = await getBitbucketServerDefaultBranch(url, config);
741
741
  }
742
- const path = filepath ? `&path=${encodeURIComponent(filepath)}` : "";
742
+ const path = filepath ? `&path=${encodeURIComponent(decodeURIComponent(filepath))}` : "";
743
743
  return `${config.apiBaseUrl}/projects/${project}/repos/${repoName}/archive?format=tgz&at=${branch}&prefix=${project}-${repoName}${path}`;
744
744
  }
745
745
  function getBitbucketServerFileFetchUrl(url, config) {