@backstage/integration 1.2.1-next.1 → 1.2.1-next.2

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,11 @@
1
1
  # @backstage/integration
2
2
 
3
+ ## 1.2.1-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - e37c71b5a4: Updated to support deployments of Azure DevOps Server under TFS or similar sub path
8
+
3
9
  ## 1.2.1-next.1
4
10
 
5
11
  ### Patch Changes
package/dist/index.cjs.js CHANGED
@@ -196,6 +196,10 @@ const _AzureUrl = class {
196
196
  owner = parts[1];
197
197
  project = parts[2];
198
198
  repo = parts[4];
199
+ } else if (parts[4] === "_git") {
200
+ owner = `${parts[1]}/${parts[2]}`;
201
+ project = parts[3];
202
+ repo = parts[5];
199
203
  }
200
204
  if (!owner || !project || !repo) {
201
205
  throw new Error("Azure URL must point to a git repository");