fix(deps): bump azure-pipelines-task-lib to 5.2.11 to clear vulns#20
Merged
Conversation
airadier
approved these changes
Jun 18, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The Azure DevOps extension shipped a vulnerable
azure-pipelines-task-lib@^4.10.0, which a prospect flagged before adopting it.npm auditreported 5 vulns (2 high, 3 moderate), all transitive through the task lib: minimatch ReDoS (high), follow-redirects auth-header leak, brace-expansion ReDoS, and a uuid bounds-check issue.Bumping the lib to the latest stable
5.2.11clears the high + most moderate findings. v5 is the correct target since the task already runs on theNode20_1execution handler. The TS API used by the task (getInput,setResult,tool,ToolRunner, …) is unchanged across v4→v5 andtsccompiles clean.follow-redirects/brace-expansionwere patched via lockfile refresh. Both lockfiles regenerated.Remaining: 1 moderate
uuidadvisory (GHSA-w5hq-g745-h8pq) is left and non-exploitable. task-lib pinsuuid ^3.0.1and callsuuidV4()with nobufarg (vault.js:67); the advisory only affects v3/v5/v6 with abufargument. The only patched line is uuid 11.1.1, which dropped therequire('uuid/v4')deep-import task-lib depends on, so an override would break the lib.