Compare commits
20
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f354a7d15a | ||
|
|
7dd3415d1d | ||
|
|
430fcac7a5 | ||
|
|
e2da3936c0 | ||
|
|
fa5cbc8929 | ||
|
|
60cea812f9 | ||
|
|
b3bb8b13dd | ||
|
|
c3aee9078b | ||
|
|
660b5fa27d | ||
|
|
d20c00ea50 | ||
|
|
99b185488c | ||
|
|
17e674feb8 | ||
|
|
91c9bd5ec9 | ||
|
|
8db7d9b280 | ||
|
|
f990779ae3 | ||
|
|
893bd268b3 | ||
|
|
8ea6260475 | ||
|
|
4c9f589a74 | ||
|
|
020404c5ec | ||
|
|
7c31b32cd0 |
@@ -0,0 +1,339 @@
|
||||
# GitHub Actions Runner Images
|
||||
|
||||
The runner-images project uses [Packer](https://www.packer.io/) to generate disk images for Windows 2022/2025 and Ubuntu 22.04/24.04.
|
||||
|
||||
Each image is configured by a HCL2 Packer template that specifies where to build the image (Azure, in this case),
|
||||
and what steps to run to install software and prepare the disk.
|
||||
|
||||
The Packer process initializes a connection to the Azure subscription using Azure CLI and creates temporary resources
|
||||
required for the build process: a resource group, network interfaces and a virtual machine from the "clean" image specified in the template.
|
||||
|
||||
If the VM deployment succeeds, Packer connects to it using SSH or WinRM and begins executing installation steps from the template one-by-one.
|
||||
If any step fails, image generation is aborted, and the temporary VM is terminated.
|
||||
Packer also attempts to clean up all the temporary resources it created (unless otherwise configured).
|
||||
|
||||
After successful completion of all installation steps, Packer creates a managed image from the temporary VM's disk and deletes the VM.
|
||||
|
||||
- [Build Agent Preparation](#build-agent-preparation)
|
||||
- [Manual image generation](#manual-image-generation)
|
||||
- [Manual Image Generation Customization](#manual-image-generation-customization)
|
||||
- [Network Security](#network-security)
|
||||
- [Azure Subscription Authentication](#azure-subscription-authentication)
|
||||
- [Generated Machine Deployment](#generated-machine-deployment)
|
||||
- [Automated image generation](#automated-image-generation)
|
||||
- [GitHub Actions CI Workflows](#github-actions-ci-workflows)
|
||||
- [Running Packer directly in your own pipeline](#running-packer-directly-in-your-own-pipeline)
|
||||
- [Required variables](#required-variables)
|
||||
- [Optional variables](#optional-variables)
|
||||
- [Builder variables](#builder-variables)
|
||||
- [Toolset](#toolset)
|
||||
- [Post-generation scripts](#post-generation-scripts)
|
||||
- [Running scripts](#running-scripts)
|
||||
- [Script Details: Ubuntu](#script-details-ubuntu)
|
||||
- [Script Details: Windows](#script-details-windows)
|
||||
|
||||
## Build Agent Preparation
|
||||
|
||||
The build agent is a machine where the Packer process will be started.
|
||||
You can use any physical or virtual machine running Windows or Linux OS.
|
||||
Of course, you may also use an [Azure VM](https://docs.microsoft.com/en-us/azure/virtual-machines/windows/quick-create-cli).
|
||||
In any case, you will need these software installed:
|
||||
|
||||
- Packer 1.8.2 or higher.
|
||||
|
||||
Download and install it manually from [here](https://www.packer.io/downloads) or use [Chocolatey](https://chocolatey.org/):
|
||||
|
||||
```powershell
|
||||
choco install packer
|
||||
```
|
||||
|
||||
- Git.
|
||||
|
||||
For Linux - install the latest version from your distro's package repo.
|
||||
|
||||
For Windows - download and install it from [here](https://gitforwindows.org/) or use [Chocolatey](https://chocolatey.org/):
|
||||
|
||||
```powershell
|
||||
choco install git -params '"/GitAndUnixToolsOnPath"'
|
||||
```
|
||||
|
||||
- Powershell 5.0 or higher.
|
||||
|
||||
In Windows you already have it.
|
||||
|
||||
For Linux follow instructions [here](https://learn.microsoft.com/en-us/windows-server/administration/linux-package-repository-for-microsoft-software)
|
||||
to add Microsoft's Linux Software Repository and then install the `powershell` package.
|
||||
|
||||
- Azure CLI.
|
||||
|
||||
Follow the instructions [here](https://docs.microsoft.com/en-us/cli/azure/install-azure-cli).
|
||||
Or if you use Windows, you may run this command in Powershell instead:
|
||||
|
||||
```powershell
|
||||
Invoke-WebRequest -Uri https://aka.ms/installazurecliwindows -OutFile .\AzureCLI.msi
|
||||
Start-Process msiexec.exe -Wait -ArgumentList '/I AzureCLI.msi /quiet'; rm .\AzureCLI.msi
|
||||
```
|
||||
|
||||
## Manual image generation
|
||||
|
||||
This repository includes a script that assists in generating images in Azure.
|
||||
All you need is an Azure subscription, a resource group in that subscription and a build agent configured as described above.
|
||||
|
||||
All the commands below should be executed in PowerShell.
|
||||
|
||||
First, clone the runner-images repository and set the current directory to it:
|
||||
|
||||
```powershell
|
||||
git clone https://github.com/actions/runner-images.git
|
||||
Set-Location runner-images
|
||||
```
|
||||
|
||||
Then, import the [GenerateResourcesAndImage](../../helpers/GenerateResourcesAndImage.ps1) script from the `helpers` subdirectory:
|
||||
|
||||
```powershell
|
||||
Import-Module .\helpers\GenerateResourcesAndImage.ps1
|
||||
```
|
||||
|
||||
Finally, run the `GenerateResourcesAndImage` function, setting the mandatory arguments: image type and where to build and store the resulting managed image:
|
||||
|
||||
- `SubscriptionId` - your Azure Subscription ID;
|
||||
- `ResourceGroupName` - the name of the resource group that will store the resulting artifact (e.g., "imagegen-test").
|
||||
The resource group must already exist in your Azure subscription;
|
||||
- `AzureLocation` - the location where resources will be created (e.g., "East US");
|
||||
- `ImageType` - the type of image to build (valid options are "Windows2022", "Windows2025", "Windows2025_vs2026", "Ubuntu2204", "Ubuntu2404").
|
||||
|
||||
This function automatically creates all required Azure resources and initiates the Packer image generation for the selected image type.
|
||||
|
||||
When the image is ready, you may proceed to [deployment](#generated-machine-deployment).
|
||||
|
||||
## Manual Image Generation Customization
|
||||
|
||||
The `GenerateResourcesAndImage` function accepts a number of arguments that may assist you in generating an image in your specific environment.
|
||||
|
||||
For example, you may want all the resources involved in the image generation process to be tagged.
|
||||
In this case, pass a HashTable of tags as a value for the `Tags` parameter.
|
||||
|
||||
If you don't want the function to authenticate interactively, you should create a Service Principal and invoke the function with the parameters `AzureClientId`, `AzureClientSecret` and `AzureTenantId`.
|
||||
You can find more details in the [corresponding section below](#azure-subscription-authentication).
|
||||
|
||||
Use `get-help GenerateResourcesAndImage -Detailed` for the complete list of available parameters.
|
||||
|
||||
### Network Security
|
||||
|
||||
To connect to a temporary virtual machine, Packer uses WinRM or SSH.
|
||||
|
||||
If your build agent is located outside of the Azure subscription where the temporary VM is created, a public network interface and public IP address are used.
|
||||
Make sure that firewalls are configured properly and that WinRM (TCP port 5986) and SSH (TCP port 22) connections are allowed both outgoing for the build agent and incoming for the temporary VM.
|
||||
Also, if you don't want the temporary VM to be accessible from everywhere, set the `RestrictToAgentIpAddress` parameter value to `$true`
|
||||
to set up firewall rules allowing access only from your build agent's public IP address.
|
||||
|
||||
If your build agent and temporary VM are in the same subscription, you can configure Packer to connect using a private virtual network.
|
||||
To achieve this, set proper values for the environment variables `VNET_RESOURCE_GROUP`, `VNET_NAME` and `VNET_SUBNET`.
|
||||
|
||||
### Azure Subscription Authentication
|
||||
|
||||
Packer uses a Service Principal to authenticate in Azure infrastructure.
|
||||
For more information about Service Principals, refer to the
|
||||
[Azure documentation](https://docs.microsoft.com/en-us/azure/active-directory/develop/howto-create-service-principal-portal).
|
||||
|
||||
The `GenerateResourcesAndImage` function is able to create a Service Principal to be used by Packer.
|
||||
It uses the Connect-AzAccount cmdlet that invokes an interactive authentication process by default.
|
||||
If you don't want to use interactive authentication, you should create a Service Principal with full read-write permissions for the selected Azure subscription on your own
|
||||
and provide proper values for the parameters `AzureClientId`, `AzureClientSecret` and `AzureTenantId`.
|
||||
|
||||
Here is an example of how to create a Service Principal using the Az PowerShell module:
|
||||
|
||||
```powershell
|
||||
$credentials = [Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.MicrosoftGraphPasswordCredential]@{
|
||||
StartDateTime = Get-Date
|
||||
EndDateTime = (Get-Date).AddDays(7)
|
||||
}
|
||||
|
||||
$sp = New-AzADServicePrincipal -DisplayName "imagegen-app"
|
||||
$appCred = New-AzADAppCredential -ApplicationId $sp.AppId -PasswordCredentials $credentials
|
||||
|
||||
Start-Sleep -Seconds 30
|
||||
New-AzRoleAssignment -RoleDefinitionName "Contributor" -PrincipalId $sp.Id
|
||||
Start-Sleep -Seconds 30
|
||||
|
||||
@{
|
||||
ClientId = $sp.AppId
|
||||
ClientSecret = $appCred.SecretText
|
||||
TenantId = (Get-AzSubscription -SubscriptionId $SubscriptionId).TenantId
|
||||
}
|
||||
```
|
||||
|
||||
## Generated Machine Deployment
|
||||
|
||||
After successful image generation, a Virtual Machine can be created from the generated image using the [CreateAzureVMFromPackerTemplate](../../helpers/CreateAzureVMFromPackerTemplate.ps1) script.
|
||||
|
||||
```powershell
|
||||
Import-Module .\helpers\CreateAzureVMFromPackerTemplate.ps1
|
||||
|
||||
CreateAzureVMFromPackerTemplate -SubscriptionId {YourSubscriptionId} -ResourceGroupName {ResourceGroupName} -ManagedImageName "Runner-Image-Ubuntu2204" -VirtualMachineName "testvm1" -AdminUsername "shady1" -AdminPassword "SomeSecurePassword1" -AzureLocation "eastus"
|
||||
```
|
||||
|
||||
Where:
|
||||
|
||||
- `SubscriptionId` - the Azure subscription ID where resources will be created;
|
||||
- `ResourceGroupName` - the Azure resource group name where the Azure virtual machine will be created;
|
||||
- `ManagedImageName` - the name of the managed image to be used for the virtual machine creation;
|
||||
- `VirtualMachineName` - the name of the virtual machine to be generated;
|
||||
- `AdminUserName` - the administrator username for the virtual machine to be created;
|
||||
- `AdminPassword` - the administrator password for the virtual machine to be created;
|
||||
- `AzureLocation` - the location where the Azure virtual machine will be provisioned (e.g., "eastus").
|
||||
|
||||
This function creates an Azure VM and generates network resources in Azure to make the VM accessible.
|
||||
|
||||
## Automated image generation
|
||||
|
||||
### GitHub Actions CI Workflows
|
||||
|
||||
Image builds are automated through GitHub Actions. The pipelines were migrated from Azure DevOps to GitHub Actions.
|
||||
|
||||
Each image type has a dedicated workflow file in `.github/workflows/` that is triggered when a specific label is applied to a pull request targeting the relevant image path (`images/ubuntu/**` or `images/windows/**`):
|
||||
|
||||
| Workflow file | Trigger label(s) |
|
||||
|---|---|
|
||||
| `ubuntu2204.yml` | `CI ubuntu-all`, `CI ubuntu-2204` |
|
||||
| `ubuntu2404.yml` | `CI ubuntu-all`, `CI ubuntu-2404` |
|
||||
| `windows2022.yml` | `CI windows-all`, `CI windows-2022` |
|
||||
| `windows2025.yml` | `CI windows-all`, `CI windows-2025` |
|
||||
| `windows2025-vs2026.yml` | `CI windows-all`, `CI windows-2025-vs2026` |
|
||||
|
||||
Each of these workflows calls the reusable `trigger-ubuntu-win-build.yml` workflow, which:
|
||||
|
||||
1. Dispatches a `repository_dispatch` event to the CI repository (configured via the `CI_REPO` variable and `CI_PR_TOKEN` secret).
|
||||
2. Waits for the resulting workflow run in the CI repository to complete.
|
||||
|
||||
The actual image build in the CI repository is performed by the [`images.CI/linux-and-win/build-image.ps1`](../../images.CI/linux-and-win/build-image.ps1) script, which invokes Packer with the appropriate variables.
|
||||
|
||||
### Running Packer directly in your own pipeline
|
||||
|
||||
If you want to run image builds in your own CI/CD setup without using the trigger mechanism above, you can invoke Packer directly. You will need:
|
||||
|
||||
- a build agent configured as described in the [Build agent preparation](#build-agent-preparation) section;
|
||||
- an Azure subscription and Service Principal configured as described in the [Azure subscription authentication](#azure-subscription-authentication) section;
|
||||
- a resource group created in your Azure subscription where the managed image will be stored;
|
||||
- a string to be used as a password for the user used to install software (Windows only).
|
||||
|
||||
Then, invoke Packer with commands similar to the following:
|
||||
|
||||
```powershell
|
||||
packer plugins install github.com/hashicorp/azure 2.3.3
|
||||
|
||||
packer build -only "$BuildName*" `
|
||||
-var "subscription_id=$SubscriptionId" `
|
||||
-var "client_id=$ClientId" `
|
||||
-var "client_secret=$ClientSecret" `
|
||||
-var "install_password=$InstallPassword" `
|
||||
-var "location=$Location" `
|
||||
-var "image_os=$ImageOS" `
|
||||
-var "managed_image_name=$ImageName" `
|
||||
-var "managed_image_resource_group_name=$ImageResourceGroupName" `
|
||||
-var "tenant_id=$TenantId" `
|
||||
$TemplatePath
|
||||
```
|
||||
|
||||
Where:
|
||||
|
||||
- `BuildName` - name of the build defined in Packer template's `build{}` block (e.g. "ubuntu-24_04", "windows-2025", "windows-2025-vs2026");
|
||||
- `SubscriptionId` - your Azure Subscription ID;
|
||||
- `ClientId` and `ClientSecret` - Service Principal credentials;
|
||||
- `TenantId` - Azure Tenant ID;
|
||||
- `InstallPassword` - password for the user used to install software (Windows only);
|
||||
- `Location` - location where resources will be created (e.g., "East US");
|
||||
- `ImageOS` - the type of OS that will be deployed as a temporary VM (e.g. "ubuntu24", "win25", "win25-vs2026");
|
||||
- `ImageName` and `ImageResourceGroupName` - name of the resource group where the managed image will be stored;
|
||||
- `TemplatePath` - path to the folder with Packer template files (e.g., "images/windows/templates").
|
||||
|
||||
### Required variables
|
||||
|
||||
The following variables are required to be passed to the Packer process:
|
||||
|
||||
| Template var | Env var | Description
|
||||
| ------------ | ------- | -----------
|
||||
| `subscription_id` | `ARM_SUBSCRIPTION_ID` | The subscription under which the build will be performed.
|
||||
| `client_id` | `ARM_CLIENT_ID` | The Active Directory service principal associated with your builder.
|
||||
| `client_secret` | `ARM_CLIENT_SECRET` | The password or secret for your service principal; may be omitted if `client_cert_path` is set.
|
||||
| `client_cert_path` | `ARM_CLIENT_CERT_PATH` | The location of a PEM file containing a certificate and private key for the service principal; may be omitted if `client_secret` is set.
|
||||
| `location` | `ARM_RESOURCE_LOCATION` | The Azure datacenter in which your VM will be built.
|
||||
| `managed_image_resource_group_name` | `ARM_RESOURCE_GROUP` | The resource group under which the final artifact will be stored.
|
||||
|
||||
### Optional variables
|
||||
|
||||
The following variables are optional:
|
||||
|
||||
- `managed_image_name` - the name of the managed image to create. If not specified, "Runner-Image-{{ImageType}}" will be used;
|
||||
- `build_resource_group_name` - specify an existing resource group to run the build in; by default, a temporary resource group will be created and destroyed as part of the build; if you do not have permission to do so, use `build_resource_group_name` to specify an existing resource group to run the build in;
|
||||
- `object_id` - the object ID for the AAD SP; will be derived from the oAuth token if empty;
|
||||
- `tenant_id` - the Active Directory tenant identifier with which your `client_id` and `subscription_id` are associated; if not specified, `tenant_id` will be looked up using `subscription_id`;
|
||||
- `temp_resource_group_name` - the name assigned to the temporary resource group created during the build; if this value is not set, a random value will be assigned; this resource group is deleted at the end of the build;
|
||||
- `private_virtual_network_with_public_ip` - this value allows you to set a `virtual_network_name` and obtain a public IP; if this value is not set and `virtual_network_name` is defined, Packer is only allowed to be executed from a host on the same subnet / virtual network;
|
||||
- `virtual_network_name` - use a pre-existing virtual network for the VM; this option enables private communication with the VM, no public IP address is used or provisioned (unless you set `private_virtual_network_with_public_ip`);
|
||||
- `virtual_network_resource_group_name` - if `virtual_network_name` is set, this value may also be set; if `virtual_network_name` is set, and this value is not set, the builder attempts to determine the resource group containing the virtual network; if the resource group cannot be found, or it cannot be disambiguated, this value should be set;
|
||||
- `virtual_network_subnet_name` - if `virtual_network_name` is set, this value may also be set; if `virtual_network_name` is set, and this value is not set, the builder attempts to determine the subnet to use with the virtual network; if the subnet cannot be found, or it cannot be disambiguated, this value should be set.
|
||||
|
||||
## Builder variables
|
||||
|
||||
The `builders` section contains variables for the `azure-arm` builder used in the project. Most of the builder variables are inherited from the `user variables` section, however, the variables can be overwritten to adjust image-generation performance.
|
||||
|
||||
- `vm_size` - the size of the VM used for building; this can be changed when you deploy a VM from your image;
|
||||
- `image_os` - the type of OS that will be deployed as a temporary VM;
|
||||
- `image_version` - specify the version of an OS to boot from.
|
||||
|
||||
**Detailed Azure builders documentation can be found in the [packer documentation](https://www.packer.io/docs/builders/azure).**
|
||||
|
||||
## Toolset
|
||||
|
||||
The configuration for some installed software is located in `toolset.json` files. These files define the list of Ruby, Python, Go versions, the list of PowerShell modules and VS components that will be installed on the image. They can be changed if these tools are not required, to reduce image generation time or image size.
|
||||
|
||||
Generated tool versions and details can be found in related projects:
|
||||
|
||||
- [Python](https://github.com/actions/python-versions/)
|
||||
- [Go](https://github.com/actions/go-versions)
|
||||
- [Node](https://github.com/actions/node-versions)
|
||||
|
||||
## Post-generation scripts
|
||||
|
||||
> [!WARNING]
|
||||
> These scripts are intended to be run on a VM deployed in Azure.
|
||||
|
||||
The user, created during the image generation, does not exist in the resulting image. Hence, some configuration files related to the user's home directory need to be changed, as well as the file permissions for some directories. Scripts for that are located in the `post-gen` folder in the repository:
|
||||
|
||||
- Windows: <https://github.com/actions/runner-images/tree/main/images/windows/assets/post-gen>
|
||||
- Linux: <https://github.com/actions/runner-images/tree/main/images/ubuntu/assets/post-gen>
|
||||
|
||||
**Note:** The default user for Linux should have `sudo privileges`.
|
||||
|
||||
The scripts are copied to the image during the generation process to the following paths:
|
||||
|
||||
- Windows: `C:\post-generation`
|
||||
- Linux: `/opt/post-generation`
|
||||
|
||||
### Running scripts
|
||||
|
||||
- Ubuntu
|
||||
|
||||
```bash
|
||||
sudo su -c "find /opt/post-generation -mindepth 1 -maxdepth 1 -type f -name '*.sh' -exec bash {} \;"
|
||||
```
|
||||
|
||||
- Windows
|
||||
|
||||
```powershell
|
||||
Get-ChildItem C:\post-generation -Filter *.ps1 | ForEach-Object { & $_.FullName }
|
||||
```
|
||||
|
||||
### Script Details: Ubuntu
|
||||
|
||||
- **cleanup-logs.sh** - removes all build process logs from the machine;
|
||||
- **environment-variables.sh** - replaces `$HOME` with the default user's home directory for environment variables related to the default user home directory;
|
||||
- **systemd-linger.sh** - enables user session on boot (not just on login) so that user-level systemd services start automatically.
|
||||
|
||||
### Script Details: Windows
|
||||
|
||||
- **GenerateIISExpressCertificate.ps1** - generates and imports a certificate to run applications with IIS Express through HTTPS;
|
||||
- **InternetExplorerConfiguration.ps1** - turns off the Internet Explorer Enhanced Security feature;
|
||||
- **Msys2FirstLaunch.ps1** - initializes the bash user profile in MSYS2;
|
||||
- **VSConfiguration.ps1** - performs initial Visual Studio configuration.
|
||||
@@ -0,0 +1,34 @@
|
||||
# Ubuntu .NET Core Versions
|
||||
|
||||
.NET has changed the recommended install methods for Ubuntu starting from 24.04.
|
||||
|
||||
This document gives an overview of these changes and the impact on the `runner-images`.
|
||||
|
||||
## .NET Core for Ubuntu 22.04
|
||||
|
||||
Ubuntu 22.04 uses the [Microsoft Package repository](https://learn.microsoft.com/en-us/dotnet/core/install/linux-ubuntu-install?tabs=dotnet8&pivots=os-linux-ubuntu-2204) to install .NET deb files built and published by the .NET team.
|
||||
|
||||
## .NET Core Versions from Ubuntu 24.04
|
||||
|
||||
The .NET Core team worked with Canonical so that Ubuntu now provides its own .NET packages via the Ubuntu package feed.
|
||||
|
||||
These are the recommended install path and, as such, what is installed on the image.
|
||||
|
||||
> The release of Ubuntu 24.04 is just around the corner. Canonical-produced .NET 6, 7, and 8 packages will be available on day one, for "Noble Numbat". Microsoft will not be publishing .NET packages to the 24.04 feed at packages.microsoft.com.
|
||||
|
||||
You can read the [full announcement from the .NET team here](https://github.com/dotnet/core/discussions/9258). Below is a brief summary of how this change may impact users of the image.
|
||||
|
||||
### [`Feature Bands`](https://learn.microsoft.com/dotnet/core/porting/versioning-sdk-msbuild-vs)
|
||||
|
||||
Going forward, only the `1xx` feature band will be present in the image because Ubuntu only builds and publishes this band.
|
||||
|
||||
> Most distros, including Ubuntu, stick to the .1xx feature band for the lifetime of a major .NET version. They make this choice because .1xx is (effectively) the "compatibility band". Higher bands can have breaking changes.
|
||||
> This means there will no longer be packages available for .2xx and later feature bands. Such packages have been exclusively available from Microsoft. If users see an incompatibility between .1xx and higher feature bands, we ask that you please report it in the dotnet/sdk repo. [link: dotnet/core discussion](https://github.com/dotnet/core/discussions/9258)
|
||||
|
||||
If you need a higher feature band for your Actions, the recommendation is to use the [`setup-dotnet`](https://github.com/actions/setup-dotnet) action to install the desired version.
|
||||
|
||||
### .NET MAUI
|
||||
|
||||
.NET MAUI is [not included](https://github.com/dotnet/core/discussions/9258#discussioncomment-9548857) in the Ubuntu .NET package. Work to fix this is [ongoing](https://github.com/dotnet/core/discussions/9258#discussioncomment-9548857).
|
||||
|
||||
You should be able to resolve this by using the [`setup-dotnet`](https://github.com/actions/setup-dotnet) action to install the desired version.
|
||||
@@ -166,7 +166,7 @@ Function GenerateResourcesAndImage {
|
||||
[ImageType] $ImageType,
|
||||
[Parameter(Mandatory = $False)]
|
||||
[string] $ManagedImageName = "Runner-Image-$($ImageType)",
|
||||
[Parameter(Mandatory = $True)]
|
||||
[Parameter(Mandatory = $False)]
|
||||
[string] $AzureLocation,
|
||||
[Parameter(Mandatory = $False)]
|
||||
[string] $ImageGenerationRepositoryRoot = $pwd,
|
||||
|
||||
@@ -4,14 +4,14 @@
|
||||
| [[macOS] The macOS 14 Sonoma based runner images will begin deprecation on July 6th and will be fully unsupported by November 2nd for GitHub Actions and Azure DevOps](https://github.com/actions/runner-images/issues/13518) |
|
||||
***
|
||||
# macOS 14
|
||||
- OS Version: macOS 14.8.4 (23J319)
|
||||
- OS Version: macOS 14.8.5 (23J423)
|
||||
- Kernel Version: Darwin 23.6.0
|
||||
- Image Version: 20260302.0252.1
|
||||
- Image Version: 20260330.0357.1
|
||||
|
||||
## Installed Software
|
||||
|
||||
### Language and Runtime
|
||||
- .NET Core SDK: 8.0.101, 8.0.204, 8.0.303, 8.0.418, 9.0.102, 9.0.203, 9.0.311, 10.0.103
|
||||
- .NET Core SDK: 8.0.101, 8.0.204, 8.0.303, 8.0.419, 9.0.102, 9.0.203, 9.0.312, 10.0.103, 10.0.201
|
||||
- Bash 3.2.57(1)-release
|
||||
- Clang/LLVM 15.0.0
|
||||
- Clang/LLVM (Homebrew) 15.0.7 - available on `$(brew --prefix llvm@15)/bin/clang`
|
||||
@@ -21,67 +21,67 @@
|
||||
- GNU Fortran 13 (Homebrew GCC 13.4.0) - available by `gfortran-13` alias
|
||||
- GNU Fortran 14 (Homebrew GCC 14.3.0) - available by `gfortran-14` alias
|
||||
- GNU Fortran 15 (Homebrew GCC 15.2.0_1) - available by `gfortran-15` alias
|
||||
- Kotlin 2.3.10-release-465
|
||||
- Kotlin 2.3.20-release-208
|
||||
- Mono 6.12.0.188
|
||||
- Node.js 20.20.0
|
||||
- Perl 5.42.0
|
||||
- PHP 8.5.3
|
||||
- Node.js 20.20.2
|
||||
- Perl 5.42.1
|
||||
- PHP 8.5.4
|
||||
- Python3 3.14.3
|
||||
- Ruby 3.3.10
|
||||
- Ruby 3.3.11
|
||||
|
||||
### Package Management
|
||||
- Bundler 4.0.7
|
||||
- Bundler 4.0.9
|
||||
- Carthage 0.40.0
|
||||
- CocoaPods 1.16.2
|
||||
- Composer 2.9.5
|
||||
- Homebrew 5.0.15
|
||||
- Homebrew 5.1.1
|
||||
- NPM 10.8.2
|
||||
- NuGet 6.3.1.1
|
||||
- Pip3 26.0 (python 3.14)
|
||||
- Pipx 1.8.0
|
||||
- RubyGems 4.0.7
|
||||
- Vcpkg 2026 (build from commit 62159a45e1)
|
||||
- Pipx 1.11.0
|
||||
- RubyGems 4.0.9
|
||||
- Vcpkg 2026 (build from commit b5d1a94fb7)
|
||||
- Yarn 1.22.22
|
||||
|
||||
### Project Management
|
||||
- Apache Ant 1.10.15
|
||||
- Apache Maven 3.9.12
|
||||
- Gradle 9.3.1
|
||||
- Apache Maven 3.9.14
|
||||
- Gradle 9.4.1
|
||||
|
||||
### Utilities
|
||||
- 7-Zip 17.05
|
||||
- aria2 1.37.0
|
||||
- azcopy 10.32.1
|
||||
- bazel 9.0.0
|
||||
- azcopy 10.32.2
|
||||
- bazel 9.0.1
|
||||
- bazelisk 1.28.1
|
||||
- bsdtar 3.5.3 - available by 'tar' alias
|
||||
- Curl 8.18.0
|
||||
- Curl 8.19.0
|
||||
- Git 2.53.0
|
||||
- Git LFS 3.7.1
|
||||
- GitHub CLI 2.87.3
|
||||
- GitHub CLI 2.89.0
|
||||
- GNU Tar 1.35 - available by 'gtar' alias
|
||||
- GNU Wget 1.25.0
|
||||
- gpg (GnuPG) 2.4.9
|
||||
- gpg (GnuPG) 2.5.18
|
||||
- jq 1.8.1
|
||||
- OpenSSL 1.1.1w 11 Sep 2023
|
||||
- Packer 1.15.0
|
||||
- Packer 1.15.1
|
||||
- pkgconf 2.5.1
|
||||
- Unxip 3.3
|
||||
- yq 4.52.4
|
||||
- yq 4.52.5
|
||||
- zstd 1.5.7
|
||||
- Ninja 1.13.2
|
||||
|
||||
### Tools
|
||||
- AWS CLI 2.34.0
|
||||
- AWS SAM CLI 1.154.0
|
||||
- AWS Session Manager CLI 1.2.779.0
|
||||
- Azure CLI 2.83.0
|
||||
- AWS CLI 2.34.19
|
||||
- AWS SAM CLI 1.157.1
|
||||
- AWS Session Manager CLI 1.2.792.0
|
||||
- Azure CLI 2.84.0
|
||||
- Azure CLI (azure-devops) 1.0.2
|
||||
- Bicep CLI 0.41.2
|
||||
- Cmake 4.2.3
|
||||
- CodeQL Action Bundle 2.24.2
|
||||
- Cmake 4.3.1
|
||||
- CodeQL Action Bundle 2.25.1
|
||||
- Fastlane 2.232.2
|
||||
- SwiftFormat 0.59.1
|
||||
- SwiftFormat 0.60.1
|
||||
- Xcbeautify 3.1.4
|
||||
- Xcode Command Line Tools 16.2.0.0.1.1733547573
|
||||
- Xcodes 1.6.2
|
||||
@@ -90,14 +90,14 @@
|
||||
- SwiftLint 0.63.2
|
||||
|
||||
### Browsers
|
||||
- Safari 26.3 (19623.2.7.18.1)
|
||||
- SafariDriver 26.3 (19623.2.7.18.1)
|
||||
- Google Chrome 145.0.7632.117
|
||||
- Google Chrome for Testing 145.0.7632.117
|
||||
- ChromeDriver 145.0.7632.117
|
||||
- Microsoft Edge 145.0.3800.82
|
||||
- Microsoft Edge WebDriver 145.0.3800.82
|
||||
- Mozilla Firefox 148.0
|
||||
- Safari 26.4 (19624.1.16.18.2)
|
||||
- SafariDriver 26.4 (19624.1.16.18.2)
|
||||
- Google Chrome 146.0.7680.165
|
||||
- Google Chrome for Testing 146.0.7680.165
|
||||
- ChromeDriver 146.0.7680.165
|
||||
- Microsoft Edge 146.0.3856.84
|
||||
- Microsoft Edge WebDriver 146.0.3856.84
|
||||
- Mozilla Firefox 149.0
|
||||
- geckodriver 0.36.0
|
||||
- Selenium server 4.41.0
|
||||
|
||||
@@ -120,46 +120,46 @@
|
||||
### Cached Tools
|
||||
|
||||
#### Ruby
|
||||
- 3.2.10
|
||||
- 3.3.10
|
||||
- 3.4.8
|
||||
- 4.0.1
|
||||
- 3.2.11
|
||||
- 3.3.11
|
||||
- 3.4.9
|
||||
- 4.0.2
|
||||
|
||||
#### Python
|
||||
- 3.10.19
|
||||
- 3.10.20
|
||||
- 3.11.9
|
||||
- 3.12.10
|
||||
- 3.13.12
|
||||
- 3.14.3
|
||||
|
||||
#### Node.js
|
||||
- 20.20.0
|
||||
- 22.22.0
|
||||
- 24.14.0
|
||||
- 20.20.2
|
||||
- 22.22.2
|
||||
- 24.14.1
|
||||
|
||||
#### Go
|
||||
- 1.22.12
|
||||
- 1.23.12
|
||||
- 1.24.13
|
||||
- 1.25.7
|
||||
- 1.25.8
|
||||
|
||||
### Rust Tools
|
||||
- Cargo 1.93.1
|
||||
- Rust 1.93.1
|
||||
- Rustdoc 1.93.1
|
||||
- Rustup 1.28.2
|
||||
- Cargo 1.94.1
|
||||
- Rust 1.94.1
|
||||
- Rustdoc 1.94.1
|
||||
- Rustup 1.29.0
|
||||
|
||||
#### Packages
|
||||
- Clippy 0.1.93
|
||||
- Clippy 0.1.94
|
||||
- Rustfmt 1.8.0-stable
|
||||
|
||||
### PowerShell Tools
|
||||
- PowerShell 7.4.13
|
||||
- PowerShell 7.4.14
|
||||
|
||||
#### PowerShell Modules
|
||||
- Az: 14.6.0
|
||||
- Pester: 5.7.1
|
||||
- PSScriptAnalyzer: 1.24.0
|
||||
- PSScriptAnalyzer: 1.25.0
|
||||
|
||||
### Xcode
|
||||
| Version | Build | Path | Symlinks |
|
||||
@@ -235,40 +235,40 @@
|
||||
| DriverKit 24.2 | driverkit24.2 | 16.2 |
|
||||
|
||||
#### Installed Simulators
|
||||
| Name | OS | Simulators |
|
||||
| ------------ | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
||||
| iOS 17.0 | 17.0.1 | iPhone 15<br>iPhone 15 Plus<br>iPhone 15 Pro<br>iPhone 15 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air (5th generation)<br>iPad mini (6th generation)<br>iPad Pro (11-inch) (4th generation)<br>iPad Pro (12.9-inch) (6th generation) |
|
||||
| iOS 17.2 | 17.2 | iPhone 15<br>iPhone 15 Plus<br>iPhone 15 Pro<br>iPhone 15 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air (5th generation)<br>iPad mini (6th generation)<br>iPad Pro (11-inch) (4th generation)<br>iPad Pro (12.9-inch) (6th generation) |
|
||||
| iOS 17.4 | 17.4 | iPhone 15<br>iPhone 15 Plus<br>iPhone 15 Pro<br>iPhone 15 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air (5th generation)<br>iPad Air 11-inch (M2)<br>iPad Air 13-inch (M2)<br>iPad mini (6th generation)<br>iPad Pro (11-inch) (4th generation)<br>iPad Pro (12.9-inch) (6th generation)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
|
||||
| iOS 17.5 | 17.5 | iPhone 15<br>iPhone 15 Plus<br>iPhone 15 Pro<br>iPhone 15 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air 11-inch (M2)<br>iPad Air 13-inch (M2)<br>iPad mini (6th generation)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
|
||||
| iOS 18.1 | 18.1 | iPhone 16<br>iPhone 16 Plus<br>iPhone 16 Pro<br>iPhone 16 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air 11-inch (M2)<br>iPad Air 13-inch (M2)<br>iPad mini (A17 Pro)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
|
||||
| iOS 18.2 | 18.2 | iPhone 16<br>iPhone 16 Plus<br>iPhone 16 Pro<br>iPhone 16 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air 11-inch (M2)<br>iPad Air 13-inch (M2)<br>iPad mini (A17 Pro)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
|
||||
| tvOS 17.0 | 17.0 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| tvOS 17.2 | 17.2 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| tvOS 17.4 | 17.4 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| tvOS 17.5 | 17.5 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| tvOS 18.1 | 18.1 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| tvOS 18.2 | 18.2 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| watchOS 10.0 | 10.0 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 5 (40mm)<br>Apple Watch Series 5 (44mm)<br>Apple Watch Series 6 (40mm)<br>Apple Watch Series 6 (44mm)<br>Apple Watch Series 7 (41mm)<br>Apple Watch Series 7 (45mm)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| watchOS 10.2 | 10.2 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 5 (40mm)<br>Apple Watch Series 5 (44mm)<br>Apple Watch Series 6 (40mm)<br>Apple Watch Series 6 (44mm)<br>Apple Watch Series 7 (41mm)<br>Apple Watch Series 7 (45mm)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| watchOS 10.4 | 10.4 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 5 (40mm)<br>Apple Watch Series 5 (44mm)<br>Apple Watch Series 6 (40mm)<br>Apple Watch Series 6 (44mm)<br>Apple Watch Series 7 (41mm)<br>Apple Watch Series 7 (45mm)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| watchOS 10.5 | 10.5 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 5 (40mm)<br>Apple Watch Series 5 (44mm)<br>Apple Watch Series 6 (40mm)<br>Apple Watch Series 6 (44mm)<br>Apple Watch Series 7 (41mm)<br>Apple Watch Series 7 (45mm)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| watchOS 11.1 | 11.1 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 10 (42mm)<br>Apple Watch Series 10 (46mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| watchOS 11.2 | 11.2 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 10 (42mm)<br>Apple Watch Series 10 (46mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| Name | OS | Simulators |
|
||||
| ------------ | ------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| iOS 17.0 | 17.0.1 | iPhone 15<br>iPhone 15 Plus<br>iPhone 15 Pro<br>iPhone 15 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air (5th generation)<br>iPad mini (6th generation)<br>iPad Pro (11-inch) (4th generation)<br>iPad Pro (12.9-inch) (6th generation) |
|
||||
| iOS 17.2 | 17.2 | iPhone 15<br>iPhone 15 Plus<br>iPhone 15 Pro<br>iPhone 15 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air (5th generation)<br>iPad mini (6th generation)<br>iPad Pro (11-inch) (4th generation)<br>iPad Pro (12.9-inch) (6th generation) |
|
||||
| iOS 17.4 | 17.4 | iPhone 15<br>iPhone 15 Plus<br>iPhone 15 Pro<br>iPhone 15 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air (5th generation)<br>iPad Air 11-inch (M2)<br>iPad Air 13-inch (M2)<br>iPad mini (6th generation)<br>iPad Pro (12.9-inch) (6th generation)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
|
||||
| iOS 17.5 | 17.5 | iPhone 15<br>iPhone 15 Plus<br>iPhone 15 Pro<br>iPhone 15 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air 11-inch (M2)<br>iPad Air 13-inch (M2)<br>iPad mini (6th generation)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
|
||||
| iOS 18.1 | 18.1 | iPhone 16<br>iPhone 16 Plus<br>iPhone 16 Pro<br>iPhone 16 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air 11-inch (M2)<br>iPad Air 13-inch (M2)<br>iPad mini (A17 Pro)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
|
||||
| iOS 18.2 | 18.2 | iPhone 16<br>iPhone 16 Plus<br>iPhone 16 Pro<br>iPhone 16 Pro Max<br>iPhone SE (3rd generation)<br>iPad (10th generation)<br>iPad Air 11-inch (M2)<br>iPad Air 13-inch (M2)<br>iPad mini (A17 Pro)<br>iPad Pro 11-inch (M4)<br>iPad Pro 13-inch (M4) |
|
||||
| tvOS 17.0 | 17.0 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| tvOS 17.2 | 17.2 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| tvOS 17.4 | 17.4 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| tvOS 17.5 | 17.5 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| tvOS 18.1 | 18.1 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| tvOS 18.2 | 18.2 | Apple TV<br>Apple TV 4K (3rd generation)<br>Apple TV 4K (3rd generation) (at 1080p) |
|
||||
| watchOS 10.0 | 10.0 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 5 (40mm)<br>Apple Watch Series 5 (44mm)<br>Apple Watch Series 6 (40mm)<br>Apple Watch Series 6 (44mm)<br>Apple Watch Series 7 (41mm)<br>Apple Watch Series 7 (45mm)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| watchOS 10.2 | 10.2 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 5 (40mm)<br>Apple Watch Series 5 (44mm)<br>Apple Watch Series 6 (40mm)<br>Apple Watch Series 6 (44mm)<br>Apple Watch Series 7 (41mm)<br>Apple Watch Series 7 (45mm)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| watchOS 10.4 | 10.4 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 5 (40mm)<br>Apple Watch Series 5 (44mm)<br>Apple Watch Series 6 (40mm)<br>Apple Watch Series 6 (44mm)<br>Apple Watch Series 7 (41mm)<br>Apple Watch Series 7 (45mm)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| watchOS 10.5 | 10.5 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 9 (41mm)<br>Apple Watch Series 9 (45mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| watchOS 11.1 | 11.1 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 10 (42mm)<br>Apple Watch Series 10 (46mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
| watchOS 11.2 | 11.2 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch Series 10 (42mm)<br>Apple Watch Series 10 (46mm)<br>Apple Watch Ultra 2 (49mm) |
|
||||
|
||||
### Android
|
||||
| Package Name | Version |
|
||||
| -------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| Android Command Line Tools | 11.0 |
|
||||
| Android Emulator | 36.4.9 |
|
||||
| Android SDK Build-tools | 36.0.0 36.1.0<br>35.0.0 35.0.1<br>34.0.0 |
|
||||
| Android SDK Platforms | android-36.1 (rev 1)<br>android-36-ext19 (rev 1)<br>android-36-ext18 (rev 1)<br>android-36 (rev 2)<br>android-35-ext15 (rev 1)<br>android-35-ext14 (rev 1)<br>android-35 (rev 2)<br>android-34-ext8 (rev 1)<br>android-34-ext12 (rev 1)<br>android-34-ext11 (rev 1)<br>android-34-ext10 (rev 1)<br>android-34 (rev 3) |
|
||||
| Android SDK Platform-Tools | 36.0.2 |
|
||||
| Android Support Repository | 47.0.0 |
|
||||
| CMake | 3.31.5<br>4.1.2 |
|
||||
| Google Play services | 49 |
|
||||
| Google Repository | 58 |
|
||||
| NDK | 27.3.13750724 (default)<br>28.2.13676358<br>29.0.14206865 |
|
||||
| Package Name | Version |
|
||||
| -------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| Android Command Line Tools | 11.0 |
|
||||
| Android Emulator | 36.4.10 |
|
||||
| Android SDK Build-tools | 37.0.0<br>36.0.0 36.1.0<br>35.0.0 35.0.1<br>34.0.0 |
|
||||
| Android SDK Platforms | android-37.0 (rev 1)<br>android-36.1 (rev 1)<br>android-36-ext19 (rev 1)<br>android-36-ext18 (rev 1)<br>android-36 (rev 2)<br>android-35-ext15 (rev 1)<br>android-35-ext14 (rev 1)<br>android-35 (rev 2)<br>android-34-ext8 (rev 1)<br>android-34-ext12 (rev 1)<br>android-34-ext11 (rev 1)<br>android-34-ext10 (rev 1)<br>android-34 (rev 3) |
|
||||
| Android SDK Platform-Tools | 37.0.0 |
|
||||
| Android Support Repository | 47.0.0 |
|
||||
| CMake | 3.31.5<br>4.1.2 |
|
||||
| Google Play services | 49 |
|
||||
| Google Repository | 58 |
|
||||
| NDK | 27.3.13750724 (default)<br>28.2.13676358<br>29.0.14206865 |
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
@@ -286,7 +286,7 @@
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
| ----------------- | ----------------------------------------------------------------------------------------- |
|
||||
| PARALLELS_DMG_URL | https://download.parallels.com/desktop/v26/26.2.2-57373/ParallelsDesktop-26.2.2-57373.dmg |
|
||||
| PARALLELS_DMG_URL | https://download.parallels.com/desktop/v26/26.3.0-57392/ParallelsDesktop-26.3.0-57392.dmg |
|
||||
|
||||
##### Notes
|
||||
```
|
||||
|
||||
@@ -4,14 +4,14 @@
|
||||
| [[macOS] The macOS 14 Sonoma based runner images will begin deprecation on July 6th and will be fully unsupported by November 2nd for GitHub Actions and Azure DevOps](https://github.com/actions/runner-images/issues/13518) |
|
||||
***
|
||||
# macOS 14
|
||||
- OS Version: macOS 14.8.4 (23J319)
|
||||
- OS Version: macOS 14.8.5 (23J423)
|
||||
- Kernel Version: Darwin 23.6.0
|
||||
- Image Version: 20260302.0147.1
|
||||
- Image Version: 20260330.0199.1
|
||||
|
||||
## Installed Software
|
||||
|
||||
### Language and Runtime
|
||||
- .NET Core SDK: 8.0.101, 8.0.204, 8.0.303, 8.0.418, 9.0.102, 9.0.203, 9.0.311, 10.0.103
|
||||
- .NET Core SDK: 8.0.101, 8.0.204, 8.0.303, 8.0.419, 9.0.102, 9.0.203, 9.0.312, 10.0.103, 10.0.201
|
||||
- Bash 3.2.57(1)-release
|
||||
- Clang/LLVM 15.0.0
|
||||
- Clang/LLVM (Homebrew) 15.0.7 - available on `$(brew --prefix llvm@15)/bin/clang`
|
||||
@@ -21,78 +21,78 @@
|
||||
- GNU Fortran 13 (Homebrew GCC 13.4.0) - available by `gfortran-13` alias
|
||||
- GNU Fortran 14 (Homebrew GCC 14.3.0) - available by `gfortran-14` alias
|
||||
- GNU Fortran 15 (Homebrew GCC 15.2.0_1) - available by `gfortran-15` alias
|
||||
- Kotlin 2.3.10-release-465
|
||||
- Kotlin 2.3.20-release-208
|
||||
- Mono 6.12.0.188
|
||||
- Node.js 20.20.0
|
||||
- Perl 5.42.0
|
||||
- Node.js 20.20.2
|
||||
- Perl 5.42.1
|
||||
- Python3 3.14.3
|
||||
- Ruby 3.3.10
|
||||
- Ruby 3.3.11
|
||||
|
||||
### Package Management
|
||||
- Bundler 4.0.7
|
||||
- Bundler 4.0.9
|
||||
- Carthage 0.40.0
|
||||
- CocoaPods 1.16.2
|
||||
- Homebrew 5.0.15
|
||||
- Homebrew 5.1.1
|
||||
- NPM 10.8.2
|
||||
- NuGet 6.3.1.1
|
||||
- Pip3 26.0 (python 3.14)
|
||||
- Pipx 1.8.0
|
||||
- RubyGems 4.0.7
|
||||
- Vcpkg 2026 (build from commit 62159a45e1)
|
||||
- Pipx 1.11.0
|
||||
- RubyGems 4.0.9
|
||||
- Vcpkg 2026 (build from commit b5d1a94fb7)
|
||||
- Yarn 1.22.22
|
||||
|
||||
### Project Management
|
||||
- Apache Ant 1.10.15
|
||||
- Apache Maven 3.9.12
|
||||
- Gradle 9.3.1
|
||||
- Apache Maven 3.9.14
|
||||
- Gradle 9.4.1
|
||||
|
||||
### Utilities
|
||||
- 7-Zip 17.05
|
||||
- aria2 1.37.0
|
||||
- azcopy 10.32.1
|
||||
- bazel 9.0.0
|
||||
- azcopy 10.32.2
|
||||
- bazel 9.0.1
|
||||
- bazelisk 1.28.1
|
||||
- bsdtar 3.5.3 - available by 'tar' alias
|
||||
- Curl 8.7.1
|
||||
- Git 2.53.0
|
||||
- Git LFS 3.7.1
|
||||
- GitHub CLI 2.87.3
|
||||
- GitHub CLI 2.89.0
|
||||
- GNU Tar 1.35 - available by 'gtar' alias
|
||||
- GNU Wget 1.25.0
|
||||
- gpg (GnuPG) 2.4.9
|
||||
- gpg (GnuPG) 2.5.18
|
||||
- jq 1.8.1
|
||||
- OpenSSL 1.1.1w 11 Sep 2023
|
||||
- Packer 1.15.0
|
||||
- Packer 1.15.1
|
||||
- pkgconf 2.5.1
|
||||
- Unxip 3.3
|
||||
- yq 4.52.4
|
||||
- yq 4.52.5
|
||||
- zstd 1.5.7
|
||||
- Ninja 1.13.2
|
||||
|
||||
### Tools
|
||||
- AWS CLI 2.34.0
|
||||
- AWS SAM CLI 1.154.0
|
||||
- AWS Session Manager CLI 1.2.779.0
|
||||
- Azure CLI 2.83.0
|
||||
- AWS CLI 2.34.19
|
||||
- AWS SAM CLI 1.157.1
|
||||
- AWS Session Manager CLI 1.2.792.0
|
||||
- Azure CLI 2.84.0
|
||||
- Azure CLI (azure-devops) 1.0.2
|
||||
- Bicep CLI 0.41.2
|
||||
- Cmake 4.2.3
|
||||
- CodeQL Action Bundle 2.24.2
|
||||
- Cmake 4.3.1
|
||||
- CodeQL Action Bundle 2.25.1
|
||||
- Fastlane 2.232.2
|
||||
- SwiftFormat 0.59.1
|
||||
- SwiftFormat 0.60.1
|
||||
- Xcbeautify 3.1.4
|
||||
- Xcode Command Line Tools 16.2.0.0.1.1733547573
|
||||
- Xcodes 1.6.2
|
||||
|
||||
### Browsers
|
||||
- Safari 26.3 (19623.2.7.18.1)
|
||||
- SafariDriver 26.3 (19623.2.7.18.1)
|
||||
- Google Chrome 145.0.7632.117
|
||||
- Google Chrome for Testing 145.0.7632.117
|
||||
- ChromeDriver 145.0.7632.117
|
||||
- Microsoft Edge 145.0.3800.82
|
||||
- Microsoft Edge WebDriver 145.0.3800.82
|
||||
- Mozilla Firefox 148.0
|
||||
- Safari 26.4 (19624.1.16.18.2)
|
||||
- SafariDriver 26.4 (19624.1.16.18.2)
|
||||
- Google Chrome 146.0.7680.165
|
||||
- Google Chrome for Testing 146.0.7680.165
|
||||
- ChromeDriver 146.0.7680.165
|
||||
- Microsoft Edge 146.0.3856.84
|
||||
- Microsoft Edge WebDriver 146.0.3856.84
|
||||
- Mozilla Firefox 149.0
|
||||
- geckodriver 0.36.0
|
||||
- Selenium server 4.41.0
|
||||
|
||||
@@ -114,10 +114,10 @@
|
||||
### Cached Tools
|
||||
|
||||
#### Ruby
|
||||
- 3.2.10
|
||||
- 3.3.10
|
||||
- 3.4.8
|
||||
- 4.0.1
|
||||
- 3.2.11
|
||||
- 3.3.11
|
||||
- 3.4.9
|
||||
- 4.0.2
|
||||
|
||||
#### Python
|
||||
- 3.11.9
|
||||
@@ -126,33 +126,33 @@
|
||||
- 3.14.3
|
||||
|
||||
#### Node.js
|
||||
- 20.20.0
|
||||
- 22.22.0
|
||||
- 24.14.0
|
||||
- 20.20.2
|
||||
- 22.22.2
|
||||
- 24.14.1
|
||||
|
||||
#### Go
|
||||
- 1.22.12
|
||||
- 1.23.12
|
||||
- 1.24.13
|
||||
- 1.25.7
|
||||
- 1.25.8
|
||||
|
||||
### Rust Tools
|
||||
- Cargo 1.93.1
|
||||
- Rust 1.93.1
|
||||
- Rustdoc 1.93.1
|
||||
- Rustup 1.28.2
|
||||
- Cargo 1.94.1
|
||||
- Rust 1.94.1
|
||||
- Rustdoc 1.94.1
|
||||
- Rustup 1.29.0
|
||||
|
||||
#### Packages
|
||||
- Clippy 0.1.93
|
||||
- Clippy 0.1.94
|
||||
- Rustfmt 1.8.0-stable
|
||||
|
||||
### PowerShell Tools
|
||||
- PowerShell 7.4.13
|
||||
- PowerShell 7.4.14
|
||||
|
||||
#### PowerShell Modules
|
||||
- Az: 14.6.0
|
||||
- Pester: 5.7.1
|
||||
- PSScriptAnalyzer: 1.24.0
|
||||
- PSScriptAnalyzer: 1.25.0
|
||||
|
||||
### Xcode
|
||||
| Version | Build | Path | Symlinks |
|
||||
@@ -255,18 +255,18 @@
|
||||
| visionOS 2.2 | 2.2 | Apple Vision Pro |
|
||||
|
||||
### Android
|
||||
| Package Name | Version |
|
||||
| -------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| Android Command Line Tools | 11.0 |
|
||||
| Android Emulator | 36.4.9 |
|
||||
| Android SDK Build-tools | 36.0.0 36.1.0<br>35.0.0 35.0.1<br>34.0.0 |
|
||||
| Android SDK Platforms | android-36.1 (rev 1)<br>android-36-ext19 (rev 1)<br>android-36-ext18 (rev 1)<br>android-36 (rev 2)<br>android-35-ext15 (rev 1)<br>android-35-ext14 (rev 1)<br>android-35 (rev 2)<br>android-34-ext8 (rev 1)<br>android-34-ext12 (rev 1)<br>android-34-ext11 (rev 1)<br>android-34-ext10 (rev 1)<br>android-34 (rev 3) |
|
||||
| Android SDK Platform-Tools | 36.0.2 |
|
||||
| Android Support Repository | 47.0.0 |
|
||||
| CMake | 3.31.5<br>4.1.2 |
|
||||
| Google Play services | 49 |
|
||||
| Google Repository | 58 |
|
||||
| NDK | 27.3.13750724 (default)<br>28.2.13676358<br>29.0.14206865 |
|
||||
| Package Name | Version |
|
||||
| -------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| Android Command Line Tools | 11.0 |
|
||||
| Android Emulator | 36.4.10 |
|
||||
| Android SDK Build-tools | 37.0.0<br>36.0.0 36.1.0<br>35.0.0 35.0.1<br>34.0.0 |
|
||||
| Android SDK Platforms | android-37.0 (rev 1)<br>android-36.1 (rev 1)<br>android-36-ext19 (rev 1)<br>android-36-ext18 (rev 1)<br>android-36 (rev 2)<br>android-35-ext15 (rev 1)<br>android-35-ext14 (rev 1)<br>android-35 (rev 2)<br>android-34-ext8 (rev 1)<br>android-34-ext12 (rev 1)<br>android-34-ext11 (rev 1)<br>android-34-ext10 (rev 1)<br>android-34 (rev 3) |
|
||||
| Android SDK Platform-Tools | 37.0.0 |
|
||||
| Android Support Repository | 47.0.0 |
|
||||
| CMake | 3.31.5<br>4.1.2 |
|
||||
| Google Play services | 49 |
|
||||
| Google Repository | 58 |
|
||||
| NDK | 27.3.13750724 (default)<br>28.2.13676358<br>29.0.14206865 |
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
|
||||
@@ -4,14 +4,14 @@
|
||||
| [[macOS] The macOS 14 Sonoma based runner images will begin deprecation on July 6th and will be fully unsupported by November 2nd for GitHub Actions and Azure DevOps](https://github.com/actions/runner-images/issues/13518) |
|
||||
***
|
||||
# macOS 15
|
||||
- OS Version: macOS 15.7.4 (24G517)
|
||||
- OS Version: macOS 15.7.5 (24G617)
|
||||
- Kernel Version: Darwin 24.6.0
|
||||
- Image Version: 20260303.0227.1
|
||||
- Image Version: 20260330.0336.1
|
||||
|
||||
## Installed Software
|
||||
|
||||
### Language and Runtime
|
||||
- .NET Core SDK: 8.0.101, 8.0.204, 8.0.303, 8.0.418, 9.0.102, 9.0.203, 9.0.311, 10.0.103
|
||||
- .NET Core SDK: 8.0.101, 8.0.204, 8.0.303, 8.0.419, 9.0.102, 9.0.203, 9.0.312, 10.0.103, 10.0.201
|
||||
- Bash 3.2.57(1)-release
|
||||
- Clang/LLVM 17.0.0
|
||||
- Clang/LLVM (Homebrew) 18.1.8 - available on `$(brew --prefix llvm@18)/bin/clang`
|
||||
@@ -21,65 +21,65 @@
|
||||
- GNU Fortran 13 (Homebrew GCC 13.4.0) - available by `gfortran-13` alias
|
||||
- GNU Fortran 14 (Homebrew GCC 14.3.0) - available by `gfortran-14` alias
|
||||
- GNU Fortran 15 (Homebrew GCC 15.2.0_1) - available by `gfortran-15` alias
|
||||
- Kotlin 2.3.10-release-465
|
||||
- Node.js 22.22.0
|
||||
- Perl 5.42.0
|
||||
- PHP 8.5.3
|
||||
- Kotlin 2.3.20-release-208
|
||||
- Node.js 22.22.2
|
||||
- Perl 5.42.1
|
||||
- PHP 8.5.4
|
||||
- Python3 3.14.3
|
||||
- Ruby 3.3.10
|
||||
- Ruby 3.3.11
|
||||
|
||||
### Package Management
|
||||
- Bundler 4.0.7
|
||||
- Bundler 4.0.9
|
||||
- Carthage 0.40.0
|
||||
- CocoaPods 1.16.2
|
||||
- Composer 2.9.5
|
||||
- Homebrew 5.0.16
|
||||
- NPM 10.9.4
|
||||
- Homebrew 5.1.1
|
||||
- NPM 10.9.7
|
||||
- Pip3 26.0 (python 3.14)
|
||||
- Pipx 1.8.0
|
||||
- RubyGems 4.0.7
|
||||
- Vcpkg 2026 (build from commit 39a6cc0e44)
|
||||
- Pipx 1.11.0
|
||||
- RubyGems 4.0.9
|
||||
- Vcpkg 2026 (build from commit b5d1a94fb7)
|
||||
- Yarn 1.22.22
|
||||
|
||||
### Project Management
|
||||
- Apache Ant 1.10.15
|
||||
- Apache Maven 3.9.12
|
||||
- Gradle 9.3.1
|
||||
- Apache Maven 3.9.14
|
||||
- Gradle 9.4.1
|
||||
|
||||
### Utilities
|
||||
- 7-Zip 17.05
|
||||
- aria2 1.37.0
|
||||
- azcopy 10.32.1
|
||||
- bazel 9.0.0
|
||||
- azcopy 10.32.2
|
||||
- bazel 9.0.1
|
||||
- bazelisk 1.28.1
|
||||
- bsdtar 3.5.3 - available by 'tar' alias
|
||||
- Curl 8.18.0
|
||||
- Curl 8.19.0
|
||||
- Git 2.53.0
|
||||
- Git LFS 3.7.1
|
||||
- GitHub CLI 2.87.3
|
||||
- GitHub CLI 2.89.0
|
||||
- GNU Tar 1.35 - available by 'gtar' alias
|
||||
- GNU Wget 1.25.0
|
||||
- gpg (GnuPG) 2.4.9
|
||||
- gpg (GnuPG) 2.5.18
|
||||
- jq 1.8.1
|
||||
- OpenSSL 1.1.1w 11 Sep 2023
|
||||
- Packer 1.15.0
|
||||
- Packer 1.15.1
|
||||
- pkgconf 2.5.1
|
||||
- Unxip 3.3
|
||||
- yq 4.52.4
|
||||
- yq 4.52.5
|
||||
- zstd 1.5.7
|
||||
- Ninja 1.13.2
|
||||
|
||||
### Tools
|
||||
- AWS CLI 2.34.0
|
||||
- AWS SAM CLI 1.154.0
|
||||
- AWS Session Manager CLI 1.2.779.0
|
||||
- AWS CLI 2.34.19
|
||||
- AWS SAM CLI 1.157.1
|
||||
- AWS Session Manager CLI 1.2.792.0
|
||||
- Azure CLI 2.84.0
|
||||
- Azure CLI (azure-devops) 1.0.2
|
||||
- Bicep CLI 0.41.2
|
||||
- Cmake 4.2.3
|
||||
- CodeQL Action Bundle 2.24.2
|
||||
- Cmake 4.3.1
|
||||
- CodeQL Action Bundle 2.25.1
|
||||
- Fastlane 2.232.2
|
||||
- SwiftFormat 0.59.1
|
||||
- SwiftFormat 0.60.1
|
||||
- Xcbeautify 3.1.4
|
||||
- Xcode Command Line Tools 16.4.0.0.1.1747106510
|
||||
- Xcodes 1.6.2
|
||||
@@ -88,14 +88,14 @@
|
||||
- SwiftLint 0.63.2
|
||||
|
||||
### Browsers
|
||||
- Safari 26.3 (20623.2.7.18.1)
|
||||
- SafariDriver 26.3 (20623.2.7.18.1)
|
||||
- Google Chrome 145.0.7632.117
|
||||
- Google Chrome for Testing 145.0.7632.117
|
||||
- ChromeDriver 145.0.7632.117
|
||||
- Microsoft Edge 145.0.3800.82
|
||||
- Microsoft Edge WebDriver 145.0.3800.82
|
||||
- Mozilla Firefox 148.0
|
||||
- Safari 26.4 (20624.1.16.18.2)
|
||||
- SafariDriver 26.4 (20624.1.16.18.2)
|
||||
- Google Chrome 146.0.7680.165
|
||||
- Google Chrome for Testing 146.0.7680.165
|
||||
- ChromeDriver 146.0.7680.165
|
||||
- Microsoft Edge 146.0.3856.84
|
||||
- Microsoft Edge WebDriver 146.0.3856.84
|
||||
- Mozilla Firefox 149.0
|
||||
- geckodriver 0.36.0
|
||||
- Selenium server 4.41.0
|
||||
|
||||
@@ -117,46 +117,46 @@
|
||||
### Cached Tools
|
||||
|
||||
#### Ruby
|
||||
- 3.2.10
|
||||
- 3.3.10
|
||||
- 3.4.8
|
||||
- 4.0.1
|
||||
- 3.2.11
|
||||
- 3.3.11
|
||||
- 3.4.9
|
||||
- 4.0.2
|
||||
|
||||
#### Python
|
||||
- 3.10.19
|
||||
- 3.10.20
|
||||
- 3.11.9
|
||||
- 3.12.10
|
||||
- 3.13.12
|
||||
- 3.14.3
|
||||
|
||||
#### Node.js
|
||||
- 20.20.0
|
||||
- 22.22.0
|
||||
- 24.14.0
|
||||
- 20.20.2
|
||||
- 22.22.2
|
||||
- 24.14.1
|
||||
|
||||
#### Go
|
||||
- 1.22.12
|
||||
- 1.23.12
|
||||
- 1.24.13
|
||||
- 1.25.7
|
||||
- 1.25.8
|
||||
|
||||
### Rust Tools
|
||||
- Cargo 1.93.1
|
||||
- Rust 1.93.1
|
||||
- Rustdoc 1.93.1
|
||||
- Rustup 1.28.2
|
||||
- Cargo 1.94.1
|
||||
- Rust 1.94.1
|
||||
- Rustdoc 1.94.1
|
||||
- Rustup 1.29.0
|
||||
|
||||
#### Packages
|
||||
- Clippy 0.1.93
|
||||
- Clippy 0.1.94
|
||||
- Rustfmt 1.8.0-stable
|
||||
|
||||
### PowerShell Tools
|
||||
- PowerShell 7.4.13
|
||||
- PowerShell 7.4.14
|
||||
|
||||
#### PowerShell Modules
|
||||
- Az: 14.6.0
|
||||
- Pester: 5.7.1
|
||||
- PSScriptAnalyzer: 1.24.0
|
||||
- PSScriptAnalyzer: 1.25.0
|
||||
|
||||
### Xcode
|
||||
| Version | Build | Path | Symlinks |
|
||||
@@ -271,18 +271,18 @@
|
||||
| watchOS 26.2 | 26.2 | Apple Watch SE (40mm) (2nd generation)<br>Apple Watch SE (44mm) (2nd generation)<br>Apple Watch SE 3 (40mm)<br>Apple Watch SE 3 (44mm)<br>Apple Watch Series 10 (42mm)<br>Apple Watch Series 10 (46mm)<br>Apple Watch Series 11 (42mm)<br>Apple Watch Series 11 (46mm)<br>Apple Watch Ultra 2 (49mm)<br>Apple Watch Ultra 3 (49mm) |
|
||||
|
||||
### Android
|
||||
| Package Name | Version |
|
||||
| -------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| Android Command Line Tools | 16.0 |
|
||||
| Android Emulator | 36.4.9 |
|
||||
| Android SDK Build-tools | 36.0.0 36.1.0<br>35.0.0 35.0.1 |
|
||||
| Android SDK Platforms | android-36.1 (rev 1)<br>android-36-ext19 (rev 1)<br>android-36-ext18 (rev 1)<br>android-36 (rev 2)<br>android-35-ext15 (rev 1)<br>android-35-ext14 (rev 1)<br>android-35 (rev 2)<br>android-34-ext8 (rev 1)<br>android-34-ext12 (rev 1)<br>android-34-ext11 (rev 1)<br>android-34-ext10 (rev 1)<br>android-34 (rev 3) |
|
||||
| Android SDK Platform-Tools | 37.0.0 |
|
||||
| Android Support Repository | 47.0.0 |
|
||||
| CMake | 3.31.5<br>4.1.2 |
|
||||
| Google Play services | 49 |
|
||||
| Google Repository | 58 |
|
||||
| NDK | 27.3.13750724 (default)<br>28.2.13676358<br>29.0.14206865 |
|
||||
| Package Name | Version |
|
||||
| -------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| Android Command Line Tools | 16.0 |
|
||||
| Android Emulator | 36.4.10 |
|
||||
| Android SDK Build-tools | 37.0.0<br>36.0.0 36.1.0<br>35.0.0 35.0.1 |
|
||||
| Android SDK Platforms | android-37.0 (rev 1)<br>android-36.1 (rev 1)<br>android-36-ext19 (rev 1)<br>android-36-ext18 (rev 1)<br>android-36 (rev 2)<br>android-35-ext15 (rev 1)<br>android-35-ext14 (rev 1)<br>android-35 (rev 2)<br>android-34-ext8 (rev 1)<br>android-34-ext12 (rev 1)<br>android-34-ext11 (rev 1)<br>android-34-ext10 (rev 1)<br>android-34 (rev 3) |
|
||||
| Android SDK Platform-Tools | 37.0.0 |
|
||||
| Android Support Repository | 47.0.0 |
|
||||
| CMake | 3.31.5<br>4.1.2 |
|
||||
| Google Play services | 49 |
|
||||
| Google Repository | 58 |
|
||||
| NDK | 27.3.13750724 (default)<br>28.2.13676358<br>29.0.14206865 |
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
@@ -300,7 +300,7 @@
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
| ----------------- | ----------------------------------------------------------------------------------------- |
|
||||
| PARALLELS_DMG_URL | https://download.parallels.com/desktop/v26/26.2.2-57373/ParallelsDesktop-26.2.2-57373.dmg |
|
||||
| PARALLELS_DMG_URL | https://download.parallels.com/desktop/v26/26.3.0-57392/ParallelsDesktop-26.3.0-57392.dmg |
|
||||
|
||||
##### Notes
|
||||
```
|
||||
|
||||
@@ -6,12 +6,12 @@
|
||||
# macOS 15
|
||||
- OS Version: macOS 15.7.4 (24G517)
|
||||
- Kernel Version: Darwin 24.6.0
|
||||
- Image Version: 20260303.0188.2
|
||||
- Image Version: 20260330.0243.1
|
||||
|
||||
## Installed Software
|
||||
|
||||
### Language and Runtime
|
||||
- .NET Core SDK: 8.0.101, 8.0.204, 8.0.303, 8.0.418, 9.0.102, 9.0.203, 9.0.311, 10.0.103
|
||||
- .NET Core SDK: 8.0.101, 8.0.204, 8.0.303, 8.0.419, 9.0.102, 9.0.203, 9.0.312, 10.0.103, 10.0.201
|
||||
- Bash 3.2.57(1)-release
|
||||
- Clang/LLVM 17.0.0
|
||||
- Clang/LLVM (Homebrew) 18.1.8 - available on `$(brew --prefix llvm@18)/bin/clang`
|
||||
@@ -21,63 +21,63 @@
|
||||
- GNU Fortran 13 (Homebrew GCC 13.4.0) - available by `gfortran-13` alias
|
||||
- GNU Fortran 14 (Homebrew GCC 14.3.0) - available by `gfortran-14` alias
|
||||
- GNU Fortran 15 (Homebrew GCC 15.2.0_1) - available by `gfortran-15` alias
|
||||
- Kotlin 2.3.10-release-465
|
||||
- Node.js 22.22.0
|
||||
- Perl 5.42.0
|
||||
- Kotlin 2.3.20-release-208
|
||||
- Node.js 22.22.2
|
||||
- Perl 5.42.1
|
||||
- Python3 3.14.3
|
||||
- Ruby 3.3.10
|
||||
- Ruby 3.3.11
|
||||
|
||||
### Package Management
|
||||
- Bundler 4.0.7
|
||||
- Bundler 4.0.9
|
||||
- Carthage 0.40.0
|
||||
- CocoaPods 1.16.2
|
||||
- Homebrew 5.0.16
|
||||
- NPM 10.9.4
|
||||
- Homebrew 5.1.1
|
||||
- NPM 10.9.7
|
||||
- Pip3 26.0 (python 3.14)
|
||||
- Pipx 1.8.0
|
||||
- RubyGems 4.0.7
|
||||
- Vcpkg 2026 (build from commit 39a6cc0e44)
|
||||
- Pipx 1.11.0
|
||||
- RubyGems 4.0.9
|
||||
- Vcpkg 2026 (build from commit b5d1a94fb7)
|
||||
- Yarn 1.22.22
|
||||
|
||||
### Project Management
|
||||
- Apache Ant 1.10.15
|
||||
- Apache Maven 3.9.12
|
||||
- Gradle 9.3.1
|
||||
- Apache Maven 3.9.14
|
||||
- Gradle 9.4.1
|
||||
|
||||
### Utilities
|
||||
- 7-Zip 17.05
|
||||
- aria2 1.37.0
|
||||
- azcopy 10.32.1
|
||||
- bazel 9.0.0
|
||||
- azcopy 10.32.2
|
||||
- bazel 9.0.1
|
||||
- bazelisk 1.28.1
|
||||
- bsdtar 3.5.3 - available by 'tar' alias
|
||||
- Curl 8.7.1
|
||||
- Git 2.53.0
|
||||
- Git LFS 3.7.1
|
||||
- GitHub CLI 2.87.3
|
||||
- GitHub CLI 2.89.0
|
||||
- GNU Tar 1.35 - available by 'gtar' alias
|
||||
- GNU Wget 1.25.0
|
||||
- gpg (GnuPG) 2.4.9
|
||||
- gpg (GnuPG) 2.5.18
|
||||
- jq 1.8.1
|
||||
- OpenSSL 1.1.1w 11 Sep 2023
|
||||
- Packer 1.15.0
|
||||
- Packer 1.15.1
|
||||
- pkgconf 2.5.1
|
||||
- Unxip 3.3
|
||||
- yq 4.52.4
|
||||
- yq 4.52.5
|
||||
- zstd 1.5.7
|
||||
- Ninja 1.13.2
|
||||
|
||||
### Tools
|
||||
- AWS CLI 2.34.0
|
||||
- AWS SAM CLI 1.154.0
|
||||
- AWS Session Manager CLI 1.2.779.0
|
||||
- AWS CLI 2.34.19
|
||||
- AWS SAM CLI 1.157.1
|
||||
- AWS Session Manager CLI 1.2.792.0
|
||||
- Azure CLI 2.84.0
|
||||
- Azure CLI (azure-devops) 1.0.2
|
||||
- Bicep CLI 0.41.2
|
||||
- Cmake 4.2.3
|
||||
- CodeQL Action Bundle 2.24.2
|
||||
- Cmake 4.3.1
|
||||
- CodeQL Action Bundle 2.25.1
|
||||
- Fastlane 2.232.2
|
||||
- SwiftFormat 0.59.1
|
||||
- SwiftFormat 0.60.1
|
||||
- Xcbeautify 3.1.4
|
||||
- Xcode Command Line Tools 16.4.0.0.1.1747106510
|
||||
- Xcodes 1.6.2
|
||||
@@ -85,12 +85,12 @@
|
||||
### Browsers
|
||||
- Safari 26.3 (20623.2.7.18.1)
|
||||
- SafariDriver 26.3 (20623.2.7.18.1)
|
||||
- Google Chrome 145.0.7632.117
|
||||
- Google Chrome for Testing 145.0.7632.117
|
||||
- ChromeDriver 145.0.7632.117
|
||||
- Microsoft Edge 145.0.3800.82
|
||||
- Microsoft Edge WebDriver 145.0.3800.82
|
||||
- Mozilla Firefox 148.0
|
||||
- Google Chrome 146.0.7680.165
|
||||
- Google Chrome for Testing 146.0.7680.165
|
||||
- ChromeDriver 146.0.7680.165
|
||||
- Microsoft Edge 146.0.3856.84
|
||||
- Microsoft Edge WebDriver 146.0.3856.84
|
||||
- Mozilla Firefox 149.0
|
||||
- geckodriver 0.36.0
|
||||
- Selenium server 4.41.0
|
||||
|
||||
@@ -112,10 +112,10 @@
|
||||
### Cached Tools
|
||||
|
||||
#### Ruby
|
||||
- 3.2.10
|
||||
- 3.3.10
|
||||
- 3.4.8
|
||||
- 4.0.1
|
||||
- 3.2.11
|
||||
- 3.3.11
|
||||
- 3.4.9
|
||||
- 4.0.2
|
||||
|
||||
#### Python
|
||||
- 3.11.9
|
||||
@@ -124,33 +124,33 @@
|
||||
- 3.14.3
|
||||
|
||||
#### Node.js
|
||||
- 20.20.0
|
||||
- 22.22.0
|
||||
- 24.14.0
|
||||
- 20.20.2
|
||||
- 22.22.2
|
||||
- 24.14.1
|
||||
|
||||
#### Go
|
||||
- 1.22.12
|
||||
- 1.23.12
|
||||
- 1.24.13
|
||||
- 1.25.7
|
||||
- 1.25.8
|
||||
|
||||
### Rust Tools
|
||||
- Cargo 1.93.1
|
||||
- Rust 1.93.1
|
||||
- Rustdoc 1.93.1
|
||||
- Rustup 1.28.2
|
||||
- Cargo 1.94.1
|
||||
- Rust 1.94.1
|
||||
- Rustdoc 1.94.1
|
||||
- Rustup 1.29.0
|
||||
|
||||
#### Packages
|
||||
- Clippy 0.1.93
|
||||
- Clippy 0.1.94
|
||||
- Rustfmt 1.8.0-stable
|
||||
|
||||
### PowerShell Tools
|
||||
- PowerShell 7.4.13
|
||||
- PowerShell 7.4.14
|
||||
|
||||
#### PowerShell Modules
|
||||
- Az: 14.6.0
|
||||
- Pester: 5.7.1
|
||||
- PSScriptAnalyzer: 1.24.0
|
||||
- PSScriptAnalyzer: 1.25.0
|
||||
|
||||
### Xcode
|
||||
| Version | Build | Path | Symlinks |
|
||||
@@ -270,18 +270,18 @@
|
||||
| visionOS 26.2 | 26.2 | Apple Vision Pro |
|
||||
|
||||
### Android
|
||||
| Package Name | Version |
|
||||
| -------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| Android Command Line Tools | 16.0 |
|
||||
| Android Emulator | 36.4.9 |
|
||||
| Android SDK Build-tools | 36.0.0 36.1.0<br>35.0.0 35.0.1 |
|
||||
| Android SDK Platforms | android-36.1 (rev 1)<br>android-36-ext19 (rev 1)<br>android-36-ext18 (rev 1)<br>android-36 (rev 2)<br>android-35-ext15 (rev 1)<br>android-35-ext14 (rev 1)<br>android-35 (rev 2)<br>android-34-ext8 (rev 1)<br>android-34-ext12 (rev 1)<br>android-34-ext11 (rev 1)<br>android-34-ext10 (rev 1)<br>android-34 (rev 3) |
|
||||
| Android SDK Platform-Tools | 37.0.0 |
|
||||
| Android Support Repository | 47.0.0 |
|
||||
| CMake | 3.31.5<br>4.1.2 |
|
||||
| Google Play services | 49 |
|
||||
| Google Repository | 58 |
|
||||
| NDK | 27.3.13750724 (default)<br>28.2.13676358<br>29.0.14206865 |
|
||||
| Package Name | Version |
|
||||
| -------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| Android Command Line Tools | 16.0 |
|
||||
| Android Emulator | 36.4.10 |
|
||||
| Android SDK Build-tools | 37.0.0<br>36.0.0 36.1.0<br>35.0.0 35.0.1 |
|
||||
| Android SDK Platforms | android-37.0 (rev 1)<br>android-36.1 (rev 1)<br>android-36-ext19 (rev 1)<br>android-36-ext18 (rev 1)<br>android-36 (rev 2)<br>android-35-ext15 (rev 1)<br>android-35-ext14 (rev 1)<br>android-35 (rev 2)<br>android-34-ext8 (rev 1)<br>android-34-ext12 (rev 1)<br>android-34-ext11 (rev 1)<br>android-34-ext10 (rev 1)<br>android-34 (rev 3) |
|
||||
| Android SDK Platform-Tools | 37.0.0 |
|
||||
| Android Support Repository | 47.0.0 |
|
||||
| CMake | 3.31.5<br>4.1.2 |
|
||||
| Google Play services | 49 |
|
||||
| Google Repository | 58 |
|
||||
| NDK | 27.3.13750724 (default)<br>28.2.13676358<br>29.0.14206865 |
|
||||
|
||||
#### Environment variables
|
||||
| Name | Value |
|
||||
|
||||
@@ -4,14 +4,14 @@
|
||||
| [[macOS] The macOS 14 Sonoma based runner images will begin deprecation on July 6th and will be fully unsupported by November 2nd for GitHub Actions and Azure DevOps](https://github.com/actions/runner-images/issues/13518) |
|
||||
***
|
||||
# macOS 26
|
||||
- OS Version: macOS 26.3 (25D125)
|
||||
- OS Version: macOS 26.3.1 (25D2128)
|
||||
- Kernel Version: Darwin 25.3.0
|
||||
- Image Version: 20260303.0134.1
|
||||
- Image Version: 20260324.0226.1
|
||||
|
||||
## Installed Software
|
||||
|
||||
### Language and Runtime
|
||||
- .NET Core SDK: 8.0.101, 8.0.204, 8.0.303, 8.0.418, 9.0.102, 9.0.203, 9.0.311, 10.0.103
|
||||
- .NET Core SDK: 8.0.101, 8.0.204, 8.0.303, 8.0.419, 9.0.102, 9.0.203, 9.0.312, 10.0.103, 10.0.201
|
||||
- Bash 3.2.57(1)-release
|
||||
- Clang/LLVM 17.0.0
|
||||
- Clang/LLVM (Homebrew) 20.1.8 - available on `$(brew --prefix llvm@20)/bin/clang`
|
||||
@@ -21,45 +21,45 @@
|
||||
- GNU Fortran 13 (Homebrew GCC 13.4.0) - available by `gfortran-13` alias
|
||||
- GNU Fortran 14 (Homebrew GCC 14.3.0) - available by `gfortran-14` alias
|
||||
- GNU Fortran 15 (Homebrew GCC 15.2.0_1) - available by `gfortran-15` alias
|
||||
- Kotlin 2.3.10-release-465
|
||||
- Kotlin 2.3.20-release-208
|
||||
- Node.js 24.14.0
|
||||
- Perl 5.42.0
|
||||
- PHP 8.5.3
|
||||
- Perl 5.42.1
|
||||
- PHP 8.5.4
|
||||
- Python3 3.14.3
|
||||
- Ruby 3.4.8
|
||||
- Ruby 3.4.9
|
||||
|
||||
### Package Management
|
||||
- Bundler 4.0.7
|
||||
- Bundler 4.0.8
|
||||
- Carthage 0.40.0
|
||||
- CocoaPods 1.16.2
|
||||
- Composer 2.9.5
|
||||
- Homebrew 5.0.16
|
||||
- Homebrew 5.1.1
|
||||
- NPM 11.9.0
|
||||
- Pip3 26.0 (python 3.14)
|
||||
- Pipx 1.8.0
|
||||
- RubyGems 4.0.7
|
||||
- Vcpkg 2026 (build from commit 39a6cc0e44)
|
||||
- Pipx 1.11.0
|
||||
- RubyGems 4.0.8
|
||||
- Vcpkg 2026 (build from commit ed8445dd2a)
|
||||
- Yarn 1.22.22
|
||||
|
||||
### Project Management
|
||||
- Apache Ant 1.10.15
|
||||
- Apache Maven 3.9.12
|
||||
- Gradle 9.3.1
|
||||
- Apache Maven 3.9.14
|
||||
- Gradle 9.4.1
|
||||
|
||||
### Utilities
|
||||
- 7-Zip 17.05
|
||||
- aria2 1.37.0
|
||||
- azcopy 10.32.1
|
||||
- bazel 9.0.0
|
||||
- azcopy 10.32.2
|
||||
- bazel 9.0.1
|
||||
- bazelisk 1.28.1
|
||||
- bsdtar 3.5.3 - available by 'tar' alias
|
||||
- Curl 8.18.0
|
||||
- Curl 8.19.0
|
||||
- Git 2.53.0
|
||||
- Git LFS 3.7.1
|
||||
- GitHub CLI 2.87.3
|
||||
- GitHub CLI 2.88.1
|
||||
- GNU Tar 1.35 - available by 'gtar' alias
|
||||
- GNU Wget 1.25.0
|
||||
- gpg (GnuPG) 2.4.9
|
||||
- gpg (GnuPG) 2.5.18
|
||||
- jq 1.8.1
|
||||
- OpenSSL 3.6.1 27 Jan 2026 (Library: OpenSSL 3.6.1 27 Jan 2026)
|
||||
- Packer 1.15.0
|
||||
@@ -70,16 +70,16 @@
|
||||
- Ninja 1.13.2
|
||||
|
||||
### Tools
|
||||
- AWS CLI 2.34.0
|
||||
- AWS SAM CLI 1.154.0
|
||||
- AWS Session Manager CLI 1.2.779.0
|
||||
- AWS CLI 2.34.15
|
||||
- AWS SAM CLI 1.156.0
|
||||
- AWS Session Manager CLI 1.2.792.0
|
||||
- Azure CLI 2.84.0
|
||||
- Azure CLI (azure-devops) 1.0.2
|
||||
- Bicep CLI 0.41.2
|
||||
- Cmake 4.2.3
|
||||
- CodeQL Action Bundle 2.24.2
|
||||
- Cmake 4.3.0
|
||||
- CodeQL Action Bundle 2.24.3
|
||||
- Fastlane 2.232.2
|
||||
- SwiftFormat 0.59.1
|
||||
- SwiftFormat 0.60.1
|
||||
- Xcbeautify 3.1.4
|
||||
- Xcode Command Line Tools 26.3.0.0.1.1771626560
|
||||
- Xcodes 1.6.2
|
||||
@@ -88,14 +88,14 @@
|
||||
- SwiftLint 0.63.2
|
||||
|
||||
### Browsers
|
||||
- Safari 26.3 (21623.2.7.11.6)
|
||||
- SafariDriver 26.3 (21623.2.7.11.6)
|
||||
- Google Chrome 145.0.7632.117
|
||||
- Google Chrome for Testing 145.0.7632.117
|
||||
- ChromeDriver 145.0.7632.117
|
||||
- Microsoft Edge 145.0.3800.82
|
||||
- Microsoft Edge WebDriver 145.0.3800.82
|
||||
- Mozilla Firefox 148.0
|
||||
- Safari 26.3.1 (21623.2.7.11.7)
|
||||
- SafariDriver 26.3.1 (21623.2.7.11.7)
|
||||
- Google Chrome 146.0.7680.165
|
||||
- Google Chrome for Testing 146.0.7680.165
|
||||
- ChromeDriver 146.0.7680.165
|
||||
- Microsoft Edge 146.0.3856.72
|
||||
- Microsoft Edge WebDriver 146.0.3856.72
|
||||
- Mozilla Firefox 149.0
|
||||
- geckodriver 0.36.0
|
||||
- Selenium server 4.41.0
|
||||
|
||||
@@ -119,8 +119,8 @@
|
||||
#### Ruby
|
||||
- 3.2.10
|
||||
- 3.3.10
|
||||
- 3.4.8
|
||||
- 4.0.1
|
||||
- 3.4.9
|
||||
- 4.0.2
|
||||
|
||||
#### Python
|
||||
- 3.11.9
|
||||
@@ -129,41 +129,41 @@
|
||||
- 3.14.3
|
||||
|
||||
#### Node.js
|
||||
- 20.20.0
|
||||
- 22.22.0
|
||||
- 20.20.1
|
||||
- 22.22.1
|
||||
- 24.14.0
|
||||
|
||||
#### Go
|
||||
- 1.23.12
|
||||
- 1.24.13
|
||||
- 1.25.7
|
||||
- 1.25.8
|
||||
|
||||
### Rust Tools
|
||||
- Cargo 1.93.1
|
||||
- Rust 1.93.1
|
||||
- Rustdoc 1.93.1
|
||||
- Rustup 1.28.2
|
||||
- Cargo 1.94.0
|
||||
- Rust 1.94.0
|
||||
- Rustdoc 1.94.0
|
||||
- Rustup 1.29.0
|
||||
|
||||
#### Packages
|
||||
- Clippy 0.1.93
|
||||
- Clippy 0.1.94
|
||||
- Rustfmt 1.8.0-stable
|
||||
|
||||
### PowerShell Tools
|
||||
- PowerShell 7.4.13
|
||||
- PowerShell 7.4.14
|
||||
|
||||
#### PowerShell Modules
|
||||
- Az: 14.6.0
|
||||
- Pester: 5.7.1
|
||||
- PSScriptAnalyzer: 1.24.0
|
||||
- PSScriptAnalyzer: 1.25.0
|
||||
|
||||
### Xcode
|
||||
| Version | Build | Path | Symlinks |
|
||||
| -------------- | -------- | ----------------------------------- | -------------------------------------------------------------- |
|
||||
| 26.4 (beta) | 17E5170d | /Applications/Xcode_26.4_beta_2.app | /Applications/Xcode_26.4.0.app<br>/Applications/Xcode_26.4.app |
|
||||
| 26.3 | 17C529 | /Applications/Xcode_26.3.app | /Applications/Xcode_26.3.0.app |
|
||||
| 26.2 (default) | 17C52 | /Applications/Xcode_26.2.app | /Applications/Xcode_26.2.0.app<br>/Applications/Xcode.app |
|
||||
| 26.1.1 | 17B100 | /Applications/Xcode_26.1.1.app | /Applications/Xcode_26.1.app |
|
||||
| 26.0.1 | 17A400 | /Applications/Xcode_26.0.1.app | /Applications/Xcode_26.0.app |
|
||||
| Version | Build | Path | Symlinks |
|
||||
| -------------- | ------ | ---------------------------------------------- | -------------------------------------------------------------- |
|
||||
| 26.4 | 17E192 | /Applications/Xcode_26.4_Release_Candidate.app | /Applications/Xcode_26.4.0.app<br>/Applications/Xcode_26.4.app |
|
||||
| 26.3 | 17C529 | /Applications/Xcode_26.3.app | /Applications/Xcode_26.3.0.app |
|
||||
| 26.2 (default) | 17C52 | /Applications/Xcode_26.2.app | /Applications/Xcode_26.2.0.app<br>/Applications/Xcode.app |
|
||||
| 26.1.1 | 17B100 | /Applications/Xcode_26.1.1.app | /Applications/Xcode_26.1.app |
|
||||
| 26.0.1 | 17A400 | /Applications/Xcode_26.0.1.app | /Applications/Xcode_26.0.app |
|
||||
|
||||
#### Installed SDKs
|
||||
| SDK | SDK Name | Xcode Version |
|
||||
@@ -226,7 +226,7 @@
|
||||
| Package Name | Version |
|
||||
| -------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| Android Command Line Tools | 16.0 |
|
||||
| Android Emulator | 36.4.9 |
|
||||
| Android Emulator | 36.4.10 |
|
||||
| Android SDK Build-tools | 36.0.0 36.1.0<br>35.0.0 35.0.1 |
|
||||
| Android SDK Platforms | android-36.1 (rev 1)<br>android-36-ext19 (rev 1)<br>android-36-ext18 (rev 1)<br>android-36 (rev 2)<br>android-35-ext15 (rev 1)<br>android-35-ext14 (rev 1)<br>android-35 (rev 2) |
|
||||
| Android SDK Platform-Tools | 37.0.0 |
|
||||
|
||||
@@ -6,12 +6,12 @@
|
||||
# macOS 26
|
||||
- OS Version: macOS 26.3 (25D125)
|
||||
- Kernel Version: Darwin 25.3.0
|
||||
- Image Version: 20260303.0251.1
|
||||
- Image Version: 20260325.0302.1
|
||||
|
||||
## Installed Software
|
||||
|
||||
### Language and Runtime
|
||||
- .NET Core SDK: 8.0.101, 8.0.204, 8.0.303, 8.0.418, 9.0.102, 9.0.203, 9.0.311, 10.0.103
|
||||
- .NET Core SDK: 8.0.101, 8.0.204, 8.0.303, 8.0.419, 9.0.102, 9.0.203, 9.0.312, 10.0.103, 10.0.201
|
||||
- Bash 3.2.57(1)-release
|
||||
- Clang/LLVM 17.0.0
|
||||
- Clang/LLVM (Homebrew) 20.1.8 - available on `$(brew --prefix llvm@20)/bin/clang`
|
||||
@@ -21,43 +21,43 @@
|
||||
- GNU Fortran 13 (Homebrew GCC 13.4.0) - available by `gfortran-13` alias
|
||||
- GNU Fortran 14 (Homebrew GCC 14.3.0) - available by `gfortran-14` alias
|
||||
- GNU Fortran 15 (Homebrew GCC 15.2.0_1) - available by `gfortran-15` alias
|
||||
- Kotlin 2.3.10-release-465
|
||||
- Node.js 24.14.0
|
||||
- Perl 5.42.0
|
||||
- Kotlin 2.3.20-release-208
|
||||
- Node.js 24.14.1
|
||||
- Perl 5.42.1
|
||||
- Python3 3.14.3
|
||||
- Ruby 3.4.8
|
||||
- Ruby 3.4.9
|
||||
|
||||
### Package Management
|
||||
- Bundler 4.0.7
|
||||
- Bundler 4.0.9
|
||||
- Carthage 0.40.0
|
||||
- CocoaPods 1.16.2
|
||||
- Homebrew 5.0.16
|
||||
- NPM 11.9.0
|
||||
- Homebrew 5.1.1
|
||||
- NPM 11.11.0
|
||||
- Pip3 26.0 (python 3.14)
|
||||
- Pipx 1.8.0
|
||||
- RubyGems 4.0.7
|
||||
- Vcpkg 2026 (build from commit 39a6cc0e44)
|
||||
- Pipx 1.11.0
|
||||
- RubyGems 4.0.9
|
||||
- Vcpkg 2026 (build from commit ff8f729804)
|
||||
- Yarn 1.22.22
|
||||
|
||||
### Project Management
|
||||
- Apache Ant 1.10.15
|
||||
- Apache Maven 3.9.12
|
||||
- Gradle 9.3.1
|
||||
- Apache Maven 3.9.14
|
||||
- Gradle 9.4.1
|
||||
|
||||
### Utilities
|
||||
- 7-Zip 17.05
|
||||
- aria2 1.37.0
|
||||
- azcopy 10.32.1
|
||||
- bazel 9.0.0
|
||||
- azcopy 10.32.2
|
||||
- bazel 9.0.1
|
||||
- bazelisk 1.28.1
|
||||
- bsdtar 3.5.3 - available by 'tar' alias
|
||||
- Curl 8.7.1
|
||||
- Git 2.53.0
|
||||
- Git LFS 3.7.1
|
||||
- GitHub CLI 2.87.3
|
||||
- GitHub CLI 2.88.1
|
||||
- GNU Tar 1.35 - available by 'gtar' alias
|
||||
- GNU Wget 1.25.0
|
||||
- gpg (GnuPG) 2.4.9
|
||||
- gpg (GnuPG) 2.5.18
|
||||
- jq 1.8.1
|
||||
- OpenSSL 3.6.1 27 Jan 2026 (Library: OpenSSL 3.6.1 27 Jan 2026)
|
||||
- Packer 1.15.0
|
||||
@@ -68,29 +68,29 @@
|
||||
- Ninja 1.13.2
|
||||
|
||||
### Tools
|
||||
- AWS CLI 2.34.0
|
||||
- AWS SAM CLI 1.154.0
|
||||
- AWS Session Manager CLI 1.2.779.0
|
||||
- AWS CLI 2.34.16
|
||||
- AWS SAM CLI 1.156.0
|
||||
- AWS Session Manager CLI 1.2.792.0
|
||||
- Azure CLI 2.84.0
|
||||
- Azure CLI (azure-devops) 1.0.2
|
||||
- Bicep CLI 0.41.2
|
||||
- Cmake 4.2.3
|
||||
- CodeQL Action Bundle 2.24.2
|
||||
- Cmake 4.3.0
|
||||
- CodeQL Action Bundle 2.24.3
|
||||
- Fastlane 2.232.2
|
||||
- SwiftFormat 0.59.1
|
||||
- SwiftFormat 0.60.1
|
||||
- Xcbeautify 3.1.4
|
||||
- Xcode Command Line Tools 26.3.0.0.1.1771626560
|
||||
- Xcode Command Line Tools 26.4.0.0.1774242506
|
||||
- Xcodes 1.6.2
|
||||
|
||||
### Browsers
|
||||
- Safari 26.3 (21623.2.7.11.6)
|
||||
- SafariDriver 26.3 (21623.2.7.11.6)
|
||||
- Google Chrome 145.0.7632.117
|
||||
- Google Chrome for Testing 145.0.7632.117
|
||||
- ChromeDriver 145.0.7632.117
|
||||
- Microsoft Edge 145.0.3800.82
|
||||
- Microsoft Edge WebDriver 145.0.3800.82
|
||||
- Mozilla Firefox 148.0
|
||||
- Google Chrome 146.0.7680.165
|
||||
- Google Chrome for Testing 146.0.7680.165
|
||||
- ChromeDriver 146.0.7680.165
|
||||
- Microsoft Edge 146.0.3856.72
|
||||
- Microsoft Edge WebDriver 146.0.3856.72
|
||||
- Mozilla Firefox 149.0
|
||||
- geckodriver 0.36.0
|
||||
- Selenium server 4.41.0
|
||||
|
||||
@@ -114,8 +114,8 @@
|
||||
#### Ruby
|
||||
- 3.2.10
|
||||
- 3.3.10
|
||||
- 3.4.8
|
||||
- 4.0.1
|
||||
- 3.4.9
|
||||
- 4.0.2
|
||||
|
||||
#### Python
|
||||
- 3.11.9
|
||||
@@ -124,41 +124,41 @@
|
||||
- 3.14.3
|
||||
|
||||
#### Node.js
|
||||
- 20.20.0
|
||||
- 22.22.0
|
||||
- 24.14.0
|
||||
- 20.20.2
|
||||
- 22.22.2
|
||||
- 24.14.1
|
||||
|
||||
#### Go
|
||||
- 1.23.12
|
||||
- 1.24.13
|
||||
- 1.25.7
|
||||
- 1.25.8
|
||||
|
||||
### Rust Tools
|
||||
- Cargo 1.93.1
|
||||
- Rust 1.93.1
|
||||
- Rustdoc 1.93.1
|
||||
- Rustup 1.28.2
|
||||
- Cargo 1.94.0
|
||||
- Rust 1.94.0
|
||||
- Rustdoc 1.94.0
|
||||
- Rustup 1.29.0
|
||||
|
||||
#### Packages
|
||||
- Clippy 0.1.93
|
||||
- Clippy 0.1.94
|
||||
- Rustfmt 1.8.0-stable
|
||||
|
||||
### PowerShell Tools
|
||||
- PowerShell 7.4.13
|
||||
- PowerShell 7.4.14
|
||||
|
||||
#### PowerShell Modules
|
||||
- Az: 14.6.0
|
||||
- Pester: 5.7.1
|
||||
- PSScriptAnalyzer: 1.24.0
|
||||
- PSScriptAnalyzer: 1.25.0
|
||||
|
||||
### Xcode
|
||||
| Version | Build | Path | Symlinks |
|
||||
| -------------- | -------- | ----------------------------------- | -------------------------------------------------------------- |
|
||||
| 26.4 (beta) | 17E5170d | /Applications/Xcode_26.4_beta_2.app | /Applications/Xcode_26.4.0.app<br>/Applications/Xcode_26.4.app |
|
||||
| 26.3 | 17C529 | /Applications/Xcode_26.3.app | /Applications/Xcode_26.3.0.app |
|
||||
| 26.2 (default) | 17C52 | /Applications/Xcode_26.2.app | /Applications/Xcode_26.2.0.app<br>/Applications/Xcode.app |
|
||||
| 26.1.1 | 17B100 | /Applications/Xcode_26.1.1.app | /Applications/Xcode_26.1.app |
|
||||
| 26.0.1 | 17A400 | /Applications/Xcode_26.0.1.app | /Applications/Xcode_26.0.app |
|
||||
| Version | Build | Path | Symlinks |
|
||||
| -------------- | ------ | ---------------------------------------------- | -------------------------------------------------------------- |
|
||||
| 26.4 | 17E192 | /Applications/Xcode_26.4_Release_Candidate.app | /Applications/Xcode_26.4.0.app<br>/Applications/Xcode_26.4.app |
|
||||
| 26.3 | 17C529 | /Applications/Xcode_26.3.app | /Applications/Xcode_26.3.0.app |
|
||||
| 26.2 (default) | 17C52 | /Applications/Xcode_26.2.app | /Applications/Xcode_26.2.0.app<br>/Applications/Xcode.app |
|
||||
| 26.1.1 | 17B100 | /Applications/Xcode_26.1.1.app | /Applications/Xcode_26.1.app |
|
||||
| 26.0.1 | 17A400 | /Applications/Xcode_26.0.1.app | /Applications/Xcode_26.0.app |
|
||||
|
||||
#### Installed SDKs
|
||||
| SDK | SDK Name | Xcode Version |
|
||||
@@ -224,7 +224,7 @@
|
||||
| Package Name | Version |
|
||||
| -------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| Android Command Line Tools | 16.0 |
|
||||
| Android Emulator | 36.4.9 |
|
||||
| Android Emulator | 36.4.10 |
|
||||
| Android SDK Build-tools | 36.0.0 36.1.0<br>35.0.0 35.0.1 |
|
||||
| Android SDK Platforms | android-36.1 (rev 1)<br>android-36-ext19 (rev 1)<br>android-36-ext18 (rev 1)<br>android-36 (rev 2)<br>android-35-ext15 (rev 1)<br>android-35-ext14 (rev 1)<br>android-35 (rev 2) |
|
||||
| Android SDK Platform-Tools | 37.0.0 |
|
||||
|
||||
@@ -9,5 +9,7 @@ source ~/utils/utils.sh
|
||||
llvmVersion=$(get_toolset_value '.llvm.version')
|
||||
|
||||
brew_smart_install "llvm@${llvmVersion}"
|
||||
# After brew update to 5.1.0 we have to manually unlink llvm to avoid conflicts with pre-installed llvm on macOS
|
||||
brew unlink "llvm@${llvmVersion}"
|
||||
|
||||
invoke_tests "LLVM"
|
||||
|
||||
@@ -9,4 +9,9 @@ Describe "Clang/LLVM" {
|
||||
$clangVersion = & "$(brew --prefix llvm@$toolsetVersion)/bin/clang" --version
|
||||
$clangVersion[0] | Should -BeLike "*${toolsetVersion}*"
|
||||
}
|
||||
|
||||
It "Default clang points to Apple clang" {
|
||||
(Get-CommandResult "which clang").Output.Trim() | Should -Be "/usr/bin/clang"
|
||||
(Get-CommandResult "clang --version").Output | Should -BeLike "*Apple clang*"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,12 +4,11 @@
|
||||
"x64": {
|
||||
"versions": [
|
||||
{
|
||||
"link": "26.4_Release_Candidate",
|
||||
"filename": "Xcode_26.4_Release_Candidate_Universal",
|
||||
"link": "26.4",
|
||||
"filename": "Xcode_26.4_Universal",
|
||||
"version": "26.4+17E192",
|
||||
"symlinks": ["26.4"],
|
||||
"sha256": "1049032d89389cc7d803d7097359a7420c2e9747b4ce2b9cf4b81c9f3f634dfa",
|
||||
"install_runtimes": "none"
|
||||
"install_runtimes": "default"
|
||||
},
|
||||
{
|
||||
"link": "26.3",
|
||||
@@ -43,19 +42,18 @@
|
||||
"version": "26.0.1+17A400",
|
||||
"symlinks": ["26.0"],
|
||||
"sha256": "9881c457068c86ac91e94cca2d7116dfd01cb7179c22b0863b63c7f3bb7e7695",
|
||||
"install_runtimes": "default"
|
||||
"install_runtimes": "none"
|
||||
}
|
||||
]
|
||||
},
|
||||
"arm64": {
|
||||
"versions": [
|
||||
{
|
||||
"link": "26.4_Release_Candidate",
|
||||
"filename": "Xcode_26.4_Release_Candidate_Universal",
|
||||
"link": "26.4",
|
||||
"filename": "Xcode_26.4_Universal",
|
||||
"version": "26.4+17E192",
|
||||
"symlinks": ["26.4"],
|
||||
"sha256": "1049032d89389cc7d803d7097359a7420c2e9747b4ce2b9cf4b81c9f3f634dfa",
|
||||
"install_runtimes": "none"
|
||||
"install_runtimes": "default"
|
||||
},
|
||||
{
|
||||
"link": "26.3",
|
||||
@@ -90,7 +88,7 @@
|
||||
"version": "26.0.1+17A400",
|
||||
"symlinks": ["26.0"],
|
||||
"sha256": "9881c457068c86ac91e94cca2d7116dfd01cb7179c22b0863b63c7f3bb7e7695",
|
||||
"install_runtimes": "default"
|
||||
"install_runtimes": "none"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
# Ubuntu 22.04
|
||||
- OS Version: 22.04.5 LTS
|
||||
- Kernel Version: 6.8.0-1044-azure
|
||||
- Image Version: 20260309.57.1
|
||||
- Image Version: 20260322.68.1
|
||||
- Systemd version: 249.11-0ubuntu3.17
|
||||
|
||||
## Installed Software
|
||||
@@ -19,7 +19,7 @@
|
||||
- GNU C++: 10.5.0, 11.4.0, 12.3.0
|
||||
- GNU Fortran: 10.5.0, 11.4.0, 12.3.0
|
||||
- Julia 1.12.5
|
||||
- Kotlin 2.3.10-release-465
|
||||
- Kotlin 2.3.20-release-208
|
||||
- Mono 6.12.0.200
|
||||
- MSBuild 16.10.1.31701 (Mono 6.12.0.200)
|
||||
- Node.js 20.20.1
|
||||
@@ -30,16 +30,16 @@
|
||||
|
||||
### Package Management
|
||||
- cpan 1.64
|
||||
- Helm 3.20.0
|
||||
- Homebrew 5.0.16
|
||||
- Helm 3.20.1
|
||||
- Homebrew 5.1.0
|
||||
- Miniconda 26.1.1
|
||||
- Npm 10.8.2
|
||||
- NuGet 6.6.1.2
|
||||
- Pip 22.0.2
|
||||
- Pip3 22.0.2
|
||||
- Pipx 1.8.0
|
||||
- Pipx 1.10.1
|
||||
- RubyGems 3.3.5
|
||||
- Vcpkg (build from commit 751fdf7bbc)
|
||||
- Vcpkg (build from commit b472291f29)
|
||||
- Yarn 1.22.22
|
||||
|
||||
#### Environment variables
|
||||
@@ -58,16 +58,16 @@ to accomplish this.
|
||||
|
||||
### Project Management
|
||||
- Ant 1.10.12
|
||||
- Gradle 9.4.0
|
||||
- Lerna 9.0.5
|
||||
- Maven 3.9.13
|
||||
- Sbt 1.12.5
|
||||
- Gradle 9.4.1
|
||||
- Lerna 9.0.7
|
||||
- Maven 3.9.14
|
||||
- Sbt 1.12.6
|
||||
|
||||
### Tools
|
||||
- Ansible 2.17.14
|
||||
- apt-fast 1.10.0
|
||||
- AzCopy 10.32.1 - available by `azcopy` and `azcopy10` aliases
|
||||
- Bazel 9.0.0
|
||||
- AzCopy 10.32.2 - available by `azcopy` and `azcopy10` aliases
|
||||
- Bazel 9.0.1
|
||||
- Bazelisk 1.28.1
|
||||
- Bicep 0.41.2
|
||||
- Buildah 1.23.1
|
||||
@@ -83,10 +83,10 @@ to accomplish this.
|
||||
- Git LFS 3.7.1
|
||||
- Git-ftp 1.6.0
|
||||
- Haveged 1.9.14
|
||||
- Heroku 10.17.0
|
||||
- Heroku 11.0.0
|
||||
- jq 1.6
|
||||
- Kind 0.31.0
|
||||
- Kubectl 1.35.2
|
||||
- Kubectl 1.35.3
|
||||
- Kustomize 5.8.1
|
||||
- Leiningen 2.12.0
|
||||
- MediaInfo 21.09
|
||||
@@ -99,30 +99,30 @@ to accomplish this.
|
||||
- Packer 1.15.0
|
||||
- Parcel 2.16.4
|
||||
- Podman 3.4.4
|
||||
- Pulumi 3.225.1
|
||||
- R 4.5.2
|
||||
- Pulumi 3.227.0
|
||||
- R 4.5.3
|
||||
- Skopeo 1.4.1
|
||||
- Sphinx Open Source Search Server 2.2.11
|
||||
- SVN 1.14.1
|
||||
- Terraform 1.14.6
|
||||
- Terraform 1.14.7
|
||||
- yamllint 1.38.0
|
||||
- yq 4.52.4
|
||||
- zstd 1.5.7
|
||||
- Ninja 1.13.2
|
||||
|
||||
### CLI Tools
|
||||
- Alibaba Cloud CLI 3.2.12
|
||||
- AWS CLI 2.34.5
|
||||
- AWS CLI Session Manager Plugin 1.2.779.0
|
||||
- AWS SAM CLI 1.155.2
|
||||
- Alibaba Cloud CLI 3.3.2
|
||||
- AWS CLI 2.34.14
|
||||
- AWS CLI Session Manager Plugin 1.2.792.0
|
||||
- AWS SAM CLI 1.156.0
|
||||
- Azure CLI 2.84.0
|
||||
- Azure CLI (azure-devops) 1.0.2
|
||||
- GitHub CLI 2.87.3
|
||||
- Google Cloud CLI 559.0.0
|
||||
- Netlify CLI 24.0.1
|
||||
- OpenShift CLI 4.21.4
|
||||
- ORAS CLI 1.3.0
|
||||
- Vercel CLI 50.29.0
|
||||
- GitHub CLI 2.88.1
|
||||
- Google Cloud CLI 561.0.0
|
||||
- Netlify CLI 24.4.0
|
||||
- OpenShift CLI 4.21.6
|
||||
- ORAS CLI 1.3.1
|
||||
- Vercel CLI 50.35.0
|
||||
|
||||
### Java
|
||||
| Version | Environment Variable |
|
||||
@@ -151,7 +151,7 @@ Both Xdebug and PCOV extensions are installed, but only Xdebug is enabled.
|
||||
- Cargo 1.94.0
|
||||
- Rust 1.94.0
|
||||
- Rustdoc 1.94.0
|
||||
- Rustup 1.28.2
|
||||
- Rustup 1.29.0
|
||||
|
||||
#### Packages
|
||||
- Bindgen 0.72.1
|
||||
@@ -162,13 +162,13 @@ Both Xdebug and PCOV extensions are installed, but only Xdebug is enabled.
|
||||
- Rustfmt 1.8.0
|
||||
|
||||
### Browsers and Drivers
|
||||
- Google Chrome 145.0.7632.159
|
||||
- ChromeDriver 145.0.7632.117
|
||||
- Chromium 145.0.7632.0
|
||||
- Microsoft Edge 145.0.3800.97
|
||||
- Microsoft Edge WebDriver 145.0.3800.97
|
||||
- Google Chrome 146.0.7680.153
|
||||
- ChromeDriver 146.0.7680.153
|
||||
- Chromium 146.0.7680.0
|
||||
- Microsoft Edge 146.0.3856.72
|
||||
- Microsoft Edge WebDriver 146.0.3856.72
|
||||
- Selenium server 4.41.0
|
||||
- Mozilla Firefox 148.0
|
||||
- Mozilla Firefox 148.0.2
|
||||
- Geckodriver 0.36.0
|
||||
|
||||
#### Environment variables
|
||||
@@ -180,7 +180,7 @@ Both Xdebug and PCOV extensions are installed, but only Xdebug is enabled.
|
||||
| SELENIUM_JAR_PATH | /usr/share/java/selenium-server.jar |
|
||||
|
||||
### .NET Tools
|
||||
- .NET Core SDK: 8.0.124, 8.0.206, 8.0.319, 8.0.418, 9.0.114, 9.0.205, 9.0.311, 10.0.102
|
||||
- .NET Core SDK: 8.0.125, 8.0.206, 8.0.319, 8.0.419, 9.0.115, 9.0.205, 9.0.312, 10.0.105, 10.0.201
|
||||
- nbgv 3.9.50+6feeb89450
|
||||
|
||||
### Databases
|
||||
@@ -232,23 +232,23 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
- 3.8.16 [PyPy 7.3.11]
|
||||
- 3.9.19 [PyPy 7.3.16]
|
||||
- 3.10.16 [PyPy 7.3.19]
|
||||
- 3.11.13 [PyPy 7.3.20]
|
||||
- 3.11.15 [PyPy 7.3.21]
|
||||
|
||||
#### Ruby
|
||||
- 3.2.10
|
||||
- 3.3.10
|
||||
- 3.4.8
|
||||
- 4.0.1
|
||||
- 3.4.9
|
||||
- 4.0.2
|
||||
|
||||
### PowerShell Tools
|
||||
- PowerShell 7.4.13
|
||||
- PowerShell 7.4.14
|
||||
|
||||
#### PowerShell Modules
|
||||
- Az: 14.6.0
|
||||
- MarkdownPS: 1.10
|
||||
- Microsoft.Graph: 2.35.1
|
||||
- Microsoft.Graph: 2.36.1
|
||||
- Pester: 5.7.1
|
||||
- PSScriptAnalyzer: 1.24.0
|
||||
- PSScriptAnalyzer: 1.25.0
|
||||
|
||||
### Web Servers
|
||||
| Name | Version | ConfigFile | ServiceStatus | ListenPort |
|
||||
@@ -290,8 +290,8 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| bison | 2:3.8.2+dfsg-1build1 |
|
||||
| brotli | 1.0.9-2build6 |
|
||||
| bzip2 | 1.0.8-5build1 |
|
||||
| coreutils | 8.32-4.1ubuntu1.2 |
|
||||
| curl | 7.81.0-1ubuntu1.22 |
|
||||
| coreutils | 8.32-4.1ubuntu1.3 |
|
||||
| curl | 7.81.0-1ubuntu1.23 |
|
||||
| dbus | 1.12.20-2ubuntu4.1 |
|
||||
| dnsutils | 1:9.18.39-0ubuntu0.22.04.2 |
|
||||
| dpkg | 1.21.1ubuntu2.6 |
|
||||
@@ -314,7 +314,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| libc++-dev | 1:14.0-55\~exp2 |
|
||||
| libc++abi-dev | 1:14.0-55\~exp2 |
|
||||
| libc6-dev | 2.35-0ubuntu3.13 |
|
||||
| libcurl4 | 7.81.0-1ubuntu1.22 |
|
||||
| libcurl4 | 7.81.0-1ubuntu1.23 |
|
||||
| libgbm-dev | 23.2.1-1ubuntu3.1\~22.04.3 |
|
||||
| libgconf-2-4 | 3.2.6-7ubuntu2 |
|
||||
| libgsl-dev | 2.7.1+dfsg-3 |
|
||||
@@ -339,7 +339,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| mercurial | 6.1.1-1ubuntu1 |
|
||||
| net-tools | 1.60+git20181103.0eebece-1ubuntu5.4 |
|
||||
| netcat | 1.218-4ubuntu1 |
|
||||
| openssh-client | 1:8.9p1-3ubuntu0.13 |
|
||||
| openssh-client | 1:8.9p1-3ubuntu0.14 |
|
||||
| p7zip-full | 16.02+dfsg-8 |
|
||||
| p7zip-rar | 16.02-3build1 |
|
||||
| parallel | 20210822+ds-2 |
|
||||
@@ -354,10 +354,10 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| shellcheck | 0.8.0-2 |
|
||||
| sphinxsearch | 2.2.11-8 |
|
||||
| sqlite3 | 3.37.2-2ubuntu0.5 |
|
||||
| ssh | 1:8.9p1-3ubuntu0.13 |
|
||||
| ssh | 1:8.9p1-3ubuntu0.14 |
|
||||
| sshpass | 1.09-1 |
|
||||
| subversion | 1.14.1-3ubuntu0.22.04.1 |
|
||||
| sudo | 1.9.9-1ubuntu2.5 |
|
||||
| sudo | 1.9.9-1ubuntu2.6 |
|
||||
| swig | 4.0.2-1ubuntu1 |
|
||||
| systemd-coredump | 249.11-0ubuntu3.17 |
|
||||
| tar | 1.34+dfsg-1ubuntu0.1.22.04.2 |
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
| [[Windows/Ubuntu] Docker Server and Client will be updated to version 29.1.*, Docker Compose will be updated to version 2.40.3 on February 9th, 2026](https://github.com/actions/runner-images/issues/13474) |
|
||||
***
|
||||
# Ubuntu 24.04
|
||||
- OS Version: 24.04.3 LTS
|
||||
- Kernel Version: 6.14.0-1017-azure
|
||||
- Image Version: 20260309.50.1
|
||||
- OS Version: 24.04.4 LTS
|
||||
- Kernel Version: 6.17.0-1008-azure
|
||||
- Image Version: 20260323.65.1
|
||||
- Systemd version: 255.4-1ubuntu8.12
|
||||
|
||||
## Installed Software
|
||||
@@ -19,7 +19,7 @@
|
||||
- GNU C++: 12.4.0, 13.3.0, 14.2.0
|
||||
- GNU Fortran: 12.4.0, 13.3.0, 14.2.0
|
||||
- Julia 1.12.5
|
||||
- Kotlin 2.3.10-release-465
|
||||
- Kotlin 2.3.20-release-208
|
||||
- Node.js 20.20.1
|
||||
- Perl 5.38.2
|
||||
- Python 3.12.3
|
||||
@@ -28,15 +28,15 @@
|
||||
|
||||
### Package Management
|
||||
- cpan 1.64
|
||||
- Helm 3.20.0
|
||||
- Homebrew 5.0.16
|
||||
- Helm 3.20.1
|
||||
- Homebrew 5.1.1
|
||||
- Miniconda 26.1.1
|
||||
- Npm 10.8.2
|
||||
- Pip 24.0
|
||||
- Pip3 24.0
|
||||
- Pipx 1.8.0
|
||||
- Pipx 1.11.0
|
||||
- RubyGems 3.4.20
|
||||
- Vcpkg (build from commit 751fdf7bbc)
|
||||
- Vcpkg (build from commit 596c7b12a7)
|
||||
- Yarn 1.22.22
|
||||
|
||||
#### Environment variables
|
||||
@@ -55,14 +55,14 @@ to accomplish this.
|
||||
|
||||
### Project Management
|
||||
- Ant 1.10.14
|
||||
- Gradle 9.4.0
|
||||
- Lerna 9.0.5
|
||||
- Maven 3.9.13
|
||||
- Gradle 9.4.1
|
||||
- Lerna 9.0.7
|
||||
- Maven 3.9.14
|
||||
|
||||
### Tools
|
||||
- Ansible 2.20.3
|
||||
- AzCopy 10.32.1 - available by `azcopy` and `azcopy10` aliases
|
||||
- Bazel 9.0.0
|
||||
- Ansible 2.20.4
|
||||
- AzCopy 10.32.2 - available by `azcopy` and `azcopy10` aliases
|
||||
- Bazel 9.0.1
|
||||
- Bazelisk 1.28.1
|
||||
- Bicep 0.41.2
|
||||
- Buildah 1.33.7
|
||||
@@ -80,7 +80,7 @@ to accomplish this.
|
||||
- Haveged 1.9.14
|
||||
- jq 1.7
|
||||
- Kind 0.31.0
|
||||
- Kubectl 1.35.2
|
||||
- Kubectl 1.35.3
|
||||
- Kustomize 5.8.1
|
||||
- MediaInfo 24.01
|
||||
- Mercurial 6.7.2
|
||||
@@ -92,7 +92,7 @@ to accomplish this.
|
||||
- Packer 1.15.0
|
||||
- Parcel 2.16.4
|
||||
- Podman 4.9.3
|
||||
- Pulumi 3.225.1
|
||||
- Pulumi 3.227.0
|
||||
- Skopeo 1.13.3
|
||||
- Sphinx Open Source Search Server 2.2.11
|
||||
- yamllint 1.38.0
|
||||
@@ -101,13 +101,13 @@ to accomplish this.
|
||||
- Ninja 1.13.2
|
||||
|
||||
### CLI Tools
|
||||
- AWS CLI 2.34.5
|
||||
- AWS CLI Session Manager Plugin 1.2.779.0
|
||||
- AWS SAM CLI 1.155.2
|
||||
- AWS CLI 2.34.15
|
||||
- AWS CLI Session Manager Plugin 1.2.792.0
|
||||
- AWS SAM CLI 1.156.0
|
||||
- Azure CLI 2.84.0
|
||||
- Azure CLI (azure-devops) 1.0.2
|
||||
- GitHub CLI 2.87.3
|
||||
- Google Cloud CLI 559.0.0
|
||||
- GitHub CLI 2.88.1
|
||||
- Google Cloud CLI 561.0.0
|
||||
|
||||
### Java
|
||||
| Version | Environment Variable |
|
||||
@@ -136,19 +136,19 @@ Both Xdebug and PCOV extensions are installed, but only Xdebug is enabled.
|
||||
- Cargo 1.94.0
|
||||
- Rust 1.94.0
|
||||
- Rustdoc 1.94.0
|
||||
- Rustup 1.28.2
|
||||
- Rustup 1.29.0
|
||||
|
||||
#### Packages
|
||||
- Rustfmt 1.8.0
|
||||
|
||||
### Browsers and Drivers
|
||||
- Google Chrome 145.0.7632.159
|
||||
- ChromeDriver 145.0.7632.117
|
||||
- Chromium 145.0.7632.0
|
||||
- Microsoft Edge 145.0.3800.97
|
||||
- Microsoft Edge WebDriver 145.0.3800.97
|
||||
- Google Chrome 146.0.7680.164
|
||||
- ChromeDriver 146.0.7680.165
|
||||
- Chromium 146.0.7680.0
|
||||
- Microsoft Edge 146.0.3856.72
|
||||
- Microsoft Edge WebDriver 146.0.3856.72
|
||||
- Selenium server 4.41.0
|
||||
- Mozilla Firefox 148.0
|
||||
- Mozilla Firefox 148.0.2
|
||||
- Geckodriver 0.36.0
|
||||
|
||||
#### Environment variables
|
||||
@@ -160,7 +160,7 @@ Both Xdebug and PCOV extensions are installed, but only Xdebug is enabled.
|
||||
| SELENIUM_JAR_PATH | /usr/share/java/selenium-server.jar |
|
||||
|
||||
### .NET Tools
|
||||
- .NET Core SDK: 8.0.124, 8.0.206, 8.0.319, 8.0.418, 9.0.114, 9.0.205, 9.0.311, 10.0.102
|
||||
- .NET Core SDK: 8.0.125, 8.0.206, 8.0.319, 8.0.419, 9.0.115, 9.0.205, 9.0.312, 10.0.105, 10.0.201
|
||||
- nbgv 3.9.50+6feeb89450
|
||||
|
||||
### Databases
|
||||
@@ -206,22 +206,22 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
#### PyPy
|
||||
- 3.9.19 [PyPy 7.3.16]
|
||||
- 3.10.16 [PyPy 7.3.19]
|
||||
- 3.11.13 [PyPy 7.3.20]
|
||||
- 3.11.15 [PyPy 7.3.21]
|
||||
|
||||
#### Ruby
|
||||
- 3.2.10
|
||||
- 3.3.10
|
||||
- 3.4.8
|
||||
- 4.0.1
|
||||
- 3.4.9
|
||||
- 4.0.2
|
||||
|
||||
### PowerShell Tools
|
||||
- PowerShell 7.4.13
|
||||
- PowerShell 7.4.14
|
||||
|
||||
#### PowerShell Modules
|
||||
- Az: 14.6.0
|
||||
- Microsoft.Graph: 2.35.1
|
||||
- Microsoft.Graph: 2.36.1
|
||||
- Pester: 5.7.1
|
||||
- PSScriptAnalyzer: 1.24.0
|
||||
- PSScriptAnalyzer: 1.25.0
|
||||
|
||||
### Web Servers
|
||||
| Name | Version | ConfigFile | ServiceStatus | ListenPort |
|
||||
@@ -259,12 +259,12 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| aria2 | 1.37.0+debian-1build3 |
|
||||
| autoconf | 2.71-3 |
|
||||
| automake | 1:1.16.5-1.3ubuntu1 |
|
||||
| binutils | 2.42-4ubuntu2.8 |
|
||||
| binutils | 2.42-4ubuntu2.10 |
|
||||
| bison | 2:3.8.2+dfsg-1build2 |
|
||||
| brotli | 1.1.0-2build2 |
|
||||
| bzip2 | 1.0.8-5.1build0.1 |
|
||||
| coreutils | 9.4-3ubuntu6.1 |
|
||||
| curl | 8.5.0-2ubuntu10.7 |
|
||||
| coreutils | 9.4-3ubuntu6.2 |
|
||||
| curl | 8.5.0-2ubuntu10.8 |
|
||||
| dbus | 1.14.10-4ubuntu4.1 |
|
||||
| dnsutils | 1:9.18.39-0ubuntu0.24.04.2 |
|
||||
| dpkg | 1.22.6ubuntu6.5 |
|
||||
@@ -295,7 +295,7 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| mercurial | 6.7.2-1ubuntu2.2 |
|
||||
| net-tools | 2.10-0.1ubuntu4.4 |
|
||||
| netcat | 1.226-1ubuntu2 |
|
||||
| openssh-client | 1:9.6p1-3ubuntu13.14 |
|
||||
| openssh-client | 1:9.6p1-3ubuntu13.15 |
|
||||
| p7zip-full | 16.02+transitional.1 |
|
||||
| p7zip-rar | 16.02+transitional.1 |
|
||||
| parallel | 20231122+ds-1 |
|
||||
@@ -309,9 +309,9 @@ Use the following command as a part of your job to start the service: 'sudo syst
|
||||
| shellcheck | 0.9.0-1 |
|
||||
| sphinxsearch | 2.2.11-8build1 |
|
||||
| sqlite3 | 3.45.1-1ubuntu2.5 |
|
||||
| ssh | 1:9.6p1-3ubuntu13.14 |
|
||||
| ssh | 1:9.6p1-3ubuntu13.15 |
|
||||
| sshpass | 1.09-1 |
|
||||
| sudo | 1.9.15p5-3ubuntu5.24.04.1 |
|
||||
| sudo | 1.9.15p5-3ubuntu5.24.04.2 |
|
||||
| swig | 4.2.0-2ubuntu1 |
|
||||
| systemd-coredump | 255.4-1ubuntu8.12 |
|
||||
| tar | 1.35+dfsg-3build1 |
|
||||
|
||||
@@ -47,6 +47,7 @@ else
|
||||
fi
|
||||
|
||||
apt-get update
|
||||
apt-get upgrade -y
|
||||
# Install jq
|
||||
apt-get install jq
|
||||
|
||||
|
||||
@@ -4,8 +4,8 @@
|
||||
| [[Windows/Ubuntu] Docker Server and Client will be updated to version 29.1.*, Docker Compose will be updated to version 2.40.3 on February 9th, 2026](https://github.com/actions/runner-images/issues/13474) |
|
||||
***
|
||||
# Windows Server 2022
|
||||
- OS Version: 10.0.20348 Build 4773
|
||||
- Image Version: 20260301.50.1
|
||||
- OS Version: 10.0.20348 Build 4893
|
||||
- Image Version: 20260317.73.1
|
||||
|
||||
## Windows features
|
||||
- Windows Subsystem for Linux (WSLv1): Enabled
|
||||
@@ -16,25 +16,25 @@
|
||||
- Bash 5.2.37(1)-release
|
||||
- Go 1.24.13
|
||||
- Julia 1.12.0
|
||||
- Kotlin 2.3.10
|
||||
- Kotlin 2.3.20
|
||||
- LLVM 20.1.8
|
||||
- Node 20.20.0
|
||||
- Node 20.20.1
|
||||
- Perl 5.32.1
|
||||
- PHP 8.5.3
|
||||
- PHP 8.5.4
|
||||
- Python 3.12.10
|
||||
- Ruby 3.3.10
|
||||
|
||||
### Package Management
|
||||
- Chocolatey 2.6.0
|
||||
- Composer 2.9.5
|
||||
- Helm 4.1.0
|
||||
- Miniconda 25.11.1 (pre-installed on the image but not added to PATH)
|
||||
- Helm 4.1.3
|
||||
- Miniconda 26.1.1 (pre-installed on the image but not added to PATH)
|
||||
- NPM 10.8.2
|
||||
- NuGet 7.3.0.70
|
||||
- pip 26.0.1 (python 3.12)
|
||||
- Pipx 1.8.0
|
||||
- Pipx 1.9.0
|
||||
- RubyGems 3.5.22
|
||||
- Vcpkg (build from commit 62159a45e1)
|
||||
- Vcpkg (build from commit d90a9b159c)
|
||||
- Yarn 1.22.22
|
||||
|
||||
#### Environment variables
|
||||
@@ -45,27 +45,27 @@
|
||||
|
||||
### Project Management
|
||||
- Ant 1.10.15
|
||||
- Gradle 9.3
|
||||
- Maven 3.9.12
|
||||
- sbt 1.12.4
|
||||
- Gradle 9.4
|
||||
- Maven 3.9.14
|
||||
- sbt 1.12.6
|
||||
|
||||
### Tools
|
||||
- 7zip 26.00
|
||||
- aria2 1.37.0
|
||||
- azcopy 10.32.1
|
||||
- Bazel 9.0.0
|
||||
- Bazel 9.0.1
|
||||
- Bazelisk 1.28.1
|
||||
- Bicep 0.41.2
|
||||
- Cabal 3.16.1.0
|
||||
- CMake 3.31.6
|
||||
- CodeQL Action Bundle 2.24.2
|
||||
- CodeQL Action Bundle 2.24.3
|
||||
- Docker 29.1.5
|
||||
- Docker Compose v2 2.40.3
|
||||
- Docker-wincred 0.9.5
|
||||
- ghc 9.14.1
|
||||
- Git 2.53.0.windows.1
|
||||
- Git 2.53.0.windows.2
|
||||
- Git LFS 3.7.1
|
||||
- ImageMagick 7.1.2-15
|
||||
- ImageMagick 7.1.2-17
|
||||
- InnoSetup 6.7.1
|
||||
- jq 1.8.1
|
||||
- Kind 0.31.0
|
||||
@@ -78,8 +78,8 @@
|
||||
- NSIS 3.10
|
||||
- OpenSSL 3.6.1
|
||||
- Packer 1.15.0
|
||||
- Pulumi 3.224.0
|
||||
- R 4.5.2
|
||||
- Pulumi 3.226.0
|
||||
- R 4.5.3
|
||||
- Service Fabric SDK 10.1.2493.9590
|
||||
- Stack 3.9.3
|
||||
- Subversion (SVN) 1.14.5
|
||||
@@ -92,34 +92,34 @@
|
||||
- Ninja 1.13.2
|
||||
|
||||
### CLI Tools
|
||||
- Alibaba Cloud CLI 3.2.10
|
||||
- AWS CLI 2.34.0
|
||||
- AWS SAM CLI 1.154.0
|
||||
- AWS Session Manager CLI 1.2.779.0
|
||||
- Azure CLI 2.83.0
|
||||
- Alibaba Cloud CLI 3.3.1
|
||||
- AWS CLI 2.34.10
|
||||
- AWS SAM CLI 1.155.2
|
||||
- AWS Session Manager CLI 1.2.792.0
|
||||
- Azure CLI 2.84.0
|
||||
- Azure DevOps CLI extension 1.0.2
|
||||
- GitHub CLI 2.87.3
|
||||
- GitHub CLI 2.88.1
|
||||
|
||||
### Rust Tools
|
||||
- Cargo 1.93.1
|
||||
- Rust 1.93.1
|
||||
- Rustdoc 1.93.1
|
||||
- Rustup 1.28.2
|
||||
- Cargo 1.94.0
|
||||
- Rust 1.94.0
|
||||
- Rustdoc 1.94.0
|
||||
- Rustup 1.29.0
|
||||
|
||||
#### Packages
|
||||
- bindgen 0.72.1
|
||||
- cargo-audit 0.22.1
|
||||
- cargo-outdated 0.17.0
|
||||
- cbindgen 0.29.2
|
||||
- Clippy 0.1.93
|
||||
- Clippy 0.1.94
|
||||
- Rustfmt 1.8.0
|
||||
|
||||
### Browsers and Drivers
|
||||
- Google Chrome 145.0.7632.117
|
||||
- Chrome Driver 145.0.7632.117
|
||||
- Microsoft Edge 145.0.3800.82
|
||||
- Microsoft Edge Driver 145.0.3800.82
|
||||
- Mozilla Firefox 148.0
|
||||
- Google Chrome 146.0.7680.80
|
||||
- Chrome Driver 146.0.7680.80
|
||||
- Microsoft Edge 146.0.3856.59
|
||||
- Microsoft Edge Driver 146.0.3856.62
|
||||
- Mozilla Firefox 148.0.2
|
||||
- Gecko Driver 0.36.0
|
||||
- IE Driver 4.14.0.0
|
||||
- Selenium server 4.41.0
|
||||
@@ -164,11 +164,11 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
- 1.22.12
|
||||
- 1.23.12
|
||||
- 1.24.13
|
||||
- 1.25.7
|
||||
- 1.25.8
|
||||
|
||||
#### Node.js
|
||||
- 20.20.0
|
||||
- 22.22.0
|
||||
- 20.20.1
|
||||
- 22.22.1
|
||||
- 24.14.0
|
||||
|
||||
#### Python
|
||||
@@ -179,7 +179,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
- 3.14.3
|
||||
|
||||
#### PyPy
|
||||
- 2.7.18 [PyPy 7.3.20]
|
||||
- 2.7.18 [PyPy 7.3.21]
|
||||
- 3.7.13 [PyPy 7.3.9]
|
||||
- 3.8.16 [PyPy 7.3.11]
|
||||
- 3.9.19 [PyPy 7.3.16]
|
||||
@@ -188,8 +188,8 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
#### Ruby
|
||||
- 3.2.10
|
||||
- 3.3.10
|
||||
- 3.4.8
|
||||
- 4.0.1
|
||||
- 3.4.9
|
||||
- 4.0.2
|
||||
|
||||
### Databases
|
||||
|
||||
@@ -208,7 +208,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
#### MongoDB
|
||||
| Version | ServiceName | ServiceStatus | ServiceStartType |
|
||||
| -------- | ----------- | ------------- | ---------------- |
|
||||
| 7.0.30.0 | MongoDB | Stopped | Disabled |
|
||||
| 7.0.31.0 | MongoDB | Stopped | Disabled |
|
||||
|
||||
### Database tools
|
||||
- Azure CosmosDb Emulator 2.14.27.0
|
||||
@@ -217,18 +217,18 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
- SQL OLEDB Driver 18 18.7.5.0
|
||||
- SQL OLEDB Driver 19 19.4.1.0
|
||||
- SQLPS 1.0
|
||||
- MongoDB Shell (mongosh) 2.7.0
|
||||
- MongoDB Shell (mongosh) 2.8.1
|
||||
|
||||
### Web Servers
|
||||
| Name | Version | ConfigFile | ServiceName | ServiceStatus | ListenPort |
|
||||
| ------ | ------- | ------------------------------------- | ----------- | ------------- | ---------- |
|
||||
| Apache | 2.4.55 | C:\tools\Apache24\conf\httpd.conf | Apache | Stopped | 80 |
|
||||
| Nginx | 1.29.5 | C:\tools\nginx-1.29.5\conf\nginx.conf | nginx | Stopped | 80 |
|
||||
| Nginx | 1.29.6 | C:\tools\nginx-1.29.6\conf\nginx.conf | nginx | Stopped | 80 |
|
||||
|
||||
### Visual Studio Enterprise 2022
|
||||
| Name | Version | Path |
|
||||
| ----------------------------- | ------------- | -------------------------------------------------------- |
|
||||
| Visual Studio Enterprise 2022 | 17.14.37012.4 | C:\Program Files\Microsoft Visual Studio\2022\Enterprise |
|
||||
| Name | Version | Path |
|
||||
| ----------------------------- | -------------- | -------------------------------------------------------- |
|
||||
| Visual Studio Enterprise 2022 | 17.14.37111.16 | C:\Program Files\Microsoft Visual Studio\2022\Enterprise |
|
||||
|
||||
#### Workloads, components and extensions
|
||||
| Package | Version |
|
||||
@@ -253,12 +253,12 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
| Component.Unreal.Android | 17.14.36510.44 |
|
||||
| Component.Unreal.Debugger | 17.14.36907.17 |
|
||||
| Component.Unreal.Ide | 17.14.36510.44 |
|
||||
| Component.VisualStudio.GitHub.Copilot | 17.14.37011.9 |
|
||||
| Component.VisualStudio.GitHub.Copilot | 17.14.37111.13 |
|
||||
| Component.VSInstallerProjects2022 | 3.0.0 |
|
||||
| Component.WixToolset.VisualStudioExtension.Dev17 | 1.0.0.22 |
|
||||
| Component.WixToolset.VisualStudioExtension.Schemas3 | 1.0.0.22 |
|
||||
| Component.Xamarin | 17.14.36510.44 |
|
||||
| ComponentGroup.Microsoft.NET.AppModernization | 17.14.37011.9 |
|
||||
| ComponentGroup.Microsoft.NET.AppModernization | 17.14.37111.13 |
|
||||
| ios | 26.0.9752.0 |
|
||||
| maccatalyst | 26.0.9752.0 |
|
||||
| maui.blazor | 9.0.111.6930 |
|
||||
@@ -288,19 +288,19 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
| Microsoft.Net.ComponentGroup.4.8.DeveloperTools | 17.14.36510.44 |
|
||||
| Microsoft.Net.ComponentGroup.DevelopmentPrerequisites | 17.14.36510.44 |
|
||||
| Microsoft.Net.ComponentGroup.TargetingPacks.Common | 17.14.36510.44 |
|
||||
| microsoft.net.runtime.android | 9.0.1326.6317 |
|
||||
| microsoft.net.runtime.android.aot | 9.0.1326.6317 |
|
||||
| microsoft.net.runtime.android.aot.net8 | 9.0.1326.6317 |
|
||||
| microsoft.net.runtime.android.net8 | 9.0.1326.6317 |
|
||||
| microsoft.net.runtime.ios | 9.0.1326.6317 |
|
||||
| microsoft.net.runtime.maccatalyst | 9.0.1326.6317 |
|
||||
| microsoft.net.runtime.mono.tooling | 9.0.1326.6317 |
|
||||
| microsoft.net.runtime.mono.tooling.net8 | 9.0.1326.6317 |
|
||||
| microsoft.net.sdk.emscripten | 9.0.14.5604 |
|
||||
| microsoft.net.runtime.android | 9.0.1426.11910 |
|
||||
| microsoft.net.runtime.android.aot | 9.0.1426.11910 |
|
||||
| microsoft.net.runtime.android.aot.net8 | 9.0.1426.11910 |
|
||||
| microsoft.net.runtime.android.net8 | 9.0.1426.11910 |
|
||||
| microsoft.net.runtime.ios | 9.0.1426.11910 |
|
||||
| microsoft.net.runtime.maccatalyst | 9.0.1426.11910 |
|
||||
| microsoft.net.runtime.mono.tooling | 9.0.1426.11910 |
|
||||
| microsoft.net.runtime.mono.tooling.net8 | 9.0.1426.11910 |
|
||||
| microsoft.net.sdk.emscripten | 9.0.14.11003 |
|
||||
| Microsoft.NetCore.Component.DevelopmentTools | 17.14.36510.44 |
|
||||
| Microsoft.NetCore.Component.Runtime.8.0 | 17.14.36928.8 |
|
||||
| Microsoft.NetCore.Component.Runtime.9.0 | 17.14.36928.8 |
|
||||
| Microsoft.NetCore.Component.SDK | 17.14.36928.8 |
|
||||
| Microsoft.NetCore.Component.Runtime.8.0 | 17.14.37027.9 |
|
||||
| Microsoft.NetCore.Component.Runtime.9.0 | 17.14.37027.9 |
|
||||
| Microsoft.NetCore.Component.SDK | 17.14.37027.9 |
|
||||
| Microsoft.NetCore.Component.Web | 17.14.36510.44 |
|
||||
| Microsoft.VisualStudio.Component.AppInsights.Tools | 17.14.36510.44 |
|
||||
| Microsoft.VisualStudio.Component.AspNet | 17.14.36510.44 |
|
||||
@@ -321,7 +321,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
| Microsoft.VisualStudio.Component.DiagnosticTools | 17.14.36510.44 |
|
||||
| Microsoft.VisualStudio.Component.DockerTools | 17.14.36510.44 |
|
||||
| Microsoft.VisualStudio.Component.DotNetModelBuilder | 17.14.36510.44 |
|
||||
| Microsoft.VisualStudio.Component.DslTools | 17.14.36510.44 |
|
||||
| Microsoft.VisualStudio.Component.DslTools | 17.14.37111.13 |
|
||||
| Microsoft.VisualStudio.Component.EntityFramework | 17.14.36510.44 |
|
||||
| Microsoft.VisualStudio.Component.FSharp | 17.14.36510.44 |
|
||||
| Microsoft.VisualStudio.Component.FSharp.Desktop | 17.14.36510.44 |
|
||||
@@ -450,9 +450,9 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
| Microsoft.VisualStudio.Workload.Python | 17.14.36015.10 |
|
||||
| Microsoft.VisualStudio.Workload.Universal | 17.14.36331.10 |
|
||||
| Microsoft.VisualStudio.Workload.VisualStudioExtension | 17.14.36015.10 |
|
||||
| runtimes.ios | 9.0.1326.6317 |
|
||||
| runtimes.maccatalyst | 9.0.1326.6317 |
|
||||
| wasm.tools | 9.0.1326.6317 |
|
||||
| runtimes.ios | 9.0.1426.11910 |
|
||||
| runtimes.maccatalyst | 9.0.1426.11910 |
|
||||
| wasm.tools | 9.0.1426.11910 |
|
||||
| ProBITools.MicrosoftAnalysisServicesModelingProjects2022 | 4.0.0 |
|
||||
| ProBITools.MicrosoftReportProjectsforVisualStudio2022 | 4.0.0 |
|
||||
| SSIS.MicrosoftDataToolsIntegrationServices | 2.1.2 |
|
||||
@@ -481,11 +481,11 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
- 10.0.26100.0
|
||||
|
||||
### .NET Core Tools
|
||||
- .NET Core SDK: 8.0.124, 8.0.206, 8.0.319, 8.0.418, 9.0.114, 9.0.205, 9.0.311, 10.0.102
|
||||
- .NET Core SDK: 8.0.125, 8.0.206, 8.0.319, 8.0.419, 9.0.115, 9.0.205, 9.0.312, 10.0.105, 10.0.201
|
||||
- .NET Framework: 4.7.2, 4.8, 4.8.1
|
||||
- Microsoft.AspNetCore.App: 6.0.40, 8.0.6, 8.0.22, 8.0.24, 9.0.6, 9.0.13, 10.0.2
|
||||
- Microsoft.NETCore.App: 6.0.40, 8.0.6, 8.0.22, 8.0.24, 9.0.6, 9.0.13, 10.0.2
|
||||
- Microsoft.WindowsDesktop.App: 8.0.6, 8.0.22, 8.0.24, 9.0.6, 9.0.13, 10.0.2
|
||||
- Microsoft.AspNetCore.App: 6.0.40, 8.0.6, 8.0.22, 8.0.25, 9.0.6, 9.0.14, 10.0.5
|
||||
- Microsoft.NETCore.App: 6.0.40, 8.0.6, 8.0.22, 8.0.25, 9.0.6, 9.0.14, 10.0.5
|
||||
- Microsoft.WindowsDesktop.App: 8.0.6, 8.0.22, 8.0.25, 9.0.6, 9.0.14, 10.0.5
|
||||
- nbgv 3.9.50+6feeb89450
|
||||
|
||||
### PowerShell Tools
|
||||
@@ -493,10 +493,10 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
|
||||
#### Powershell Modules
|
||||
- Az: 14.6.0
|
||||
- AWSPowershell: 5.0.165
|
||||
- AWSPowershell: 5.0.176
|
||||
- DockerMsftProvider: 1.0.0.8
|
||||
- MarkdownPS: 1.10
|
||||
- Microsoft.Graph: 2.35.1
|
||||
- Microsoft.Graph: 2.36.0
|
||||
- Pester: 3.4.0, 5.7.1
|
||||
- PowerShellGet: 1.0.0.1, 2.2.5
|
||||
- PSScriptAnalyzer: 1.24.0
|
||||
@@ -508,10 +508,10 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
| Package Name | Version |
|
||||
| -------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| Android Command Line Tools | 8.0 |
|
||||
| Android Emulator | 36.4.9 |
|
||||
| Android Emulator | 36.4.10 |
|
||||
| Android SDK Build-tools | 36.0.0 36.1.0<br>35.0.0 35.0.1<br>34.0.0<br>32.0.0 |
|
||||
| Android SDK Platforms | android-36.1 (rev 1)<br>android-36-ext19 (rev 1)<br>android-36-ext18 (rev 1)<br>android-36 (rev 2)<br>android-35-ext15 (rev 1)<br>android-35-ext14 (rev 1)<br>android-35 (rev 2)<br>android-34-ext8 (rev 1)<br>android-34-ext12 (rev 1)<br>android-34-ext11 (rev 1)<br>android-34-ext10 (rev 1)<br>android-34 (rev 3)<br>android-33 (rev 3) |
|
||||
| Android SDK Platform-Tools | 36.0.2 |
|
||||
| Android SDK Platform-Tools | 37.0.0 |
|
||||
| Android Support Repository | 47.0.0 |
|
||||
| CMake | 3.22.1<br>3.31.5<br>4.1.2 |
|
||||
| Google Play services | 49 |
|
||||
@@ -534,6 +534,6 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
| mcr.microsoft.com/dotnet/framework/aspnet:4.8-windowsservercore-ltsc2022 | sha256:ec04e733695f49a0dc9132184f6b06704866b34f422004093c1972512c86259e | 2025-09-09 |
|
||||
| mcr.microsoft.com/dotnet/framework/runtime:4.8-windowsservercore-ltsc2022 | sha256:3983348680840ca6e53ad641e314c3c9184ca2fd19f88bc467600f7d9f6e9d73 | 2025-09-09 |
|
||||
| mcr.microsoft.com/dotnet/framework/sdk:4.8-windowsservercore-ltsc2022 | sha256:460dedaed73224f73ff10dc3ad754d0ed250aa57bcdf6c5052a811b4b7e29345 | 2025-09-09 |
|
||||
| mcr.microsoft.com/windows/nanoserver:ltsc2022 | sha256:60612a30303eb5a15ce7f53fa2eecf70bca41d72657de0482fbde601ae5f3403 | 2026-02-06 |
|
||||
| mcr.microsoft.com/windows/servercore:ltsc2022 | sha256:a264df8cd8c329eed3fd1e0cafcd4f3dc453e2c72a277f9bb140fd6f10a2eefc | 2026-02-06 |
|
||||
| mcr.microsoft.com/windows/nanoserver:ltsc2022 | sha256:be41510eb214c55def9162ef1fb5e71f1b71ce4d64d91bc963199f2383e034ea | 2026-03-03 |
|
||||
| mcr.microsoft.com/windows/servercore:ltsc2022 | sha256:d4c6d1a8a1a306b12691c3b2e5e3a8bfad786cbd6b7831cd74a9a6a99eab08ad | 2026-03-03 |
|
||||
|
||||
|
||||
@@ -4,8 +4,8 @@
|
||||
| [[Windows/Ubuntu] Docker Server and Client will be updated to version 29.1.*, Docker Compose will be updated to version 2.40.3 on February 9th, 2026](https://github.com/actions/runner-images/issues/13474) |
|
||||
***
|
||||
# Windows Server 2025
|
||||
- OS Version: 10.0.26100 Build 32370
|
||||
- Image Version: 20260302.43.1
|
||||
- OS Version: 10.0.26100 Build 32522
|
||||
- Image Version: 20260317.61.1
|
||||
|
||||
## Windows features
|
||||
- Windows Subsystem for Linux (WSLv1): Enabled
|
||||
@@ -17,25 +17,25 @@
|
||||
- Bash 5.2.37(1)-release
|
||||
- Go 1.24.13
|
||||
- Julia 1.12.0
|
||||
- Kotlin 2.3.10
|
||||
- Kotlin 2.3.20
|
||||
- LLVM 20.1.8
|
||||
- Node 22.22.0
|
||||
- Node 22.22.1
|
||||
- Perl 5.42.0
|
||||
- PHP 8.5.3
|
||||
- PHP 8.5.4
|
||||
- Python 3.12.10
|
||||
- Ruby 3.3.10
|
||||
|
||||
### Package Management
|
||||
- Chocolatey 2.6.0
|
||||
- Composer 2.9.5
|
||||
- Helm 4.1.0
|
||||
- Miniconda 25.11.1 (pre-installed on the image but not added to PATH)
|
||||
- Helm 4.1.3
|
||||
- Miniconda 26.1.1 (pre-installed on the image but not added to PATH)
|
||||
- NPM 10.9.4
|
||||
- NuGet 7.3.0.70
|
||||
- pip 26.0.1 (python 3.12)
|
||||
- Pipx 1.8.0
|
||||
- Pipx 1.9.0
|
||||
- RubyGems 3.5.22
|
||||
- Vcpkg (build from commit 39a6cc0e44)
|
||||
- Vcpkg (build from commit d90a9b159c)
|
||||
- Yarn 1.22.22
|
||||
|
||||
#### Environment variables
|
||||
@@ -46,27 +46,27 @@
|
||||
|
||||
### Project Management
|
||||
- Ant 1.10.15
|
||||
- Gradle 9.3
|
||||
- Maven 3.9.12
|
||||
- sbt 1.12.5
|
||||
- Gradle 9.4
|
||||
- Maven 3.9.14
|
||||
- sbt 1.12.6
|
||||
|
||||
### Tools
|
||||
- 7zip 26.00
|
||||
- aria2 1.37.0
|
||||
- azcopy 10.32.1
|
||||
- Bazel 9.0.0
|
||||
- Bazel 9.0.1
|
||||
- Bazelisk 1.28.1
|
||||
- Bicep 0.41.2
|
||||
- Cabal 3.16.1.0
|
||||
- CMake 3.31.6
|
||||
- CodeQL Action Bundle 2.24.2
|
||||
- CodeQL Action Bundle 2.24.3
|
||||
- Docker 29.1.5
|
||||
- Docker Compose v2 2.40.3
|
||||
- Docker-wincred 0.9.5
|
||||
- ghc 9.14.1
|
||||
- Git 2.53.0.windows.1
|
||||
- Git 2.53.0.windows.2
|
||||
- Git LFS 3.7.1
|
||||
- ImageMagick 7.1.2-15
|
||||
- ImageMagick 7.1.2-17
|
||||
- InnoSetup 6.7.1
|
||||
- jq 1.8.1
|
||||
- Kind 0.31.0
|
||||
@@ -77,8 +77,8 @@
|
||||
- Newman 6.2.2
|
||||
- OpenSSL 3.6.1
|
||||
- Packer 1.15.0
|
||||
- Pulumi 3.224.0
|
||||
- R 4.5.2
|
||||
- Pulumi 3.226.0
|
||||
- R 4.5.3
|
||||
- Service Fabric SDK 10.1.2493.9590
|
||||
- Stack 3.9.3
|
||||
- Swig 4.3.1
|
||||
@@ -90,29 +90,29 @@
|
||||
- Ninja 1.13.2
|
||||
|
||||
### CLI Tools
|
||||
- AWS CLI 2.34.0
|
||||
- AWS SAM CLI 1.154.0
|
||||
- AWS Session Manager CLI 1.2.779.0
|
||||
- Azure CLI 2.83.0
|
||||
- AWS CLI 2.34.10
|
||||
- AWS SAM CLI 1.155.2
|
||||
- AWS Session Manager CLI 1.2.792.0
|
||||
- Azure CLI 2.84.0
|
||||
- Azure DevOps CLI extension 1.0.2
|
||||
- GitHub CLI 2.87.3
|
||||
- GitHub CLI 2.88.1
|
||||
|
||||
### Rust Tools
|
||||
- Cargo 1.93.1
|
||||
- Rust 1.93.1
|
||||
- Rustdoc 1.93.1
|
||||
- Rustup 1.28.2
|
||||
- Cargo 1.94.0
|
||||
- Rust 1.94.0
|
||||
- Rustdoc 1.94.0
|
||||
- Rustup 1.29.0
|
||||
|
||||
#### Packages
|
||||
- Clippy 0.1.93
|
||||
- Clippy 0.1.94
|
||||
- Rustfmt 1.8.0
|
||||
|
||||
### Browsers and Drivers
|
||||
- Google Chrome 145.0.7632.117
|
||||
- Chrome Driver 145.0.7632.117
|
||||
- Microsoft Edge 145.0.3800.82
|
||||
- Microsoft Edge Driver 145.0.3800.82
|
||||
- Mozilla Firefox 148.0
|
||||
- Google Chrome 146.0.7680.80
|
||||
- Chrome Driver 146.0.7680.80
|
||||
- Microsoft Edge 146.0.3856.59
|
||||
- Microsoft Edge Driver 146.0.3856.62
|
||||
- Mozilla Firefox 148.0.2
|
||||
- Gecko Driver 0.36.0
|
||||
- IE Driver 4.14.0.0
|
||||
- Selenium server 4.41.0
|
||||
@@ -157,11 +157,11 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
- 1.22.12
|
||||
- 1.23.12
|
||||
- 1.24.13
|
||||
- 1.25.7
|
||||
- 1.25.8
|
||||
|
||||
#### Node.js
|
||||
- 20.20.0
|
||||
- 22.22.0
|
||||
- 20.20.1
|
||||
- 22.22.1
|
||||
- 24.14.0
|
||||
|
||||
#### Python
|
||||
@@ -178,8 +178,8 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
#### Ruby
|
||||
- 3.2.10
|
||||
- 3.3.10
|
||||
- 3.4.8
|
||||
- 4.0.1
|
||||
- 3.4.9
|
||||
- 4.0.2
|
||||
|
||||
### Databases
|
||||
|
||||
@@ -198,7 +198,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
#### MongoDB
|
||||
| Version | ServiceName | ServiceStatus | ServiceStartType |
|
||||
| -------- | ----------- | ------------- | ---------------- |
|
||||
| 7.0.30.0 | MongoDB | Stopped | Disabled |
|
||||
| 7.0.31.0 | MongoDB | Stopped | Disabled |
|
||||
|
||||
### Database tools
|
||||
- Azure CosmosDb Emulator 2.14.27.0
|
||||
@@ -207,18 +207,18 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
- SQL OLEDB Driver 18 18.7.5.0
|
||||
- SQL OLEDB Driver 19 19.4.1.0
|
||||
- SQLPS 1.0
|
||||
- MongoDB Shell (mongosh) 2.7.0
|
||||
- MongoDB Shell (mongosh) 2.8.1
|
||||
|
||||
### Web Servers
|
||||
| Name | Version | ConfigFile | ServiceName | ServiceStatus | ListenPort |
|
||||
| ------ | ------- | ------------------------------------- | ----------- | ------------- | ---------- |
|
||||
| Apache | 2.4.55 | C:\tools\Apache24\conf\httpd.conf | Apache | Stopped | 80 |
|
||||
| Nginx | 1.29.5 | C:\tools\nginx-1.29.5\conf\nginx.conf | nginx | Stopped | 80 |
|
||||
| Nginx | 1.29.6 | C:\tools\nginx-1.29.6\conf\nginx.conf | nginx | Stopped | 80 |
|
||||
|
||||
### Visual Studio Enterprise 2022
|
||||
| Name | Version | Path |
|
||||
| ----------------------------- | ------------- | -------------------------------------------------------- |
|
||||
| Visual Studio Enterprise 2022 | 17.14.37012.4 | C:\Program Files\Microsoft Visual Studio\2022\Enterprise |
|
||||
| Name | Version | Path |
|
||||
| ----------------------------- | -------------- | -------------------------------------------------------- |
|
||||
| Visual Studio Enterprise 2022 | 17.14.37111.16 | C:\Program Files\Microsoft Visual Studio\2022\Enterprise |
|
||||
|
||||
#### Workloads, components and extensions
|
||||
| Package | Version |
|
||||
@@ -241,11 +241,11 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
| Component.UnityEngine.x64 | 17.14.36510.44 |
|
||||
| Component.Unreal.Debugger | 17.14.36907.17 |
|
||||
| Component.Unreal.Ide | 17.14.36510.44 |
|
||||
| Component.VisualStudio.GitHub.Copilot | 17.14.37011.9 |
|
||||
| Component.VisualStudio.GitHub.Copilot | 17.14.37111.13 |
|
||||
| Component.VSInstallerProjects2022 | 3.0.0 |
|
||||
| Component.WixToolset.VisualStudioExtension.Dev17 | 1.0.0.22 |
|
||||
| Component.WixToolset.VisualStudioExtension.Schemas3 | 1.0.0.22 |
|
||||
| ComponentGroup.Microsoft.NET.AppModernization | 17.14.37011.9 |
|
||||
| ComponentGroup.Microsoft.NET.AppModernization | 17.14.37111.13 |
|
||||
| ios | 26.0.9752.0 |
|
||||
| maccatalyst | 26.0.9752.0 |
|
||||
| maui.blazor | 9.0.111.6930 |
|
||||
@@ -274,19 +274,19 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
| Microsoft.Net.ComponentGroup.4.8.DeveloperTools | 17.14.36510.44 |
|
||||
| Microsoft.Net.ComponentGroup.DevelopmentPrerequisites | 17.14.36510.44 |
|
||||
| Microsoft.Net.ComponentGroup.TargetingPacks.Common | 17.14.36510.44 |
|
||||
| microsoft.net.runtime.android | 9.0.1326.6317 |
|
||||
| microsoft.net.runtime.android.aot | 9.0.1326.6317 |
|
||||
| microsoft.net.runtime.android.aot.net8 | 9.0.1326.6317 |
|
||||
| microsoft.net.runtime.android.net8 | 9.0.1326.6317 |
|
||||
| microsoft.net.runtime.ios | 9.0.1326.6317 |
|
||||
| microsoft.net.runtime.maccatalyst | 9.0.1326.6317 |
|
||||
| microsoft.net.runtime.mono.tooling | 9.0.1326.6317 |
|
||||
| microsoft.net.runtime.mono.tooling.net8 | 9.0.1326.6317 |
|
||||
| microsoft.net.sdk.emscripten | 9.0.14.5604 |
|
||||
| microsoft.net.runtime.android | 9.0.1426.11910 |
|
||||
| microsoft.net.runtime.android.aot | 9.0.1426.11910 |
|
||||
| microsoft.net.runtime.android.aot.net8 | 9.0.1426.11910 |
|
||||
| microsoft.net.runtime.android.net8 | 9.0.1426.11910 |
|
||||
| microsoft.net.runtime.ios | 9.0.1426.11910 |
|
||||
| microsoft.net.runtime.maccatalyst | 9.0.1426.11910 |
|
||||
| microsoft.net.runtime.mono.tooling | 9.0.1426.11910 |
|
||||
| microsoft.net.runtime.mono.tooling.net8 | 9.0.1426.11910 |
|
||||
| microsoft.net.sdk.emscripten | 9.0.14.11003 |
|
||||
| Microsoft.NetCore.Component.DevelopmentTools | 17.14.36510.44 |
|
||||
| Microsoft.NetCore.Component.Runtime.8.0 | 17.14.36928.8 |
|
||||
| Microsoft.NetCore.Component.Runtime.9.0 | 17.14.36928.8 |
|
||||
| Microsoft.NetCore.Component.SDK | 17.14.36928.8 |
|
||||
| Microsoft.NetCore.Component.Runtime.8.0 | 17.14.37027.9 |
|
||||
| Microsoft.NetCore.Component.Runtime.9.0 | 17.14.37027.9 |
|
||||
| Microsoft.NetCore.Component.SDK | 17.14.37027.9 |
|
||||
| Microsoft.NetCore.Component.Web | 17.14.36510.44 |
|
||||
| Microsoft.VisualStudio.Component.AppInsights.Tools | 17.14.36510.44 |
|
||||
| Microsoft.VisualStudio.Component.AspNet | 17.14.36510.44 |
|
||||
@@ -307,7 +307,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
| Microsoft.VisualStudio.Component.DiagnosticTools | 17.14.36510.44 |
|
||||
| Microsoft.VisualStudio.Component.DockerTools | 17.14.36510.44 |
|
||||
| Microsoft.VisualStudio.Component.DotNetModelBuilder | 17.14.36510.44 |
|
||||
| Microsoft.VisualStudio.Component.DslTools | 17.14.36510.44 |
|
||||
| Microsoft.VisualStudio.Component.DslTools | 17.14.37111.13 |
|
||||
| Microsoft.VisualStudio.Component.EntityFramework | 17.14.36510.44 |
|
||||
| Microsoft.VisualStudio.Component.FSharp | 17.14.36510.44 |
|
||||
| Microsoft.VisualStudio.Component.FSharp.Desktop | 17.14.36510.44 |
|
||||
@@ -434,9 +434,9 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
| Microsoft.VisualStudio.Workload.Python | 17.14.36015.10 |
|
||||
| Microsoft.VisualStudio.Workload.Universal | 17.14.36331.10 |
|
||||
| Microsoft.VisualStudio.Workload.VisualStudioExtension | 17.14.36015.10 |
|
||||
| runtimes.ios | 9.0.1326.6317 |
|
||||
| runtimes.maccatalyst | 9.0.1326.6317 |
|
||||
| wasm.tools | 9.0.1326.6317 |
|
||||
| runtimes.ios | 9.0.1426.11910 |
|
||||
| runtimes.maccatalyst | 9.0.1426.11910 |
|
||||
| wasm.tools | 9.0.1426.11910 |
|
||||
| ProBITools.MicrosoftAnalysisServicesModelingProjects2022 | 4.0.0 |
|
||||
| ProBITools.MicrosoftReportProjectsforVisualStudio2022 | 4.0.0 |
|
||||
| SSIS.MicrosoftDataToolsIntegrationServices | 2.1.2 |
|
||||
@@ -461,11 +461,11 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
- 10.0.26100.0
|
||||
|
||||
### .NET Core Tools
|
||||
- .NET Core SDK: 8.0.124, 8.0.206, 8.0.319, 8.0.418, 9.0.114, 9.0.205, 9.0.311, 10.0.102
|
||||
- .NET Core SDK: 8.0.125, 8.0.206, 8.0.319, 8.0.419, 9.0.115, 9.0.205, 9.0.312, 10.0.105, 10.0.201
|
||||
- .NET Framework: 4.8, 4.8.1
|
||||
- Microsoft.AspNetCore.App: 8.0.6, 8.0.22, 8.0.24, 9.0.6, 9.0.13, 10.0.2
|
||||
- Microsoft.NETCore.App: 8.0.6, 8.0.22, 8.0.24, 9.0.6, 9.0.13, 10.0.2
|
||||
- Microsoft.WindowsDesktop.App: 8.0.6, 8.0.22, 8.0.24, 9.0.6, 9.0.13, 10.0.2
|
||||
- Microsoft.AspNetCore.App: 8.0.6, 8.0.22, 8.0.25, 9.0.6, 9.0.14, 10.0.5
|
||||
- Microsoft.NETCore.App: 8.0.6, 8.0.22, 8.0.25, 9.0.6, 9.0.14, 10.0.5
|
||||
- Microsoft.WindowsDesktop.App: 8.0.6, 8.0.22, 8.0.25, 9.0.6, 9.0.14, 10.0.5
|
||||
- nbgv 3.9.50+6feeb89450
|
||||
|
||||
### PowerShell Tools
|
||||
@@ -473,10 +473,10 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
|
||||
#### Powershell Modules
|
||||
- Az: 14.6.0
|
||||
- AWSPowershell: 5.0.165
|
||||
- AWSPowershell: 5.0.176
|
||||
- DockerMsftProvider: 1.0.0.8
|
||||
- MarkdownPS: 1.10
|
||||
- Microsoft.Graph: 2.35.1
|
||||
- Microsoft.Graph: 2.36.0
|
||||
- Pester: 3.4.0, 5.7.1
|
||||
- PowerShellGet: 1.0.0.1, 2.2.5
|
||||
- PSScriptAnalyzer: 1.24.0
|
||||
@@ -488,7 +488,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
| Package Name | Version |
|
||||
| -------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| Android Command Line Tools | 16.0 |
|
||||
| Android Emulator | 36.4.9 |
|
||||
| Android Emulator | 36.4.10 |
|
||||
| Android SDK Build-tools | 36.0.0 36.1.0<br>35.0.0 35.0.1<br>34.0.0 |
|
||||
| Android SDK Platforms | android-36.1 (rev 1)<br>android-36-ext19 (rev 1)<br>android-36-ext18 (rev 1)<br>android-36 (rev 2)<br>android-35-ext15 (rev 1)<br>android-35-ext14 (rev 1)<br>android-35 (rev 2)<br>android-34-ext8 (rev 1)<br>android-34-ext12 (rev 1)<br>android-34-ext11 (rev 1)<br>android-34-ext10 (rev 1)<br>android-34 (rev 3) |
|
||||
| Android SDK Platform-Tools | 37.0.0 |
|
||||
|
||||
@@ -4,8 +4,8 @@
|
||||
| [[Windows/Ubuntu] Docker Server and Client will be updated to version 29.1.*, Docker Compose will be updated to version 2.40.3 on February 9th, 2026](https://github.com/actions/runner-images/issues/13474) |
|
||||
***
|
||||
# Windows Server 2025
|
||||
- OS Version: 10.0.26100 Build 32370
|
||||
- Image Version: 20260301.27.1
|
||||
- OS Version: 10.0.26100 Build 32522
|
||||
- Image Version: 20260317.44.1
|
||||
|
||||
## Windows features
|
||||
- Windows Subsystem for Linux (WSLv1): Enabled
|
||||
@@ -17,25 +17,25 @@
|
||||
- Bash 5.2.37(1)-release
|
||||
- Go 1.24.13
|
||||
- Julia 1.12.0
|
||||
- Kotlin 2.3.10
|
||||
- Kotlin 2.3.20
|
||||
- LLVM 20.1.8
|
||||
- Node 22.22.0
|
||||
- Node 22.22.1
|
||||
- Perl 5.42.0
|
||||
- PHP 8.5.3
|
||||
- PHP 8.5.4
|
||||
- Python 3.12.10
|
||||
- Ruby 3.3.10
|
||||
|
||||
### Package Management
|
||||
- Chocolatey 2.6.0
|
||||
- Composer 2.9.5
|
||||
- Helm 4.1.0
|
||||
- Miniconda 25.11.1 (pre-installed on the image but not added to PATH)
|
||||
- Helm 4.1.3
|
||||
- Miniconda 26.1.1 (pre-installed on the image but not added to PATH)
|
||||
- NPM 10.9.4
|
||||
- NuGet 7.3.0.70
|
||||
- pip 26.0.1 (python 3.12)
|
||||
- Pipx 1.8.0
|
||||
- Pipx 1.9.0
|
||||
- RubyGems 3.5.22
|
||||
- Vcpkg (build from commit 62159a45e1)
|
||||
- Vcpkg (build from commit d90a9b159c)
|
||||
- Yarn 1.22.22
|
||||
|
||||
#### Environment variables
|
||||
@@ -46,27 +46,27 @@
|
||||
|
||||
### Project Management
|
||||
- Ant 1.10.15
|
||||
- Gradle 9.3
|
||||
- Maven 3.9.12
|
||||
- sbt 1.12.4
|
||||
- Gradle 9.4
|
||||
- Maven 3.9.14
|
||||
- sbt 1.12.6
|
||||
|
||||
### Tools
|
||||
- 7zip 26.00
|
||||
- aria2 1.37.0
|
||||
- azcopy 10.32.1
|
||||
- Bazel 9.0.0
|
||||
- Bazel 9.0.1
|
||||
- Bazelisk 1.28.1
|
||||
- Bicep 0.41.2
|
||||
- Cabal 3.16.1.0
|
||||
- CMake 4.2.3
|
||||
- CodeQL Action Bundle 2.24.2
|
||||
- CodeQL Action Bundle 2.24.3
|
||||
- Docker 29.1.5
|
||||
- Docker Compose v2 2.40.3
|
||||
- Docker-wincred 0.9.5
|
||||
- ghc 9.14.1
|
||||
- Git 2.53.0.windows.1
|
||||
- Git 2.53.0.windows.2
|
||||
- Git LFS 3.7.1
|
||||
- ImageMagick 7.1.2-15
|
||||
- ImageMagick 7.1.2-17
|
||||
- InnoSetup 6.7.1
|
||||
- jq 1.8.1
|
||||
- Kind 0.31.0
|
||||
@@ -77,8 +77,8 @@
|
||||
- Newman 6.2.2
|
||||
- OpenSSL 3.6.1
|
||||
- Packer 1.15.0
|
||||
- Pulumi 3.224.0
|
||||
- R 4.5.2
|
||||
- Pulumi 3.226.0
|
||||
- R 4.5.3
|
||||
- Service Fabric SDK 10.1.2493.9590
|
||||
- Stack 3.9.3
|
||||
- Swig 4.3.1
|
||||
@@ -90,29 +90,29 @@
|
||||
- Ninja 1.13.2
|
||||
|
||||
### CLI Tools
|
||||
- AWS CLI 2.34.0
|
||||
- AWS SAM CLI 1.154.0
|
||||
- AWS Session Manager CLI 1.2.779.0
|
||||
- Azure CLI 2.83.0
|
||||
- AWS CLI 2.34.10
|
||||
- AWS SAM CLI 1.155.2
|
||||
- AWS Session Manager CLI 1.2.792.0
|
||||
- Azure CLI 2.84.0
|
||||
- Azure DevOps CLI extension 1.0.2
|
||||
- GitHub CLI 2.87.3
|
||||
- GitHub CLI 2.88.1
|
||||
|
||||
### Rust Tools
|
||||
- Cargo 1.93.1
|
||||
- Rust 1.93.1
|
||||
- Rustdoc 1.93.1
|
||||
- Rustup 1.28.2
|
||||
- Cargo 1.94.0
|
||||
- Rust 1.94.0
|
||||
- Rustdoc 1.94.0
|
||||
- Rustup 1.29.0
|
||||
|
||||
#### Packages
|
||||
- Clippy 0.1.93
|
||||
- Clippy 0.1.94
|
||||
- Rustfmt 1.8.0
|
||||
|
||||
### Browsers and Drivers
|
||||
- Google Chrome 145.0.7632.117
|
||||
- Chrome Driver 145.0.7632.117
|
||||
- Microsoft Edge 145.0.3800.82
|
||||
- Microsoft Edge Driver 145.0.3800.82
|
||||
- Mozilla Firefox 148.0
|
||||
- Google Chrome 146.0.7680.80
|
||||
- Chrome Driver 146.0.7680.80
|
||||
- Microsoft Edge 146.0.3856.59
|
||||
- Microsoft Edge Driver 146.0.3856.62
|
||||
- Mozilla Firefox 148.0.2
|
||||
- Gecko Driver 0.36.0
|
||||
- IE Driver 4.14.0.0
|
||||
- Selenium server 4.41.0
|
||||
@@ -157,11 +157,11 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
- 1.22.12
|
||||
- 1.23.12
|
||||
- 1.24.13
|
||||
- 1.25.7
|
||||
- 1.25.8
|
||||
|
||||
#### Node.js
|
||||
- 20.20.0
|
||||
- 22.22.0
|
||||
- 20.20.1
|
||||
- 22.22.1
|
||||
- 24.14.0
|
||||
|
||||
#### Python
|
||||
@@ -178,8 +178,8 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
#### Ruby
|
||||
- 3.2.10
|
||||
- 3.3.10
|
||||
- 3.4.8
|
||||
- 4.0.1
|
||||
- 3.4.9
|
||||
- 4.0.2
|
||||
|
||||
### Databases
|
||||
|
||||
@@ -198,7 +198,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
#### MongoDB
|
||||
| Version | ServiceName | ServiceStatus | ServiceStartType |
|
||||
| -------- | ----------- | ------------- | ---------------- |
|
||||
| 7.0.30.0 | MongoDB | Stopped | Disabled |
|
||||
| 7.0.31.0 | MongoDB | Stopped | Disabled |
|
||||
|
||||
### Database tools
|
||||
- Azure CosmosDb Emulator 2.14.27.0
|
||||
@@ -207,218 +207,218 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
- SQL OLEDB Driver 18 18.7.5.0
|
||||
- SQL OLEDB Driver 19 19.4.1.0
|
||||
- SQLPS 1.0
|
||||
- MongoDB Shell (mongosh) 2.7.0
|
||||
- MongoDB Shell (mongosh) 2.8.1
|
||||
|
||||
### Web Servers
|
||||
| Name | Version | ConfigFile | ServiceName | ServiceStatus | ListenPort |
|
||||
| ------ | ------- | ------------------------------------- | ----------- | ------------- | ---------- |
|
||||
| Apache | 2.4.55 | C:\tools\Apache24\conf\httpd.conf | Apache | Stopped | 80 |
|
||||
| Nginx | 1.29.5 | C:\tools\nginx-1.29.5\conf\nginx.conf | nginx | Stopped | 80 |
|
||||
| Nginx | 1.29.6 | C:\tools\nginx-1.29.6\conf\nginx.conf | nginx | Stopped | 80 |
|
||||
|
||||
### Visual Studio Enterprise 2026
|
||||
| Name | Version | Path |
|
||||
| ----------------------------- | ------------- | ------------------------------------------------------ |
|
||||
| Visual Studio Enterprise 2026 | 18.3.11520.95 | C:\Program Files\Microsoft Visual Studio\18\Enterprise |
|
||||
| Name | Version | Path |
|
||||
| ----------------------------- | -------------- | ------------------------------------------------------ |
|
||||
| Visual Studio Enterprise 2026 | 18.4.11612.150 | C:\Program Files\Microsoft Visual Studio\18\Enterprise |
|
||||
|
||||
#### Workloads, components and extensions
|
||||
| Package | Version |
|
||||
| ------------------------------------------------------------------------- | --------------- |
|
||||
| android | 36.1.2.0 |
|
||||
| Component.Android.NDK.R27C | 18.3.11407.131 |
|
||||
| Component.Android.SDK.MAUI | 18.3.11407.204 |
|
||||
| Component.Linux.CMake | 18.3.11407.204 |
|
||||
| Component.Linux.RemoteFileExplorer | 18.3.11407.204 |
|
||||
| Component.MDD.Linux | 18.3.11407.204 |
|
||||
| Component.Microsoft.NET.AppModernization | 18.3.11520.95 |
|
||||
| Component.Microsoft.VisualStudio.RazorExtension | 18.3.11407.204 |
|
||||
| android | 36.1.30.0 |
|
||||
| Component.Android.NDK.R27C | 18.4.11505.171 |
|
||||
| Component.Android.SDK.MAUI | 18.4.11505.171 |
|
||||
| Component.Linux.CMake | 18.4.11505.171 |
|
||||
| Component.Linux.RemoteFileExplorer | 18.4.11505.171 |
|
||||
| Component.MDD.Linux | 18.4.11505.171 |
|
||||
| Component.Microsoft.NET.AppModernization | 18.4.11602.120 |
|
||||
| Component.Microsoft.VisualStudio.RazorExtension | 18.4.11505.171 |
|
||||
| Component.Microsoft.VisualStudio.Tools.Applications.amd64 | 17.0.36522.0 |
|
||||
| Component.Microsoft.VisualStudio.Web.AzureFunctions | 18.3.11407.204 |
|
||||
| Component.Microsoft.Web.LibraryManager | 18.3.11407.131 |
|
||||
| Component.Microsoft.VisualStudio.Web.AzureFunctions | 18.4.11505.171 |
|
||||
| Component.Microsoft.Web.LibraryManager | 18.4.11505.171 |
|
||||
| Component.Microsoft.Windows.DriverKit | 10.0.26100.16 |
|
||||
| Component.OpenJDK | 18.3.11407.204 |
|
||||
| Component.UnityEngine.x64 | 18.3.11407.204 |
|
||||
| Component.Unreal.Debugger | 18.3.11407.204 |
|
||||
| Component.Unreal.Ide | 18.3.11407.204 |
|
||||
| Component.VisualStudio.GitHub.Copilot | 18.3.11407.204 |
|
||||
| Component.OpenJDK | 18.4.11505.171 |
|
||||
| Component.UnityEngine.x64 | 18.4.11505.171 |
|
||||
| Component.Unreal.Debugger | 18.4.11505.171 |
|
||||
| Component.Unreal.Ide | 18.4.11505.171 |
|
||||
| Component.VisualStudio.GitHub.Copilot | 18.4.11602.120 |
|
||||
| Component.VSInstallerProjects2022 | 3.0.0 |
|
||||
| Component.WixToolset.VisualStudioExtension.Dev17 | 1.0.0.22 |
|
||||
| Component.WixToolset.VisualStudioExtension.Schemas3 | 1.0.0.22 |
|
||||
| ComponentGroup.Microsoft.NET.AppModernization | 18.3.11407.131 |
|
||||
| ios | 26.2.10191 |
|
||||
| maccatalyst | 26.2.10191 |
|
||||
| ComponentGroup.Microsoft.NET.AppModernization | 18.4.11602.120 |
|
||||
| ios | 26.2.10217 |
|
||||
| maccatalyst | 26.2.10217 |
|
||||
| maui.blazor | 10.0.20.7528 |
|
||||
| maui.core | 10.0.20.7528 |
|
||||
| maui.windows | 10.0.20.7528 |
|
||||
| Microsoft.Component.Azure.DataLake.Tools | 18.3.11407.204 |
|
||||
| Microsoft.Component.ClickOnce | 18.3.11407.204 |
|
||||
| Microsoft.Component.CodeAnalysis.SDK | 18.3.11407.204 |
|
||||
| Microsoft.Component.MSBuild | 18.3.11407.204 |
|
||||
| Microsoft.Component.NetFX.Native | 18.3.11407.204 |
|
||||
| Microsoft.Component.PythonTools | 18.3.11407.204 |
|
||||
| Microsoft.Component.PythonTools.Web | 18.3.11407.204 |
|
||||
| Microsoft.Component.VC.Runtime.UCRTSDK | 18.3.11407.204 |
|
||||
| Microsoft.ComponentGroup.Blend | 18.3.11407.131 |
|
||||
| Microsoft.ComponentGroup.ClickOnce.Publish | 18.3.11407.131 |
|
||||
| Microsoft.Net.Component.4.6.2.TargetingPack | 18.3.11407.204 |
|
||||
| Microsoft.Net.Component.4.6.TargetingPack | 18.3.11407.204 |
|
||||
| Microsoft.Net.Component.4.7.1.TargetingPack | 18.3.11407.204 |
|
||||
| Microsoft.Net.Component.4.7.2.TargetingPack | 18.3.11407.204 |
|
||||
| Microsoft.Net.Component.4.7.TargetingPack | 18.3.11407.204 |
|
||||
| Microsoft.Net.Component.4.8.1.SDK | 18.3.11407.204 |
|
||||
| Microsoft.Net.Component.4.8.1.TargetingPack | 18.3.11407.204 |
|
||||
| Microsoft.Net.Component.4.8.SDK | 18.3.11407.204 |
|
||||
| Microsoft.Net.Component.4.8.TargetingPack | 18.3.11407.204 |
|
||||
| Microsoft.Net.ComponentGroup.4.8.DeveloperTools | 18.3.11407.131 |
|
||||
| Microsoft.Net.ComponentGroup.DevelopmentPrerequisites | 18.3.11407.131 |
|
||||
| Microsoft.Net.ComponentGroup.TargetingPacks.Common | 18.3.11407.131 |
|
||||
| microsoft.net.runtime.android | 10.1.326.7603 |
|
||||
| microsoft.net.runtime.android.aot | 10.1.326.7603 |
|
||||
| microsoft.net.runtime.android.aot.net9 | 10.1.326.7603 |
|
||||
| microsoft.net.runtime.android.net9 | 10.1.326.7603 |
|
||||
| microsoft.net.runtime.ios | 10.1.326.7603 |
|
||||
| microsoft.net.runtime.ios.net9 | 10.1.326.7603 |
|
||||
| microsoft.net.runtime.maccatalyst | 10.1.326.7603 |
|
||||
| microsoft.net.runtime.maccatalyst.net9 | 10.1.326.7603 |
|
||||
| microsoft.net.runtime.mono.tooling | 10.1.326.7603 |
|
||||
| microsoft.net.runtime.mono.tooling.net9 | 10.1.326.7603 |
|
||||
| microsoft.net.sdk.emscripten | 10.1.326.7603 |
|
||||
| Microsoft.NetCore.Component.DevelopmentTools | 18.3.11407.204 |
|
||||
| Microsoft.NetCore.Component.Runtime.10.0 | 18.3.11505.172 |
|
||||
| Microsoft.NetCore.Component.Runtime.8.0 | 18.3.11505.172 |
|
||||
| Microsoft.NetCore.Component.SDK | 18.3.11505.172 |
|
||||
| Microsoft.NetCore.Component.Web | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.AppInsights.Tools | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.AspNet | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.AspNet45 | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.ClassDesigner | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.CodeMap | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.CoreEditor | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.CppBuildInsights | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.Debugger.JustInTime | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.DiagnosticTools | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.DockerTools | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.DotNetModelBuilder | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.DslTools | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.EntityFramework | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.FSharp | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.FSharp.Desktop | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.FSharp.WebTemplates | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.GraphDocument | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.Graphics | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.Graphics.Tools | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.HLSL | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.IISExpress | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.IntelliCode | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.IntelliTrace.FrontEnd | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.JavaScript.Diagnostics | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.JavaScript.TypeScript | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.LinqToSql | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.LiveUnitTesting | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.ManagedDesktop.Core | 18.3.11407.131 |
|
||||
| Microsoft.VisualStudio.Component.ManagedDesktop.Prerequisites | 18.3.11407.131 |
|
||||
| Microsoft.VisualStudio.Component.MSODBC.SQL | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.MSSQL.CMDLnUtils | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.Node.Tools | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.NuGet | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.NuGet.BuildTools | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.PortableLibrary | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.Roslyn.Compiler | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.Roslyn.LanguageServices | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.Sharepoint.Tools | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.SQL.CLR | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.SQL.DataSources | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.SQL.LocalDB.Runtime | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.SQL.SSDT | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.TeamOffice | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.TextTemplating | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.TypeScript.TSServer | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.Unity | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.UWP.VC.ARM64 | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.UWP.VC.ARM64EC | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.29.16.11.ARM | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.29.16.11.ARM64 | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.44.17.14.x86.x64 | 18.3.11415.102 |
|
||||
| Microsoft.VisualStudio.Component.VC.ASAN | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATL | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATL.ARM64 | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATL.ARM64.Spectre | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATL.Spectre | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATLMFC | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATLMFC.Spectre | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.VC.CLI.Support | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.VC.CMake.Project | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.VC.CoreIde | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.VC.DiagnosticTools | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.VC.Llvm.Clang | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.VC.Llvm.ClangToolset | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.VC.MFC.ARM64 | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.VC.MFC.ARM64.Spectre | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.VC.Redist.14.Latest | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.VC.Redist.MSM | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.VC.Runtimes.ARM64.Spectre | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.VC.Runtimes.ARM64EC.Spectre | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.VC.Runtimes.x86.x64.Spectre | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.VC.TestAdapterForBoostTest | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.VC.TestAdapterForGoogleTest | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.VC.Tools.ARM64 | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.VC.Tools.ARM64EC | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.VC.Tools.x86.x64 | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.Vcpkg | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.VSSDK | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.Wcf.Tooling | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.Web | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.WebDeploy | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.Windows10SDK | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.Windows11SDK.26100 | 18.3.11505.172 |
|
||||
| Microsoft.VisualStudio.Component.Windows11Sdk.WindowsPerformanceToolkit | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.WindowsAppSdkSupport.CSharp | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.Workflow | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.Component.WslDebugging | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.ArchitectureTools.Native | 18.3.11407.131 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Azure.Prerequisites | 18.3.11407.204 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.AzureFunctions | 18.3.11407.131 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.All | 18.3.11407.131 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.Android | 18.3.11407.131 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.Blazor | 18.3.11407.131 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.iOS | 18.3.11407.131 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.MacCatalyst | 18.3.11407.131 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.Shared | 18.3.11407.131 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.Windows | 18.3.11407.131 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.MSIX.Packaging | 18.3.11407.131 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Core | 18.3.11407.131 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Llvm.Clang | 18.3.11407.131 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.UWP.NetCoreAndStandard | 18.3.11407.131 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.UWP.VC.v142 | 18.3.11407.131 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.VC.Tools.142.x86.x64 | 18.3.11407.131 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.VisualStudioExtension.Prerequisites | 18.3.11407.131 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Web | 18.3.11407.131 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Web.CloudTools | 18.3.11407.131 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions | 18.3.11407.131 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions.CMake | 18.3.11407.131 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions.TemplateEngine | 18.3.11407.131 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.WindowsAppDevelopment.Prerequisites | 18.3.11407.131 |
|
||||
| Microsoft.VisualStudio.Workload.Azure | 18.3.11407.131 |
|
||||
| Microsoft.VisualStudio.Workload.CoreEditor | 18.3.11407.131 |
|
||||
| Microsoft.VisualStudio.Workload.Data | 18.3.11407.131 |
|
||||
| Microsoft.VisualStudio.Workload.DataScience | 18.3.11407.131 |
|
||||
| Microsoft.VisualStudio.Workload.ManagedDesktop | 18.3.11407.131 |
|
||||
| Microsoft.VisualStudio.Workload.ManagedGame | 18.3.11407.131 |
|
||||
| Microsoft.VisualStudio.Workload.NativeCrossPlat | 18.3.11407.131 |
|
||||
| Microsoft.VisualStudio.Workload.NativeDesktop | 18.3.11407.131 |
|
||||
| Microsoft.VisualStudio.Workload.NativeGame | 18.3.11407.131 |
|
||||
| Microsoft.VisualStudio.Workload.NativeMobile | 18.3.11407.131 |
|
||||
| Microsoft.VisualStudio.Workload.NetCrossPlat | 18.3.11407.131 |
|
||||
| Microsoft.VisualStudio.Workload.NetWeb | 18.3.11407.131 |
|
||||
| Microsoft.VisualStudio.Workload.Node | 18.3.11407.131 |
|
||||
| Microsoft.VisualStudio.Workload.Office | 18.3.11407.131 |
|
||||
| Microsoft.VisualStudio.Workload.Python | 18.3.11407.131 |
|
||||
| Microsoft.VisualStudio.Workload.Universal | 18.3.11407.131 |
|
||||
| Microsoft.VisualStudio.Workload.VisualStudioExtension | 18.3.11407.131 |
|
||||
| runtimes.ios | 10.1.326.7603 |
|
||||
| runtimes.ios.net9 | 10.1.326.7603 |
|
||||
| runtimes.maccatalyst | 10.1.326.7603 |
|
||||
| runtimes.maccatalyst.net9 | 10.1.326.7603 |
|
||||
| wasm.tools | 10.1.326.7603 |
|
||||
| Microsoft.Component.Azure.DataLake.Tools | 18.4.11505.171 |
|
||||
| Microsoft.Component.ClickOnce | 18.4.11505.171 |
|
||||
| Microsoft.Component.CodeAnalysis.SDK | 18.4.11505.171 |
|
||||
| Microsoft.Component.MSBuild | 18.4.11505.171 |
|
||||
| Microsoft.Component.NetFX.Native | 18.4.11505.171 |
|
||||
| Microsoft.Component.PythonTools | 18.4.11505.171 |
|
||||
| Microsoft.Component.PythonTools.Web | 18.4.11505.171 |
|
||||
| Microsoft.Component.VC.Runtime.UCRTSDK | 18.4.11505.171 |
|
||||
| Microsoft.ComponentGroup.Blend | 18.4.11505.171 |
|
||||
| Microsoft.ComponentGroup.ClickOnce.Publish | 18.4.11505.171 |
|
||||
| Microsoft.Net.Component.4.6.2.TargetingPack | 18.4.11505.171 |
|
||||
| Microsoft.Net.Component.4.6.TargetingPack | 18.4.11505.171 |
|
||||
| Microsoft.Net.Component.4.7.1.TargetingPack | 18.4.11505.171 |
|
||||
| Microsoft.Net.Component.4.7.2.TargetingPack | 18.4.11505.171 |
|
||||
| Microsoft.Net.Component.4.7.TargetingPack | 18.4.11505.171 |
|
||||
| Microsoft.Net.Component.4.8.1.SDK | 18.4.11505.171 |
|
||||
| Microsoft.Net.Component.4.8.1.TargetingPack | 18.4.11505.171 |
|
||||
| Microsoft.Net.Component.4.8.SDK | 18.4.11505.171 |
|
||||
| Microsoft.Net.Component.4.8.TargetingPack | 18.4.11505.171 |
|
||||
| Microsoft.Net.ComponentGroup.4.8.DeveloperTools | 18.4.11505.171 |
|
||||
| Microsoft.Net.ComponentGroup.DevelopmentPrerequisites | 18.4.11505.171 |
|
||||
| Microsoft.Net.ComponentGroup.TargetingPacks.Common | 18.4.11505.171 |
|
||||
| microsoft.net.runtime.android | 10.1.526.15411 |
|
||||
| microsoft.net.runtime.android.aot | 10.1.526.15411 |
|
||||
| microsoft.net.runtime.android.aot.net9 | 10.1.526.15411 |
|
||||
| microsoft.net.runtime.android.net9 | 10.1.526.15411 |
|
||||
| microsoft.net.runtime.ios | 10.1.526.15411 |
|
||||
| microsoft.net.runtime.ios.net9 | 10.1.526.15411 |
|
||||
| microsoft.net.runtime.maccatalyst | 10.1.526.15411 |
|
||||
| microsoft.net.runtime.maccatalyst.net9 | 10.1.526.15411 |
|
||||
| microsoft.net.runtime.mono.tooling | 10.1.526.15411 |
|
||||
| microsoft.net.runtime.mono.tooling.net9 | 10.1.526.15411 |
|
||||
| microsoft.net.sdk.emscripten | 10.1.526.15411 |
|
||||
| Microsoft.NetCore.Component.DevelopmentTools | 18.4.11505.171 |
|
||||
| Microsoft.NetCore.Component.Runtime.10.0 | 18.4.11612.102 |
|
||||
| Microsoft.NetCore.Component.Runtime.8.0 | 18.4.11602.120 |
|
||||
| Microsoft.NetCore.Component.SDK | 18.4.11612.102 |
|
||||
| Microsoft.NetCore.Component.Web | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.AppInsights.Tools | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.AspNet | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.AspNet45 | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.ClassDesigner | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.CodeMap | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.CoreEditor | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.CppBuildInsights | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.Debugger.JustInTime | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.DiagnosticTools | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.DockerTools | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.DotNetModelBuilder | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.DslTools | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.EntityFramework | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.FSharp | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.FSharp.Desktop | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.FSharp.WebTemplates | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.GraphDocument | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.Graphics | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.Graphics.Tools | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.HLSL | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.IISExpress | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.IntelliCode | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.IntelliTrace.FrontEnd | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.JavaScript.Diagnostics | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.JavaScript.TypeScript | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.LinqToSql | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.LiveUnitTesting | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.ManagedDesktop.Core | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.ManagedDesktop.Prerequisites | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.MSODBC.SQL | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.MSSQL.CMDLnUtils | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.Node.Tools | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.NuGet | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.NuGet.BuildTools | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.PortableLibrary | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.Roslyn.Compiler | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.Roslyn.LanguageServices | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.Sharepoint.Tools | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.SQL.CLR | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.SQL.DataSources | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.SQL.LocalDB.Runtime | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.SQL.SSDT | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.TeamOffice | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.TextTemplating | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.TypeScript.TSServer | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.Unity | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.UWP.VC.ARM64 | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.UWP.VC.ARM64EC | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.29.16.11.ARM | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.29.16.11.ARM64 | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.VC.14.44.17.14.x86.x64 | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.VC.ASAN | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATL | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATL.ARM64 | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATL.ARM64.Spectre | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATL.Spectre | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATLMFC | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.VC.ATLMFC.Spectre | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.VC.CLI.Support | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.VC.CMake.Project | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.VC.CoreIde | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.VC.DiagnosticTools | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.VC.Llvm.Clang | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.VC.Llvm.ClangToolset | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.VC.MFC.ARM64 | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.VC.MFC.ARM64.Spectre | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.VC.Redist.14.Latest | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.VC.Redist.MSM | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.VC.Runtimes.ARM64.Spectre | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.VC.Runtimes.ARM64EC.Spectre | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.VC.Runtimes.x86.x64.Spectre | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.VC.TestAdapterForBoostTest | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.VC.TestAdapterForGoogleTest | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.VC.Tools.ARM64 | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.VC.Tools.ARM64EC | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.VC.Tools.x86.x64 | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.Vcpkg | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.VSSDK | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.Wcf.Tooling | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.Web | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.WebDeploy | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.Windows10SDK | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.Windows11SDK.26100 | 18.4.11510.419 |
|
||||
| Microsoft.VisualStudio.Component.Windows11Sdk.WindowsPerformanceToolkit | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.WindowsAppSdkSupport.CSharp | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.Workflow | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Component.WslDebugging | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.ArchitectureTools.Native | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Azure.Prerequisites | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.AzureFunctions | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.All | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.Android | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.Blazor | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.iOS | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.MacCatalyst | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.Shared | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Maui.Windows | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.MSIX.Packaging | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Core | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Llvm.Clang | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.UWP.NetCoreAndStandard | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.UWP.VC.v142 | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.VC.Tools.142.x86.x64 | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.VisualStudioExtension.Prerequisites | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Web | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.Web.CloudTools | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions.CMake | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions.TemplateEngine | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.ComponentGroup.WindowsAppDevelopment.Prerequisites | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Workload.Azure | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Workload.CoreEditor | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Workload.Data | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Workload.DataScience | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Workload.ManagedDesktop | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Workload.ManagedGame | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Workload.NativeCrossPlat | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Workload.NativeDesktop | 18.4.11510.153 |
|
||||
| Microsoft.VisualStudio.Workload.NativeGame | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Workload.NativeMobile | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Workload.NetCrossPlat | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Workload.NetWeb | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Workload.Node | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Workload.Office | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Workload.Python | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Workload.Universal | 18.4.11505.171 |
|
||||
| Microsoft.VisualStudio.Workload.VisualStudioExtension | 18.4.11505.171 |
|
||||
| runtimes.ios | 10.1.526.15411 |
|
||||
| runtimes.ios.net9 | 10.1.526.15411 |
|
||||
| runtimes.maccatalyst | 10.1.526.15411 |
|
||||
| runtimes.maccatalyst.net9 | 10.1.526.15411 |
|
||||
| wasm.tools | 10.1.526.15411 |
|
||||
| ProBITools.MicrosoftAnalysisServicesModelingProjects2022 | 4.0.0 |
|
||||
| ProBITools.MicrosoftReportProjectsforVisualStudio2022 | 4.0.0 |
|
||||
| SSIS.MicrosoftDataToolsIntegrationServices | 2.1.2 |
|
||||
@@ -443,11 +443,11 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
- 10.0.26100.0
|
||||
|
||||
### .NET Core Tools
|
||||
- .NET Core SDK: 8.0.124, 8.0.206, 8.0.319, 8.0.418, 9.0.114, 9.0.205, 9.0.311, 10.0.102, 10.0.103
|
||||
- .NET Core SDK: 8.0.125, 8.0.206, 8.0.319, 8.0.419, 9.0.115, 9.0.205, 9.0.312, 10.0.105, 10.0.201
|
||||
- .NET Framework: 4.8, 4.8.1
|
||||
- Microsoft.AspNetCore.App: 8.0.6, 8.0.22, 8.0.24, 9.0.6, 9.0.13, 10.0.2, 10.0.3
|
||||
- Microsoft.NETCore.App: 8.0.6, 8.0.22, 8.0.24, 9.0.6, 9.0.13, 10.0.2, 10.0.3
|
||||
- Microsoft.WindowsDesktop.App: 8.0.6, 8.0.22, 8.0.24, 9.0.6, 9.0.13, 10.0.2, 10.0.3
|
||||
- Microsoft.AspNetCore.App: 8.0.6, 8.0.22, 8.0.25, 9.0.6, 9.0.14, 10.0.5
|
||||
- Microsoft.NETCore.App: 8.0.6, 8.0.22, 8.0.25, 9.0.6, 9.0.14, 10.0.5
|
||||
- Microsoft.WindowsDesktop.App: 8.0.6, 8.0.22, 8.0.25, 9.0.6, 9.0.14, 10.0.5
|
||||
- nbgv 3.9.50+6feeb89450
|
||||
|
||||
### PowerShell Tools
|
||||
@@ -455,10 +455,10 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
|
||||
#### Powershell Modules
|
||||
- Az: 14.6.0
|
||||
- AWSPowershell: 5.0.165
|
||||
- AWSPowershell: 5.0.176
|
||||
- DockerMsftProvider: 1.0.0.8
|
||||
- MarkdownPS: 1.10
|
||||
- Microsoft.Graph: 2.35.1
|
||||
- Microsoft.Graph: 2.36.0
|
||||
- Pester: 3.4.0, 5.7.1
|
||||
- PowerShellGet: 1.0.0.1, 2.2.5
|
||||
- PSScriptAnalyzer: 1.24.0
|
||||
@@ -470,10 +470,10 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
|
||||
| Package Name | Version |
|
||||
| -------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| Android Command Line Tools | 19.0 |
|
||||
| Android Emulator | 36.4.9 |
|
||||
| Android Emulator | 36.4.10 |
|
||||
| Android SDK Build-tools | 36.0.0 36.1.0<br>35.0.0 35.0.1<br>34.0.0 |
|
||||
| Android SDK Platforms | android-36.1 (rev 1)<br>android-36-ext19 (rev 1)<br>android-36-ext18 (rev 1)<br>android-36 (rev 2)<br>android-35-ext15 (rev 1)<br>android-35-ext14 (rev 1)<br>android-35 (rev 2)<br>android-34-ext8 (rev 1)<br>android-34-ext12 (rev 1)<br>android-34-ext11 (rev 1)<br>android-34-ext10 (rev 1)<br>android-34 (rev 3) |
|
||||
| Android SDK Platform-Tools | 36.0.2 |
|
||||
| Android SDK Platform-Tools | 37.0.0 |
|
||||
| Android Support Repository | 47.0.0 |
|
||||
| CMake | 3.30.5<br>3.31.5<br>4.1.2 |
|
||||
| Google Play services | 49 |
|
||||
|
||||
Reference in New Issue
Block a user