Features
- Added PR opening script (#3302)
- Decode %AZP25 to % by default (#3303)
- Introduce enforcement mode for task restrictions (#3329)
Bugs
- Revert "Self-hosted agent cleaning source folder (#3237)" (#3297)
- Fix the triggering build logic for Download Pipeline Artifact (#3313)
- Updated Git version to 2.30.2 to solve vulnerability #3325 (we can't upgrade to 2.31.0 for now because of reasons explained in #3344; we'll do that as soon as our Windows VMs start using 2.31.0)
Misc
Agent Downloads
Package | |
---|---|
Windows x64 | vsts-agent-win-x64-2.184.2.zip |
Windows x86 | vsts-agent-win-x86-2.184.2.zip |
macOS | vsts-agent-osx-x64-2.184.2.tar.gz |
Linux x64 | vsts-agent-linux-x64-2.184.2.tar.gz |
Linux ARM | vsts-agent-linux-arm-2.184.2.tar.gz |
Linux ARM64 | vsts-agent-linux-arm64-2.184.2.tar.gz |
RHEL 6 x64 | vsts-agent-rhel.6-x64-2.184.2.tar.gz |
After Download:
Windows x64
C:\> mkdir myagent && cd myagent
C:\myagent> Add-Type -AssemblyName System.IO.Compression.FileSystem ; [System.IO.Compression.ZipFile]::ExtractToDirectory("$HOME\Downloads\vsts-agent-win-x64-2.184.2.zip", "$PWD")
Windows x86
C:\> mkdir myagent && cd myagent
C:\myagent> Add-Type -AssemblyName System.IO.Compression.FileSystem ; [System.IO.Compression.ZipFile]::ExtractToDirectory("$HOME\Downloads\vsts-agent-win-x86-2.184.2.zip", "$PWD")
macOS
~/$ mkdir myagent && cd myagent
~/myagent$ tar xzf ~/Downloads/vsts-agent-osx-x64-2.184.2.tar.gz
Linux x64
~/$ mkdir myagent && cd myagent
~/myagent$ tar xzf ~/Downloads/vsts-agent-linux-x64-2.184.2.tar.gz
Linux ARM
~/$ mkdir myagent && cd myagent
~/myagent$ tar xzf ~/Downloads/vsts-agent-linux-arm-2.184.2.tar.gz
Linux ARM64
~/$ mkdir myagent && cd myagent
~/myagent$ tar xzf ~/Downloads/vsts-agent-linux-arm64-2.184.2.tar.gz
RHEL 6 x64
~/$ mkdir myagent && cd myagent
~/myagent$ tar xzf ~/Downloads/vsts-agent-rhel.6-x64-2.184.2.tar.gz
Alternate Agent Downloads
This following alternate packages do not include Node 6 and are only suitable for users who do not use Node 6 dependent tasks.
See notes on Node version support for more details.
Package | |
---|---|
Windows x64 | pipelines-agent-win-x64-2.184.2.zip |
Windows x86 | pipelines-agent-win-x86-2.184.2.zip |
macOS | pipelines-agent-osx-x64-2.184.2.tar.gz |
Linux x64 | pipelines-agent-linux-x64-2.184.2.tar.gz |
Linux ARM | pipelines-agent-linux-arm-2.184.2.tar.gz |
Linux ARM64 | pipelines-agent-linux-arm64-2.184.2.tar.gz |
RHEL 6 x64 | pipelines-agent-rhel.6-x64-2.184.2.tar.gz |