Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p

### Changed

- Improves editor revision navigation ([#4200](https://github.com/gitkraken/vscode-gitlens/issues/4200))
- Improves editor revision navigation ([#4207](https://github.com/gitkraken/vscode-gitlens/issues/4207))

### Fixed

- Fixes Incorrect PR Link Across Azure DevOps Projects ([#3218](https://github.com/gitkraken/vscode-gitlens/issues/3218))

## [17.0.1] - 2025-04-03

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -444,6 +444,7 @@ A big thanks to the people that have contributed to this project 🙏❤️:
- Jean Pierre ([@jeanp413](https://github.com/jeanp413)) — [contributions](https://github.com/gitkraken/vscode-gitlens/commits?author=jeanp413)
- Dawn Hwang ([@hwangh95](https://github.com/hwangh95)) — [contributions](https://github.com/gitkraken/vscode-gitlens/commits?author=hwangh95)
- Emmanuel Ferdman ([@emmanuel-ferdman](https://github.com/emmanuel-ferdman)) — [contributions](https://github.com/gitkraken/vscode-gitlens/commits?author=emmanuel-ferdman)
- Jordon Kashanchi ([@jordonkash](https://github.com/JordonKash)) — [contributions](https://github.com/gitkraken/vscode-gitlens/commits?author=jordonkash)

Also special thanks to the people that have provided support, testing, brainstorming, etc:

Expand Down
2 changes: 1 addition & 1 deletion src/plus/integrations/providers/azure/azure.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export class AzureDevOpsApi implements Disposable {
const pr = prResult?.value.find(pr => pr.sourceRefName.endsWith(branch));
if (pr == null) return undefined;

return fromAzurePullRequest(pr, provider, owner, projectName);
return fromAzurePullRequest(pr, provider, owner);
} catch (ex) {
Logger.error(ex, scope);
return undefined;
Expand Down
3 changes: 1 addition & 2 deletions src/plus/integrations/providers/azure/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,6 @@ export function fromAzurePullRequest(
pr: AzurePullRequest,
provider: Provider,
orgName: string,
projectName: string,
): PullRequest {
const url = new URL(pr.url);
return new PullRequest(
Expand Down Expand Up @@ -531,7 +530,7 @@ export function fromAzurePullRequest(
undefined,
{
id: pr.repository?.project?.id,
name: projectName,
name: pr.repository.project.name,
resourceId: '', // TODO: This is a workaround until we can get the org id here.
resourceName: orgName,
},
Expand Down