@backstage/integration 1.2.2-next.2 → 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,14 @@
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
+
3
12
  ## 1.2.2-next.2
4
13
 
5
14
  ### 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) {